:root {
  --text-color: #202020;
  --orange: #EF9B00;
  --Linear: linear-gradient(90deg, #FFEB00 0%, #FD9B00 25%, #FE41A0 50%, #009DFE 75%, #00CDBC 100%);

  /* フォント */
  --ja: "Noto Sans JP", sans-serif;
  --en: "Barlow Condensed", sans-serif;

  --fz10: calc(10 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz13: calc(13 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz15: calc(15 / 16 * 1rem);
  --fz17: calc(17 / 16 * 1rem);
  --fz18: calc(18 / 16 * 1rem);
  --fz19: calc(19 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz22: calc(22 / 16 * 1rem);
  --fz23: calc(23 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz25: calc(25 / 16 * 1rem);
  --fz26: calc(26 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz30: calc(30 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz36: calc(36 / 16 * 1rem);
  --fz38: calc(38 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz42: calc(42 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
  --fz60: calc(60 / 16 * 1rem);
  --fz62: calc(62 / 16 * 1rem);
  --fz64: calc(64 / 16 * 1rem);
  --fz80: calc(80 / 16 * 1rem);
  --fz96: calc(96 / 16 * 1rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: clip;
  background-color: #EFEBE7;
}

body.noscroll {
  overflow: hidden;
}


/***************************************
common
***************************************/
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

a:hover,
button:hover {
  opacity: 0.7;
}

.onlyPC {
  display: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.pageTop {
  z-index: 99;
}

.btn {
  display: grid;
  place-items: center;
  max-width: 320px;
  height: auto;
  border-radius: 50px;
  padding: 16px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-rainbow {
  position: relative;
}

.btn-rainbow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  border-radius: 40px;
  background: var(--Linear);
}

.btn-rainbow::after {
  content: "";
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  z-index: -1;
  border-radius: 40px;
  background: #fff;
}

.section-title {
  padding: 0 32px;
}

.section-title h2 {
  text-transform: uppercase;
  font-family: var(--en);
  font-size: var(--fz64);
  font-weight: 700;
  line-height: 1;
}

.section-title p {
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: var(--fz14);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
}

.section-title p::before {
  content: '';
  display: block;
  width: 15px;
  height: 14px;
  background-image: url("../img/deco_section_title_sub.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .onlySP {
    display: none;
  }

  .onlyPC {
    display: block;
  }

  .section-title {
    padding: 0;
  }
  
  .section-title h2 {
    font-size: var(--fz96);
  }

  .section-title p {
    font-size: var(--fz20);
    gap: 8px;
  }

  .section-title p::before {
    width: 21px;
    height: 19px;
  }
}

/***************************************
ヘッダー
***************************************/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  font-family: var(--en);
  opacity: 0;
  animation: fv-show 1s 3s forwards;
}

@keyframes fv-show {
  to {
    opacity: 1;
  }
}

header:has(.open) {
  box-shadow: none;
  border-radius: 0;
  background: #EFEBE7;
}

.header-container {
  max-width: 1600px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.header-logo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  display: block;
  width: 164px;
  height: auto;
}

.header-logo button {
  display: block;
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
}

.btn-hamburger-inner {
  position: relative;
  width: 24px;
  height: 16px;
}

.btn-hamburger-inner span {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 10px;
  transition: all 0.3s;
}

.btn-hamburger-inner span:first-child {
  top: 0;
}
.btn-hamburger-inner span:nth-child(2) {
  top: 6px;
}
.btn-hamburger-inner span:nth-child(3) {
  top: 12px;
}

.header-logo button[aria-expanded="true"] .btn-hamburger-inner span:first-child {
  width: 27px;
  transform: rotate(35deg);
  top: 7px;
}
.header-logo button[aria-expanded="true"] .btn-hamburger-inner span:nth-child(2) {
  opacity: 0;
}

.header-logo button[aria-expanded="true"] .btn-hamburger-inner span:nth-child(3) {
  width: 27px;
  transform: rotate(-35deg);
  top: 3px;
}

header nav {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 65px);
  background: #EFEBE7;
  padding: 0 30px;
  opacity: 0;
  transition: opacity 1s;
  overflow-y: scroll;
}

header nav[inert] {
  display: none;
}

header nav.open {
  display: block;
  opacity: 1;
  padding-bottom: 100px;
}

header .nav-inner {
  max-width: 340px;
  margin: 0 auto;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.nav-menu li {
  font-size: var(--fz20);
  font-weight: 700;
  padding: 0 10px 0 8px;
}

.nav-menu li a.externallink::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../img/icon_externallink.svg);
  margin-left: 7px;
}

.entry-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.entry-btns .btn-rainbow {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
}

.entry-btns .btn-rainbow span {
  position: relative;
  z-index: 100;
}

.entry-btns .btn-rainbow::before {
  z-index: 98;
}

.entry-btns .btn-rainbow::after {
  z-index: 99;
}

.entry-btns .onlyPC {
  display: none;
}


@media (min-width: 1200px) {
  header {
    padding: 17px 40px;
  }
  header:has(.open) {
    background: #FFFFFF99;
  }

  .header-logo {
    width: fit-content;
  }

  .header-logo img {
    width: 180px;
  }

  .header-logo button {
    display: none;
  }

  header nav {
    display: block;
    position: static;
    width: fit-content;
    height: 100%;
    background-color: transparent;
    padding: 0;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: unset;
  }

  header nav.open {
    padding-bottom: 0;
  }

  header .nav-inner {
    display: flex;
    max-width: unset;
    gap: 32px;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    border-top: none;
    padding-top: 0;
  }

  .nav-menu li {
    padding: 0;
    border-bottom: none;
  }

  .nav-menu li a {
    position: relative;
  }
    
  .nav-menu a:hover {
    opacity: 1;
  }

  .nav-menu li a::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 0;
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: 0% center;
  }

  .nav-menu li a:hover::before {
    transform: scaleX(1);
  }

  .entry-btns {
    flex-direction: row;
    margin-top: 0;
  }

  .entry-btns .btn-rainbow {
    width: 145px;
    height: 50px;
    border-radius: 8px;
    line-height: 1.2;
    text-align: center;
    display: grid;
    place-items: center;
    padding: 0;
  }

  .entry-btns .btn-rainbow span {
    position: relative;
    z-index: 100;
  }

  .entry-btns .btn-rainbow::before,
  .entry-btns .btn-rainbow::after {
    border-radius: 8px;
  }
    
  .entry-btns .onlyPC {
    display: block;
  } 

}

@media (min-width:1400px) {
  
  .nav-menu {
    gap: 32px;
  }

}

/***************************************
背景アニメーション
***************************************/
.bg-white {
  background: #EFEBE7;
}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

@keyframes move2 {
    100% {
        transform: translate3d(0, 0, 1px) rotate(-360deg);
    }
}

.bg-blur {
  position: fixed;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  z-index: -1;
}

.background-polygon {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -2;
  opacity: 0;
  animation: fv-show 1s 3s forwards;
}


.background-polygon span {
  display: block;
  width: 20vmin;
  height: 20vmin;
  backface-visibility: hidden;
  position: absolute;
  animation-duration: 45s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: 10;
}


.background-polygon span:nth-child(1) {
  background-color: #FD9B00CC;
  width: 76px;
  height: 76px;
  clip-path: circle(50% at 50% 50%);
  top: 50%;
  left: 41%;
  animation-name: move;
  animation-duration: 24s;
  animation-delay: -3s;
  transform-origin: 40vw -19vh;
}
.background-polygon span:nth-child(2) {
  background-color: #FD9B00CC;
  width: 76px;
  height: 76px;
  clip-path: circle(50% at 50% 50%);
  top: 50%;
  left: 41%;
  animation-name: move2;
  animation-duration: 24s;
  animation-delay: -18s;
  transform-origin: -40vw 19vh;
}
.background-polygon span:nth-child(3) {
  background-color: #FE41A0;
  width: 142px;
  height: 123px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  /* transform: rotate(15deg); */
  top: 50%;
  left: 50%;
  animation-name: move;
  animation-duration: 53s;
  animation-delay: -40s;
  transform-origin: 50vw 100px;
}
.background-polygon span:nth-child(4) {
  background-color: #FE41A0;
  width: 142px;
  height: 123px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  /* transform: rotate(15deg); */
  top: 50%;
  left: 50%;
  animation-name: move2;
  animation-duration: 53s;
  animation-delay: -20s;
  transform-origin: -50vw 100px;
}
.background-polygon span:nth-child(5) {
  background-color: #00CDBC99;
  width: 137.67px;
  height: 130px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  bottom: 10%;
  right: 70%;
  animation-name: move2;
  animation-duration: 24s;
  animation-delay: -40s;
  transform-origin: 60vw -17vh;
}
.background-polygon span:nth-child(6) {
  background-color: #00CDBC99;
  width: 137.67px;
  height: 130px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  top: 10%;
  left: 70%;
  animation-name: move;
  animation-duration: 24s;
  animation-delay: -10s;
  transform-origin: -30vw 17vh;
}
.background-polygon span:nth-child(7) {
  background-color: #CF31E399;
  width: 120px;
  height: 120px;
  bottom: 0;
  left: 90%;
  animation-name: move;
  animation-duration: 20s;
  animation-delay: -44s;
  transform-origin: -45vw -20vh;
}
.background-polygon span:nth-child(8) {
  background-color: #CF31E399;
  width: 120px;
  height: 120px;
  bottom: 0;
  left: 90%;
  animation-name: move2;
  animation-duration: 20s;
  animation-delay: -20s;
  transform-origin: -45vw -20vh;
}

.background-polygon span:nth-child(9) {
  background-color: #009DFE66;
  width: 180px;
  height: 180px;
  top: 5%;
  left: 56%;
  animation-name: move;
  animation-duration: 19s;
  animation-delay: -5s;
  transform-origin: 23vw 6vh;
}

.background-polygon span:nth-child(10) {
  background-color: #FFE601;
  width: 140px;
  height: 140px;
  top: 10%;
  right: 56%;
  animation-name: move;
  animation-duration: 15s;
  animation-delay: -15s;
  transform-origin: -23vw 26vh;
}

@media (max-width:768px) {
  .background-polygon span:nth-child(1) {
    background-color: #FD9B00CC;
    width: 40px;
    height: 40px;
    clip-path: circle(50% at 50% 50%);
    top: 50%;
    left: 41%;
    animation-name: move;
    animation-duration: 24s;
    animation-delay: -3s;
    transform-origin: 70vw -30vh;
  }

  .background-polygon span:nth-child(2) {
    background-color: #FD9B00CC;
    width: 40px;
    height: 40px;
    clip-path: circle(50% at 50% 50%);
    top: 50%;
    left: 41%;
    animation-name: move2;
    animation-duration: 24s;
    animation-delay: -18s;
    transform-origin: -70vw 30vh;
  }

  .background-polygon span:nth-child(3) {
    background-color: #FE41A0;
    width: 90px;
    height: 80px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 50%;
    left: 50%;
    animation-name: move;
    animation-duration: 53s;
    animation-delay: -40s;
    transform-origin: 70vw 40vh;
  }

  .background-polygon span:nth-child(4) {
    opacity: 0;
  }

  .background-polygon span:nth-child(5) {
    background-color: #00CDBC99;
    width: 100px;
    height: 90px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    bottom: 10%;
    right: 70%;
    animation-name: move2;
    animation-duration: 24s;
    animation-delay: -40s;
    transform-origin: 60vw -17vh;
  }

  .background-polygon span:nth-child(6) {
    opacity: 0;
  }

  .background-polygon span:nth-child(7) {
    background-color: #CF31E399;
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 90%;
    animation-name: move;
    animation-duration: 20s;
    animation-delay: -44s;
    transform-origin: -45vw -20vh;
  }

  .background-polygon span:nth-child(8) {
    opacity: 0;
  }

  .background-polygon span:nth-child(9) {
    background-color: #009DFE66;
    width: 50px;
    height: 50px;
    top: 5%;
    left: 56%;
    animation-name: move;
    animation-duration: 19s;
    animation-delay: -5s;
    transform-origin: 23vw 40vh;
  }

  .background-polygon span:nth-child(10) {
    background-color: #FFE601;
    width: 90px;
    height: 90px;
    top: 10%;
    right: 56%;
    animation-name: move;
    animation-duration: 15s;
    animation-delay: -15s;
    transform-origin: -23vw 26vh;
  }
}

/***************************************
KV
***************************************/
.kv {
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  max-height: 800px;
  position: relative;
}

.kv-onlyPC {
  display: none;
}

.kv hgroup {
  width: 90%;
  max-width: 1200px;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 40%);
  animation: bg-text-down 1s 2s forwards;
  z-index: 1;
}

.kv hgroup h2 {
  font-family: var(--en);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
}
.kv hgroup h2 span {
  background-image: linear-gradient(118deg, #FFEB00 2.36%, #FD9B00 20.18%, #FE41A0 38%, #009DFE 55.82%, #00CDBC 73.64%);
  background-clip: text;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-color 1.3s 0.7s forwards;
}

@keyframes bg-color {
  to {
    background-size: 100% 100%;
  }
}

@keyframes bg-text-down {
  to {
    bottom: 40px;
    transform: translate(-50%,0);
  }
}

.kv hgroup p {
  font-size: 14px;
  font-weight: 700;
}

.kv hgroup p span {
  background-image: linear-gradient(270deg,rgba(32, 32, 32, 1) 0%, rgba(32, 32, 32, 1) 100%);
  background-clip: text;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: bg-color 1.3s 0.7s forwards;
}

.kv hgroup p.kv-onlySP {
  position: absolute;
  bottom: 10px;
  left: 120px;
}

.kv-images {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  height: 100%;
  max-height: 70%;
  z-index: 0;
  opacity: 0;
  animation: fv-show 1s 2.4s forwards;
}

@keyframes fv-show {
  to {
    opacity: 1;
  }
}

.kv-images img {
  position: absolute;
  border-radius: 8px;
  animation: kv-img-move 6s 4s ease-in-out infinite;
}

.kv-images img:nth-child(even) {
  animation: kv-img-move-up 6s 4s ease-in-out infinite;
}

@keyframes kv-img-move-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes kv-img-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}

.kv-images img:nth-child(1) {
  width: 30.67%;
  max-width: 180px;
  height: auto;
  top: 16%;
  left: 2.13%;
}
.kv-images img:nth-child(2) {
  width: 30.4%;
  max-width: 180px;
  height: auto;
  top: 19%;
  right: 4%;
}
.kv-images img:nth-child(3) {
  width: 22.67%;
  height: auto;
  top: 36%;
  left: 34.33%;
}
.kv-images img:nth-child(4) {
  width: 40.8%;
  max-width: 190px;
  height: auto;
  top: 64%;
  left: -6%;
}
.kv-images img:nth-child(5) {
  width: 30.4%;
  max-width: 200px;
  height: auto;
  top: 70%;
  right: 5%;
}


@media (min-width:800px) {

  .kv {
    padding: 20px;
    max-height: 830px;
    position: relative;
  }

  .kv-onlyPC {
    display: block;
  }
    
  .kv-onlySP {
    display: none;
  }

  .kv hgroup {
    width: 90%;
    max-width: 1200px;
  }

  .kv hgroup h2 {
    line-height: 1;
  }
 
  .kv-images {
    max-width: 1440px;
  }

  .kv-images img:nth-child(1) {
    max-width: 200px;
    top: 30%;
    left: 13.75%;
  }

  .kv-images img:nth-child(2) {
    max-width: 200px;
    height: auto;
    top: 19%;
    right: 5.27%;
  }

  .kv-images img:nth-child(3) {
    max-width: 150px;
    height: auto;
    top: 42.17%;
    left: 39.16%;
  }

  .kv-images img:nth-child(4) {
    max-width: 200px;
    height: auto;
    top: 67%;
    left: -3.68%;
  }

  .kv-images img:nth-child(5) {
    width: 30.4%;
    max-width: 200px;
    height: auto;
    top: 76%;
    right: 12.22%;
  }
}

@media (min-width:900px) {
  .kv hgroup h2 {
    font-size: 80px
  }
    
  .kv hgroup p {
    font-size: 24px;
    margin-top: 20px;
  }
}

@media (min-width:1300px) {
  .kv hgroup h2 {
    font-size: 108px
  }
}

/***************************************
リード文
***************************************/
.lead {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(15px);
  padding: 60px 32px;
  margin-top: 60px;
}

.lead-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 400px;
  margin: 0 auto;
}

.lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz15);
  line-height: 200%;
  letter-spacing: -0.08em;
  margin-top: 20px;
}

.lead p:first-of-type {
  margin-top: 0;
}

.lead p:has(b) {
  font-size: var(--fz24);
  margin-top: 40px;
  word-break: keep-all;
}

.lead img {
  width: 100%;
  height: auto;
}

@media (min-width:900px) {
  .lead {
    border-radius: 80px;
    padding: 80px 120px;
    max-width: 1440px;
    margin: 80px auto 0;
  }
    
  .lead-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    max-width: unset;
    margin: 0 auto;
  }

  .lead-inner > div {
    width: 50%;
  }

  .lead p {
    font-size: var(--fz20);
    margin-top: 32px;
    letter-spacing: 0.01em;
  }

  .lead p:has(b) {
    font-size: var(--fz32);
    margin-top: 32px;

  }

  .lead picture {
    position: sticky;
    top: 60px;
    flex: 1;
  }

  .lead img {
    max-width: 500px;
  }
}

@media (min-width:1200px) {

  .lead-inner > div {
    width: 60%;
  }
}

/***************************************
About Us
***************************************/
.aboutus {
  margin: 0 auto;
  padding-top: 110px;
  max-width: 1240px;
}

.aboutus-contents-inner {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(15px);
  margin: 40px auto 0;
  padding: 60px 32px;
}

.aboutus-contents-inner img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.aboutus-contents-desc {
  max-width: 400px;
  margin: 40px auto 0;
}

.contents-desc-title h3 {
  font-family: Barlow;
  font-size: var(--fz24);
  font-weight: 700;
}

.contents-desc-title p {
  font-size: var(--fz13);
  font-weight: 700;
}

.aboutus-contents-desc > p {
  font-size: var(--fz15);
  line-height: 1.8;
  margin-top: 16px;
}

.business-field-contents hgroup {
  max-width: 400px;
  margin: 0 auto;
}

.business-field-contents-desc {
  max-width: 400px;
  margin-inline: auto;
  position: relative;
}

.business-field-contents-desc > p {
  margin: 40px 0 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.business-field-contents-desc > p b {
  font-size: var(--fz32);
  font-family: "Barlow", sans-serif;
  padding: 0 2px;
  line-height: 1;
}

.business-field-contents-desc ul.business-field-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.business-field-contents-desc ul.business-field-btns button {
  transition: all 0.3s;
}

.business-field-contents-desc ul.business-field-btns button:hover {
  opacity: 1;
  transform: scale(0.95);
}

.business-field-contents-desc ul.business-field-btns img {
  width: 150px;
}

@media (min-width:900px) {
  .aboutus {
    padding: 120px 20px 0;
  }

  .aboutus-contents-inner {
    border-radius: 40px;
    padding: 40px 80px;
    max-width: unset;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .aboutus-contents-inner picture {
    width: 47%;
  }

  .aboutus-contents-inner picture img {
    max-width: unset;
  }

  .aboutus-contents-desc {
    margin-top: 0;
    flex: 1;
    max-width: unset;
  }

  .contents-desc-title h3 {
    font-size: var(--fz32);
  }

  .contents-desc-title p {
    font-size: 1rem;
  }

  .aboutus-contents-desc > p {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 16px;
  }

  .business-field-contents {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .business-field-contents hgroup {
    flex: 1;
  }

  .business-field-contents-desc {
    width: 67.79%;
    max-width: unset;
    position: relative;
  }
  
  .business-field-contents-desc > p {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: var(--fz24);
  }

  .business-field-contents-desc > p b {
    font-size: var(--fz48);
  }

  .business-field-contents-desc ul.business-field-btns {
    position: relative;
    aspect-ratio: 705 / 491;
    max-width: unset;
    width: 100%;
  }

  .business-field-contents-desc ul.business-field-btns img {
    width: 100%;
  }

  .business-field-contents-desc ul.business-field-btns li {
    position: absolute;
    width: 21.28%;
    height: auto;
    aspect-ratio: 150 / 130;
  }

  /* メディカルヘルスケア */
  .business-field-contents-desc ul.business-field-btns li:first-child { 
    top: 2%;
    left: 28%;
  }
  /* コンストラクション */
  .business-field-contents-desc ul.business-field-btns li:nth-child(2) { 
    top: 0;
    left: 54.6%;
  }
  /* クリエイティブ */
  .business-field-contents-desc ul.business-field-btns li:nth-child(3) { 
    top: 26%;
    left: 8%;
  }
  /* AI/DX */
  .business-field-contents-desc ul.business-field-btns li:nth-child(4) { 
    top: 22%;
    right: 0;
  }
  /* ライフサイエンス */
  .business-field-contents-desc ul.business-field-btns li:nth-child(5) { 
    top: 57%;
    left: 0;
  }
  /* ソリューション */
  .business-field-contents-desc ul.business-field-btns li:nth-child(6) { 
    top: 53%;
    right: 7%;
  }
  /* Quality of Life */
  .business-field-contents-desc ul.business-field-btns li:nth-child(7) { 
    bottom: 0;
    left: 24%;
  }
  /* 経営支援 */
  .business-field-contents-desc ul.business-field-btns li:nth-child(8) { 
    bottom: 4%;
    left: 50%;
  }
}

/***************************************
フィールドのモーダル
***************************************/
.business-field-dialogs,
.business-field-dialogs li {
  position: static;
  height: auto;  
}


.business-field-dialogs .field-dialog {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(244, 246, 248, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(5px);
}

.field-dialog::backdrop {
  background-color: rgba(0,0,0,0.4);
}

.field-dialog button {
  position: absolute;
  display: block;
  width: 46px;
  height: auto;
  aspect-ratio: 1 / 1;
  right: 0;
  top: 0;
}

.field-dialog button img {
  width: 14px;
  margin: 0 auto;
}

.dialog-contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dialog-contents .dialog-contents-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dialog-contents h6 {
  font-family: "Barlow", "Noto Sans JP";
  font-size: var(--fz13);
  font-weight: 700;
}

.dialog-contents .dialog-contents-flex p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz24);
  font-weight: 700;
}

.dialog-contents .field p {
  font-size: var(--fz13);
  font-weight: 400;
}

.dialog-contents .dialog-contents-flex p.solution-text {
  font-size: var(--fz14);
  font-weight: 400;
}

.dialog-contents .solution-list ul {
 font-size: var(--fz13);
}

@media (min-width:768px) {
  .business-field-dialogs .field-dialog {
    top: 50%;
    padding: 48px;
  }

  .field-dialog button {
    right: 10px;
    top: 10px;
  }

  .dialog-contents {
    gap: 24px;
  }

  .dialog-contents .dialog-contents-flex {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }

  .dialog-contents h6 {
    font-size: var(--fz20);
  }

  .dialog-contents .dialog-contents-flex p {
    font-size: var(--fz32);
  }

  .dialog-contents .field h6 {
    font-size: 1rem;
  }

  .dialog-contents .field p {
    font-size: 1rem;
  }
    
  .dialog-contents .dialog-contents-flex p.solution-text {
    font-size: 1rem;
  }

  .dialog-contents .solution-list ul {
  font-size: 1rem;
  }
}


/***************************************
Job Categories
***************************************/
.job-categories {
  padding-top: 110px;
}

.job-categories-container {
  padding: 0 32px;
}

.job-categories-container .section-title {
  margin-inline: auto;
  max-width: 1200px;
  padding: 0;
}

.job-categories-container > p {
  margin-inline: auto;
  margin-top: 40px;
  max-width: 1200px;
  font-size: var(--fz15);
}

@media (min-width:768px) {
  .job-categories {
    padding-top: 120px;
  }

  .job-categories-container > p {
    margin-top: 32px;
    font-size: var(--fz18);
  }
}

/***************************************
Job Categoriesのスライドエリア
***************************************/
.job-categories-wrapper {
  background-color: #40B6FF;
  border-radius: 30px;
  margin-top: 40px;
  padding: 60px 0;
}

.job-categories-swiper-pagination {
  margin-bottom: 24px;
  padding: 0 32px;
  height: 48px;
  display: flex;
}

.job-categories-swiper-pagination .nav-item {
  flex: 1;
  border-right: 1px solid #fff;
  height: 100%;
  display: grid;
  place-items: center;
}

.job-categories-swiper-pagination .nav-item:first-of-type {
  border-left: 1px solid #fff;
}

.job-categories-swiper-pagination .nav-item {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.job-categories-swiper-pagination .nav-item.swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  margin: 0;
}

.job-categories-swiper-pagination .nav-item.swiper-pagination-bullet-active {
  background-color: #fff;
}

.job-categories-swiper-pagination .nav-item span.job-category-name {
  font-size: 0;
  height: 0;
}

.job-categories-swiper-pagination .nav-item span.job-icon {
  display: block;
  width: 30px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}


.job-categories-swiper {
  padding: 0 32px;
}

.job-category-list.swiper-wrapper {
  width: 100%;
}

.job-category-list li {
  width: 100%;
  max-width: 500px;
}

.job-category-list li .job-img {
  width: 100%;
  border-radius: 16px;
}

.swiper-nav {
  position: absolute;
  aspect-ratio: 500 / 291;
  width: calc(100% - 64px);
  max-width: 500px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.job-categories-swiper-button-prev,
.job-categories-swiper-button-next {
  width: 40px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.job-categories-swiper-button-prev {
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

.job-categories-swiper-button-next {
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
}

.job-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.job-text h3 {
  font-size: var(--fz18);
  font-weight: 700;
  line-height: 1.2;
}

.job-text p {
  font-size: var(--fz15);
}

.job-text a {
  display: block;
  width: 100%;
  max-width: 311px;
  height: 46px;
  padding: 0 32px;
  display: grid;
  place-items: center;
  border-radius: 90px;
  border: 1px solid #202020;
  margin: 0 auto;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1px;
}

.job-text a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.job-text a span::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (min-width:900px) {
  .job-categories-wrapper {
    border-radius: 40px;
    margin-top: 40px auto 0;
  }
  
  .job-categories-contents {
    display: flex;
    gap: 80px;
    max-width: 1440px;
    margin-inline: auto;
    padding: 80px 0 80px clamp(32px,8vw,120px);
  }

  .job-categories-swiper-pagination {
    margin-bottom: 0;
    margin-top: 36px;
    padding: 0;
    height: auto;
    flex-direction: column;
    display: flex;
  }

  .job-categories-nav {
    display: flex;
    flex-direction: column-reverse;
    justify-content: start;
  }
  
  .job-categories-swiper-pagination .nav-item {
    border-right: none;
    border-bottom: 1px solid #fff;
    display: block;
    height: 62px;
    display: grid;
    place-items: center;
    padding: 20px 16px;
    }
    
  .job-categories-swiper-pagination .nav-item:first-of-type {
    border-left: none;
    border-top: 1px solid #fff;
    }

  .job-categories-nav .nav-item-inner {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .job-categories-swiper-pagination .nav-item span.job-category-name {
    font-size: var(--fz18);
    font-weight: 700;
    height: auto;
    flex: 1;
  }

  .job-categories-swiper {
    padding: 0 32px 0 0;
    flex: 1;
  }

  .job-category-list li {
    width: 100%;
  }

  .job-category-list li picture {
    width: 50.8%;
    border-radius: 16px;
  }

  .swiper-nav {
    position: static;
    aspect-ratio: unset;
    height: auto;
    width: auto;
    max-width: unset;
    left: unset;
    transform: none;
    display: flex;
    justify-content: end;
    gap: 32px;
  }

  .job-categories-swiper-button-prev,
  .job-categories-swiper-button-next {
    position: static;
  }

  .job-categories-swiper-button-prev {
    top: unset;
    left: unset;
    transform:unset;
  }

  .job-categories-swiper-button-next {
    top: unset;
    right: unset;
    transform:unset;
  }

  .job-text {
    flex: 1;
    gap: 24px;
  }

  .job-text h3 {
    font-size: var(--fz24);
  }

  .job-text p {
    font-size: 1rem;
  }

  .job-text a {
    max-width: 240px;
    margin: 0 auto 0 0;
    font-size: var(--fz20);
    position: relative;
    overflow: hidden;
  }

  .job-text a span {
    position: relative;
    z-index: 1;
  }

  .job-text a::before {
    content: '';
    display: block;
    width: 130%;
    height: 100%;
    position: absolute;
    background-color: #fff;
    transform: translateX(-130%);
    transition: all 0.3s;
  }

  .job-text a:hover {
    opacity: 1;
  }

  .job-text a:hover::before {
    transform: translateX(0);
  }
}

@media (min-width:1300px) {
  .job-category-list li {
    width: 100%;
    max-width: 688px;
  }
  
  .swiper-slide .list-inner {
    display: flex;
    gap: 24px;
  }

  .job-text {
    margin-top: 0;
  }
}


/***************************************
talentbookバナー
***************************************/
.bnr-talentbook {
  margin: 40px auto 0;
  display: block;
  width: 100%;
  max-width: 360px;
}

@media (min-width:768px) {
  .bnr-talentbook {
    margin-bottom: 100px;
  }
}



/***************************************
職種診断
***************************************/
.job-matching-wrapper {
 padding:0 28px 0;
}

.job-matching-container {
  background-color: #00CDBC;
  padding: 24px 16px;
  border-radius: 30px;
  border: 2px solid #89BCDB;
  position: relative;
  max-width: 1200px;
  margin: -10px auto 0;
}

.job-matching-container::before {
  content: '';
  display: block;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  position: absolute;
  top: -4px;
  left: -4px;
  background-image: url("../img/deco_job_matching_board1.svg"), url("../img/deco_job_matching_board2.svg"), url("../img/deco_job_matching_board3.svg"), url("../img/deco_job_matching_board4.svg");
  background-repeat: no-repeat;
  background-size: 32px 31px;
  background-position: left top, right top, left bottom, right bottom;
}

.job-matching-inner {
  background-color: #fff;
  text-align: center;
  padding: 32px 8px 0;
  position: relative;
}

.job-matching-inner::before {
  content: '';
  display: block;
  width: 162px;
  height: 70px;
  background-image: url("../img/deco_job_matching_clip.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -62px;
  left: 50%;
  transform: translateX(-50%);
}

.job-matching-content {
  max-width: 400px;
  margin-inline: auto;
}

.job-matching-start {
  position: relative;
  padding-bottom: 120px;
}

.job-matching-start hgroup p {
  color: #0072B8;
  font-size: var(--fz13);
  font-weight: 500;
  line-height: 1.85;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.job-matching-start hgroup p::before,
.job-matching-start hgroup p::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}

.job-matching-start hgroup h2 {
  font-size: var(--fz24);
  font-weight: 600;
  margin-top: 8px;
}

.job-matching-start hgroup p::before {
  background-image: url("../img/deco_job_matching_header_left.svg");
}

.job-matching-start hgroup p::after {
  background-image: url("../img/deco_job_matching_header_right.svg");
}

.job-matching-start .lead-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.8;
}

.job-matching-start .lead-text p:first-of-type {
  color: #0072B8;
  font-feature-settings: 'palt' on;
  font-size: var(--fz14);
  font-weight: 700;
  margin-top: 24px;
}

.job-matching-start .lead-text p:nth-of-type(2) {
  font-size: var(--fz18);
  font-weight: 700;
}

.job-matching-start .lead-text p:nth-of-type(3) {
  font-size: var(--fz14);
}

.job-matching-start .start-btn {
  display: block;
  width: 263px;
  height: 48px;
  border-radius: 90px;
  border: 2px solid #0072B8;
  background: #FFEB00;
  color: #0072B8;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-left: 70px;
}

.job-matching-start .start-btn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/arrow_start_btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.job-matching-start::before,
.job-matching-start::after {
  content: '';
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}

.job-matching-start::before {
  background-image: url("../img/deco_jobmatching_person1.svg");
  width: 72px;
  height: 109px;
  bottom: 0px;
  left: 50%;
  transform: translateX(calc(-50% - 50px));
}
.job-matching-start::after {
  background-image: url("../img/deco_jobmatching_person2.svg");
  width: 66px;
  height: 113px;
  bottom: 4px;
  right: 50%;
  transform: translateX(calc(50% + 50px));
}

.question {
  display: none;
}

.question-num {
  font-family: "Barlow";
  font-weight: 700;
}

.question-text {
  font-size: var(--fz14);
  font-weight: 700;
}

.question-btn-container {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.question-btn-container > * {
  flex: 1;
}

.question .btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question .btn-container::before {
  content: '';
  display: block;
  width: 50%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  opacity: 0;
  transition: all 0.3s;
}

.question .btn-container:has(.hovered)::before {
  opacity: 1;
}

.question .btn-container.btn-yes-container::before {
  background-image: url(../img/deco_yes.png);
}
.question .btn-container.btn-no-container::before {
  background-image: url(../img/deco_no.png);
}

.question-btn-container button {
  display: block;
  width: 100%;
  border-radius: 12px;
  background: #FFF;
  padding: 12px;
  font-weight: 700;
}
.question-btn-container button.btn-yes {
  border: 3px solid #FE41A0;
  color: #FE41A0;
}
.question-btn-container button.btn-no {
  border: 3px solid #009DFE;
  color: #009DFE;
}


.progress {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.result {
  display: none;
  position: relative;
}

.result hgroup p {
  color: #0072B8;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.result hgroup h3 {
  text-align: center;
  font-weight: 700;
  display: none;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #FFEB00;
  text-underline-offset: 0;
}

.result hgroup h3.show {
  display: block;
}

.result-job-desc {
  display: none;
  margin-top: 20px;
}


.result-job-desc.show {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.8;
}

.result-job-desc p {
  font-size: var(--fz14);
}

.result-job-desc h4 {
  border-radius: 2px;
  border: 1px solid #89BCDB;
  padding: 0 12px;
  position: relative;
  width: fit-content;
  font-weight: 700;
  font-size: var(--fz14);
}

.result-job-desc h4::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 100%;
  background-color: #89BCDB;
  position: absolute;
  left: 0;
  top: 0;
}

.result-job-desc h5 {
  font-size: var(--fz14);
  font-weight: 700;
}

.result-job-desc ul {
  font-size: var(--fz14);
}

.btn-reset-wrapper {
  padding-bottom: 20px;
}

.btn-reset.text-btn {
  display: flex;
  align-items: center;
  font-size: var(--fz14);
  font-weight: 700;
  gap: 5px;
  
}

.btn-reset.text-btn::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 13px;
  background-image: url("../img/vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.job-matching-container .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto 0;
  padding-bottom: 30px;
  width: fit-content;
}

.job-matching-container .btn-wrapper .btn {
  border-radius: 90px;
  border: 3px solid #202020;
  background: #FFF;
  width: 263px;
  height: 48px;
  display: grid;
  place-content: center;
  font-weight: 700;
  position: relative;
  padding: 0;
}

.job-matching-container .btn-wrapper .btn::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 20px;
}

.loop-text-area {
  padding-top: 100px;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.loop-text-wrapper {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  gap: 16px;
}

.loop-text {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  animation: loop 20s linear infinite;
}

.loop-text span {
  font-family: var(--en);
  font-size: var(--fz64);
  font-weight: 600;
  line-height: 100%;
  color: #C2CBD0;
  letter-spacing: 0;
}

@keyframes loop {
  to {
    transform: translateX(-100%);
  }
  
}

@media (min-width:768px) {
  .job-matching {
    padding: 0;
  }

  .job-matching-container {
    padding: 50px;
    border-radius: 40px;
    margin-top: -12px;
  }

  .job-matching-container::before {
    background-size: 43px 41px;
  }

  .job-matching-inner {
    padding: 60px 40px;
  }

  .job-matching-inner::before {
    width: 242px;
    height: 104px;
    top: -92px;
  }

  .job-matching-content {
    max-width: 800px;
    position: relative;
  }

  .job-matching-start {
    padding-bottom: 0;
  }

  .job-matching-start hgroup p {
    font-size: var(--fz24);
    gap: 4px;
  }

  .job-matching-start hgroup p::before,
  .job-matching-start hgroup p::after {
    width: 19px;
    height: 31px;
  }

  .job-matching-start hgroup h2 {
    font-size: var(--fz48);
    font-weight: 700;
    margin-top: 0;
  }

  .job-matching-start .lead-text {
    gap: 16px;
  }

  .job-matching-start .lead-text p:first-of-type {
    font-size: var(--fz20);
    margin-top: 48px;
    letter-spacing: 0.1em;
  }

  .job-matching-start .lead-text p:nth-of-type(2) {
    font-size: var(--fz24);
  }

  .job-matching-start .lead-text p:nth-of-type(3) {
    font-size: var(--fz18);
  }

  .job-matching-start .start-btn {
    font-size: var(--fz20);
    width: 380px;
    height: 72px;
    margin-top: 32px;
    overflow: hidden;
    position: relative;
  }

  .job-matching-start .start-btn span {
    position: relative;
    z-index: 1;
  }
  
  .job-matching-start .start-btn:hover {
    opacity: 1;
    color: #ffeb00;
  }
  
  .job-matching-start .start-btn::before {
    content: "";
    display: block;
    width: 130%;
    height: 100%;
    transform: translateX(-130%);
    background-color: #0072B8;
    transition: all 0.3s;
    position: absolute;
  }

  .job-matching-start .start-btn:hover::before {
    transform: translateX(0);
  }

  .job-matching-start .start-btn::after {
    width: 24px;
    height: 24px;
    z-index: 1;
  }

  .job-matching-start .start-btn:hover::after {
    background-image: url(../img/arrow_start_btn_yellow.svg);
  }

  .job-matching-start::before {
    width: 20%;
    max-width: 140px;
    height: auto;
    aspect-ratio: 150 / 229;
    bottom: unset;
    top: 60px;
    left: 50%;
    transform: translateX(calc(-50% - 250px));
  }
   
  .job-matching-start::after {
    width: 17%;
    max-width: 110px;
    height: auto;
    aspect-ratio: 139 / 237;
    bottom: -70px;
    right: 50%;
    transform: translateX(calc(50% + 280px));
  }
  

  .question-num {
    font-size: var(--fz32);
    margin-right: 8px;
  }

  .question-text {
    font-size: var(--fz32);
  }

  .question-btn-container {
    gap: 60px;
    margin: 32px auto 0;
    max-width: 798px;
  }

  .question .btn-container::before {
    width: 110px;
  }

  .question-btn-container button {
    height: 150px;
    border-radius: 24px;
    font-size: var(--fz32);
  }
 
  .progress {
    font-size: var(--fz32);
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .result hgroup p {
    font-size: var(--fz20);
  }
 
  .result hgroup h3 {
    font-size: var(--fz32);
    text-decoration-thickness: 10px;
  }

  .result-job-desc {
    margin-top: 52px;
  }

  .result-job-desc p {
    font-size: var(--fz16);
    line-height: 1.8;
  }

  .result-job-desc h4 {
    padding: 4px 24px;
    font-size: 1rem;
  }

  .result-job-desc h4::before {
    width: 8px;
    height: 100%;
  }

  .result-job-desc h5 {
    font-size: 1rem;
  }

  .result-job-desc ul {
    font-size: 1rem;
  }

  .btn-reset-wrapper {
    padding-bottom: 0;
  }

  .job-matching-container .btn-wrapper {
    flex-direction: row;
    gap: 10%;
    margin: 52px auto 0;
    padding-bottom: 30px;
    width: 100%;
    justify-content: center;
  }
  
  .job-matching-container .btn-wrapper .btn {
    width: clamp(250px,30vw,310px);
    height: 56px;
    font-size: var(--fz20);
  }
    
  .btn-reset.text-btn {
    font-size: var(--fz18); 
    gap: 10px;
  }

  .btn-reset.text-btn::before {
    width: 10px;
    height: 17px;
  }

  .loop-text-area {
    padding-top: 100px;
  }

  .loop-text span {
    font-size: var(--fz96);
  } 

}

@media (min-width:1200px) {

  .job-matching-start::before {
    max-width: 150px;
    bottom: unset;
    top: 34px;
    left: -70px;
    transform: none;
  }
   
  .job-matching-start::after {
    max-width: 139px;
    bottom: 22px;
    right: -110px;
    transform: none;
  }

  .job-matching-content.result::after {
    content: '';
    display: block;
    width: 150px;
    height: 320px;
    background-image: url(../img/deco_matching_result.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -40px;
    right: -150px;
  }
}


/***************************************
Pickup Project
***************************************/
.pickup-project {
  padding-top: 110px;
}

.pickup-project-container {
  padding: 0 32px;
}

.pickup-project-container .section-title {
  margin-inline: auto;
  max-width: 1200px;
  padding: 0;
}

.pickup-project-contents {
  border-radius: 30px;
  background: #FFF25D;
  padding: 60px 32px;
  margin-top: 40px;
}

.pickup-project-contents-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pickup-project-contents-inner > * {
  max-width: 600px;
  margin-inline: auto;
  display: block;
}

.pickup-project-contents-inner h3 {
  font-size: var(--fz18);
  font-weight: 700;
}

.pickup-project-contents-inner .tags {
  margin-top: 12px;
}

.pickup-project-contents-inner .tags span {
  display: inline-block;
  background: #fff;
  margin-right: 16px;
  padding: 6px 24px 3px;
  border-radius: 20px;
  font-size: var(--fz12);
  font-weight: 500;
  font-family: var(--ja);
}

.pickup-project-contents-inner p {
  margin-top: 24px;
  font-size: var(--fz15);
  word-break: break-all;
}

.pickup-project-contents-inner p b {
  font-weight: 700;
}

.pickup-project-contents-inner iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 311 / 175;
  border-radius: 16px;
}

.pickup-project-contents .links {
  display: flex;
  flex-direction: column;
  max-width: 311px;
  margin: 32px auto 0;
  gap: 24px;
}

.pickup-project-contents .btn {
  border: 1px solid var(--text-color);
  height: 70px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.pickup-project-contents .btn .br-onlySP {
  display: block;
}

.pickup-project-contents .btn .br-onlyPC {
  display: none;
}

.pickup-project-contents .btn:first-of-type {
  padding-right: 30px;
}

.pickup-project-contents .btn:first-of-type::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--text-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 18L20 12L14 6L12.6 7.45L16.15 11H4V13H16.15L12.6 16.55L14 18Z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 18L20 12L14 6L12.6 7.45L16.15 11H4V13H16.15L12.6 16.55L14 18Z'/%3E%3C/svg%3E") no-repeat center / contain;
  background-repeat: no-repeat;
  background-size: contain;
}

.pickup-project-contents .btn:nth-of-type(2) {
  padding-right: 30px;
}

.pickup-project-contents .btn:nth-of-type(2)::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--text-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.9996 3.6001C19.3234 3.6001 20.3996 4.67635 20.3996 6.0001V18.0001C20.3996 19.3238 19.3234 20.4001 17.9996 20.4001H5.99961C4.67586 20.4001 3.59961 19.3238 3.59961 18.0001V6.0001C3.59961 4.67635 4.67586 3.6001 5.99961 3.6001H17.9996ZM13.7996 13.5001C13.7996 13.9988 14.2009 14.4001 14.6996 14.4001C15.1984 14.4001 15.5996 13.9988 15.5996 13.5001V9.3001C15.5996 8.80135 15.1984 8.4001 14.6996 8.4001H10.4996C10.0009 8.4001 9.59961 8.80135 9.59961 9.3001C9.59961 9.79885 10.0009 10.2001 10.4996 10.2001H12.5284L8.66586 14.0626C8.31336 14.4151 8.31336 14.9851 8.66586 15.3338C9.01836 15.6826 9.58836 15.6863 9.93711 15.3338L13.7996 11.4713V13.5001Z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.9996 3.6001C19.3234 3.6001 20.3996 4.67635 20.3996 6.0001V18.0001C20.3996 19.3238 19.3234 20.4001 17.9996 20.4001H5.99961C4.67586 20.4001 3.59961 19.3238 3.59961 18.0001V6.0001C3.59961 4.67635 4.67586 3.6001 5.99961 3.6001H17.9996ZM13.7996 13.5001C13.7996 13.9988 14.2009 14.4001 14.6996 14.4001C15.1984 14.4001 15.5996 13.9988 15.5996 13.5001V9.3001C15.5996 8.80135 15.1984 8.4001 14.6996 8.4001H10.4996C10.0009 8.4001 9.59961 8.80135 9.59961 9.3001C9.59961 9.79885 10.0009 10.2001 10.4996 10.2001H12.5284L8.66586 14.0626C8.31336 14.4151 8.31336 14.9851 8.66586 15.3338C9.01836 15.6826 9.58836 15.6863 9.93711 15.3338L13.7996 11.4713V13.5001Z'/%3E%3C/svg%3E") no-repeat center / contain;

  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width:350px) {
  .pickup-project-contents .btn {
    padding-left: 20px;
  }
}

@media (min-width:900px) {
  .pickup-project {
    padding-top: 120px;
  }

  .pickup-project-contents {
    border-radius: 40px;
    padding: 80px 120px;
    margin: 40px auto 0;
    max-width: 1440px;
  }

  .pickup-project-contents-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
  }

  .pickup-project-contents-inner > div:first-of-type {
    flex: 1;
  }

  .pickup-project-contents-inner > * {
    max-width: unset;
  }

  .pickup-project-contents-inner h3 {
    font-size: var(--fz20);
  }

  .pickup-project-contents-inner .tags span {
    font-size: var(--fz14);
  }

  .pickup-project-contents-inner p {
    font-size: 1rem;
  }

  .pickup-project-contents-inner iframe {
    width: 45%;
  }

  .pickup-project-contents .links {
    flex-direction: row;
    justify-content: center;
    max-width: unset;
    margin: 60px auto 0;
    gap: clamp(20px, 4vw, 60px);
  }

  .pickup-project-contents .btn {
    height: 70px;
    min-width: 370px;
    max-width: unset;
    padding-left: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    position: relative;
    overflow: hidden;
  }

  .pickup-project-contents .btn:hover {
    color: #fff;
    opacity: 1;
  }
  
  .pickup-project-contents .btn span {
    text-align: center;
  }
  
  .pickup-project-contents .btn small {
    font-size: var(--fz14);
  }

  .pickup-project-contents .btn::before {
    content: '';
    display: block;
    width: 130%;
    height: 100%;
    position: absolute;
    transform: translateX(-130%);
    background-color: #000;
    transition: transform 0.3s;
  }

  .pickup-project-contents .btn:hover::before {
    transform: translateX(-20%);
  }
  
  .pickup-project-contents .btn:first-of-type {
    padding-right: 32px;
    font-size: var(--fz20);
  }

  .pickup-project-contents .btn:first-of-type::after {
    transition-property: background-color;
    transition-duration: 0.1s;
  }
  
  .pickup-project-contents .btn:first-of-type:hover::after {
    z-index: 1;
    background-color: #fff;
    transition-delay: 0.2s;
    transition-duration: 0.1s;
  }

  .pickup-project-contents .btn:nth-of-type(2) {
    padding-right: 20px;
    gap: 12px;
  }

  .pickup-project-contents .btn:nth-of-type(2)::after {
    transition-property: background-color;
    transition-duration: 0.1s;
  }

  .pickup-project-contents .btn:nth-of-type(2):hover::after {
    z-index: 1;
    background-color: #fff;
    transition-delay: 0.2s;
    transition-duration: 0.1s;
  }
    
  .pickup-project-contents .btn .br-onlySP {
    display: none;
  }
  .pickup-project-contents .btn .br-onlyPC {
    display: block;
  }
}

/***************************************
Data
***************************************/
.data {
  padding: 110px 32px 0;
}

.data hgroup {
  padding: 0;
}

.data-inner {
  max-width: 600px;
  margin-inline: auto;
}

.data-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 12px;
}

.data-list li {
  border-radius: 20px;
  background: #FFF;
  padding: 24px 3px 24px;
  color: #3C3C3C;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
}

.data-list li > div::after {
  content: '';
  display: block;
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center center;
  margin-top: 16px;
}

.data-list li:first-of-type > div::after {
  background-image: url('../img/img_datalist01.svg');
}

.data-list li:nth-of-type(2) > div::after {
  background-image: url('../img/img_datalist02.svg');
}

.data-list li:nth-of-type(3) > div::after {
  background-image: url('../img/img_datalist03.svg');
}

.data-list li:nth-of-type(4) > div::after {
  background-image: url('../img/img_datalist04.svg');
}

.data-list li:nth-of-type(5) > div::after {
  background-image: url('../img/img_datalist05.svg');
}

.data-list li:nth-of-type(6) > div::after {
  background-image: url('../img/img_datalist06.svg');
}

.data-list li h3 {
  text-align: center;
  font-size: var(--fz15);
  font-weight: 700;
}

.data-list li p {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.data-list li p b {
  font-size: var(--fz32);
}

.data-list li p small {
  font-size: var(--fz24);
}

.data-list li p span.unit {
  margin-left: 2px;
  font-size: 1rem;
}

.data-list li p .ls-narrow {
  letter-spacing: -0.1em;
}

.counter {
  font-variant: tabular-nums;
}

span.small {
  font-size: var(--fz12);
}


@media (min-width:900px) {
  .data {
    padding: 120px 32px 0;
  }

  .data-inner {
    max-width: 1200px;
  }

  .data-list {
    margin-top: 60px;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 27px 31px;
  }

  .data-list li {
    padding: 54px 3px 54px;
    gap: 16px;
  }

  .data-list li > div::after {
    height: 70px;
  }

  .data-list li h3 {
    font-size: var(--fz18);
  }

  .data-list li p {
    font-size: var(--fz18);
  }

  .data-list li p b {
    font-size: var(--fz64);
  }

  .data-list li p b small {
    font-size: var(--fz48);
  }

  .data-list li p span.unit {
    margin-left: 2px;
  }

  .data-list li p br {
    display: none;
  }
}

/***************************************
FAQ
***************************************/
.faq {
  padding: 110px 32px 0;
}

.faq hgroup {
  text-align: center;
}

.faq hgroup h2 {
  font-family: "Barlow", sans-serif;
  font-size: var(--fz28);
  font-weight: 700;
}

.faq hgroup p {
  font-size: var(--fz13);
  font-weight: 700;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-list .accordion-panel {
  border-radius: 6px;
  background-color: #fff;
}

.faq-list .accordion-panel .accordion-trigger {
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.faq-list .accordion-panel .accordion-trigger .title {
  flex: 1;
  display: block;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: var(--fz15);
  font-weight: 700;
}

.faq-list .accordion-panel .accordion-trigger .title span {
  flex: 1;
  line-height: 1.6;
}

.faq-list .accordion-panel .accordion-trigger .title::before {
  content: "Q";
  width: 25px;
  height: 25px;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-list .accordion-panel .accordion-trigger .icon-open {
  display: block;
  width: 16px;
  height: 16px;
  position: relative;
  background-image: url("../img/btn_faq.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: all 0.3s;
  transform-origin: center center;
}

.faq-list .accordion-panel .accordion-trigger[aria-expanded="true"] .icon-open {
  transform: rotate(180deg);
}

.faq-list .accordion-panel .accordion-content {
  display: grid;
  border-radius: 0 0 2px 2px;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}

.faq-list .accordion-panel .accordion-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.faq-list .accordion-panel .accordion-content div {
  overflow: hidden;
}

.faq-list .accordion-panel .accordion-content div p {
  padding: 0 20px 20px 16px;
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: var(--fz15);
}

.faq-list .accordion-panel .accordion-content div p span {
  flex: 1;
  letter-spacing: 0;
  line-height: 2.16;
}

.faq-list .accordion-panel .accordion-content div p::before {
  content: "A";
  display: block;
  width: 25px;
  height: 25px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 3px;
  color: #475b70;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-list .accordion-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

@media (min-width:900px) {

  .faq hgroup h2 {
    font-size: var(--fz48);
  }

  .faq hgroup p {
    font-size: var(--fz20);
  }

  .faq-list {
    margin: 40px auto 0;
    max-width: 960px;
  }

  .faq-list .accordion-panel .accordion-trigger {
    padding: 29px 20px 27px 32px;
    gap: 34px;
  }
  .faq-list .accordion-panel .accordion-trigger .title {
    gap: 24px;
    font-size: 1rem;
  }

  .faq-list .accordion-panel .accordion-trigger .title::before {
    content: "Q";
    width: 34px;
    height: 34px;
    font-size: var(--fz20);
  }

  .faq-list .accordion-panel .accordion-trigger .icon-open {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }

  .faq-list
    .accordion-panel
    .accordion-trigger
    .icon-open
    .open-btn
    span:first-child {
    transform: translate(-50%, -50%);
  }

  .faq-list .accordion-panel .accordion-content div p {
    padding: 0 84px 20px 32px;
    gap: 23px;
    font-size: 1rem;
  }

  .faq-list .accordion-panel .accordion-content div p span {
    line-height: 1.8;
  }

  .faq-list .accordion-panel .accordion-content div p::before {
    content: "A";
    width: 34px;
    height: 34px;
    font-size: var(--fz22);
  }
}

/***************************************
エントリーボタン
***************************************/
.cta-entry.entry {
  align-items: center;
  padding: 40px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-entry.entry a {
  width: 100%;
  max-width: 311px;
  height: 70px;
  display: grid;
  place-items: center;
  font-size: var(--fz24);
  font-weight: 700;
  padding: 0 32px;
  position: relative;
}

.cta-entry.entry span {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.cta-entry.entry a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 40px;
  background: var(--Linear);
}

.cta-entry.entry a::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  z-index: 1;
  border-radius: 40px;
  background: #fff;
}

.cta-entry.entry span::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}


@media (min-width:768px) {
  .cta-entry.entry {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    padding-top: 85px;
  }

  .cta-entry.entry a {
    max-width: 360px;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
  }

  .cta-entry.entry a:hover {
    opacity: 1;
  }
  
  .cta-entry.entry a::after {
    transition: transform 0.3s;
    transform-origin: right center;

  }

  .cta-entry.entry a:hover::after {
    transform:translateX(110%);
    transform-origin: right 2px center;
  }
}

/***************************************
アカデミーバナー
***************************************/
.bnr-academy {
  margin: 60px auto 0;
  padding: 0 32px 60px;
}

.bnr-academy a {
  display: block;
  width: 100%;
  max-width: 720px;
  height: fit-content;
  margin-inline: auto;
}

.bnr-academy a img {
  width: 100%;
  height: auto;
}

@media (min-width:768px) {
  .bnr-academy {
    margin: 120px auto 0;
    padding-bottom: 120px;
  }

}

/***************************************
TOPへ戻るボタン
***************************************/
.back-to-top {
  position: fixed;
  right: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  width: 30px;
  height: 76px;
  font-size: 0;
  transition: opacity 0.4s ease,visibility 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  background-image: url("../img/back_to_top.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.back-to-top.btn-show {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}

@media (min-width:1300px) {
  .back-to-top {
    right: 76px;
    width: 40px;
    height: 86px;
  }
}

/***************************************
Footer
***************************************/
footer {
  background-color: #EFEBE7;
}

.footer-inner {
  border-radius: 30px 30px 0 0;
  background: #F4F4F4;
  padding: 60px 32px 20px;
  text-align: center;
}

.footer-logo {
  width: 237px;
  margin-inline: auto;
}

.footer-sns {
  margin-top: 20px;
  font-family: "Barlow", sans-serif;
  font-size: var(--fz14);
  font-weight: 700;
}

.footer-sns p::after {
  content: '';
  display: block;
  width: 2px;
  height: 12px;
  background-color: var(--orange);
  margin: 0 auto;
}

.footer-sns ul {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer-sns ul li img {
  width: 28px;
}

footer hr {
  margin: 40px 0 20px;
  color: var(--orange);
}

.footer-copy {
  font-family: Barlow;
  font-size: var(--fz12);
}

@media (min-width:768px) {
  
  .footer-inner {
    border-radius: 40px 40px 0 0;
    padding: 64px 120px 32px;
  }

  .footer-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    margin-inline: auto;
  }

  .footer-sns {
    display: flex;
    margin-top: 0;
    gap: 8px;
  }

  .footer-sns p {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-sns p::after {
    width: 50px;
    height: 2px;
    margin: 0 auto;
  }

  footer hr {
    margin: 24px 0 20px;
  }

  .footer-copy {
    text-align: right;
  }
}