@charset "UTF-8";

html {
  appearance: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  /*scroll-behavior: smooth;*/
  scroll-padding-top: 200px;
  word-break: break-all;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 1240px) and (min-width: 768px) {
  html {
    font-size: 1.5vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: min(2.6666666667vw, 20.6666666667px);
  }
}

.grecaptcha-badge { visibility: hidden;bottom:0!important;right:0!important; }

main {
  overflow: clip;
}

@media only screen and (min-width: 768px) {
.scroll-fixed-obj {
  position: sticky;
  top: 18%;
  left: 0;
}
}

body {
  font-family:  "Montserrat", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: .08em;
}

img {
  width: 100%;
  height: auto;
}

a {
  transition: .3s opacity;
}

@media (hover: hover) {
  a:hover {
    opacity: .7;
  }
}

h2, h3, h4, h5 {
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 1em;
}

h2 {
  font-size: 3.56rem;
  font-weight: 400;
  position: relative;
  margin-top: -.3em;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  h2 {
    margin-bottom: .3em;
  }
}

h3, .title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: .5em;
}

.title {
  line-height: 1.7;
  font-size: 2.2rem;
  margin-bottom: .8em;
}

p, li {
  margin-bottom: 2em;
}

.note {
  font-size: .8rem;
}

.textR {
  text-align: right;
}

.textC {
  text-align: center;
}

.textL {
  text-align: left;
}

.mt10 {
  margin-top: 1rem;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex .order1 {
  order: 1;
}

.flex .order2 {
  order: 2;
}

@media only screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
    gap: 5vw;   
  }
  .flex > * {
    width: 100%!important;
  }
}

.btn, header li a, .pager a {
  display: block;
  width: 100%;
  padding: .7em 1.5em;
  background: #fff;
  border-radius: 9999px;
  font-weight: 500;
  color: #000;
  font-size: .8rem;
}

.btn, .form-list li a, .pager a {
  border: 1px solid #000;
}

.btn-wh, .pager a {
  background: #fff;
}

.btn-gb {
  background-image: linear-gradient(90deg, #00FFD4 30%, #AEFF00);
}

.btn-gb2 {
  background-image: linear-gradient(90deg, #77d6fe 30%, #31de51);
}

.btn-view {
  background-image: linear-gradient(90deg, #00ffd4, #aeff00);
  width: 16em;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.arrow, .pager a {
  padding-right: 3em; 
  position: relative;
}

.form-list li a, .btn.arrow, .pager a {
  padding-right: 5em;
  position: relative;
}

.form-list li a::after, .btn.arrow::after, .arrow::after, .pager a::after {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2em;
  width: 2em;
  height: 1em;
  background: url(../img/arrow.svg) no-repeat right center / contain;  
  transition: right .3s;
}

.pager {
  display: flex;
  justify-content: flex-start;
  width: 30%;
  margin: 3em auto;
  max-width: 240px;
  gap: 10%;
}

@media only screen and (max-width: 767px) {
  .pager {
    width: 50%;
    max-width: 50%;
    margin-left: auto;
    margin-right: 0;
  }
}

.pager a {
  width: 40%;
  padding: 1.3rem;
  font-size: 0;
}

.pager a::after {
  left: 50%;
  right: auto;
  width: 20px;
  height: 20px;
  translate: -50% -50%;
  transition: left .3s;
  background-position: center;  
}

.pager a.pager-prev::after {
  rotate: 180deg;
}

@media (hover: hover) {
  .form-list li a:hover::after, .btn.arrow:hover::after, .arrow:hover::after {
    right: 1em;
  }
  .pager a:hover::after {
    left: 60%;
  }
  .pager a.pager-prev:hover::after {
    left: 40%;
  }
}

@media only screen and (max-width: 1000px) {
  .form-list li a {
    padding-right: 2em;
  }
  .form-list li a.arrow::after {
    right: 1.5em;
  }
  .form-list li a.arrow:hover::after {
    right: 1em;
  }
}

.content-wrapper {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .content-wrapper {
    margin-bottom: 18%;
  }
}

.inner {
  max-width: 1240px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
 .inner { width: 85vw;}
}

.l-text {
  font-size: 1.1rem;
}

.flex-child-l {
  width: 55%;
}

.flex-child-s {
  width: 40%;
}

.list-dot {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.list-border li:not(:last-of-type) {
  border-bottom: 1px solid #000;
  margin: 0;
}

.list-border li a {
  display: block;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

dl.list-border {
  display: flex;
  flex-wrap: wrap;
}

dl.list-border dt {
  border-top: 1px solid #000;
  padding: 2em 0;
  width: 30%;
}

dl.list-border dd {
  border-top: 1px solid #000;
  padding: 2em 0;
  width: 70%;
}

*:not(dl).border-gradation, .list-gradation li, .list-gradation dt, .list-gradation dd,
dl.border-gradation > div {
  background-image: linear-gradient(70deg, #ff9fca 0%, #a1abff 50%, #5ed5ff);
  border-radius: 20px;
  padding: 1px;
  font-size: 1.1em;
}

.list-gradation li, .list-gradation dt, .list-gradation dd {
  margin-bottom: -.5px;
}

*:not(dl).border-gradation > *, .list-gradation li > *, .list-gradation dt > *, .list-gradation dd > *,
dl.border-gradation > div > * {
  display: block;
  border-radius: 19px;
  padding: 1.5em;
  background: #fff;
  height: 100%;
}

@media (hover: hover) {
  .border-gradation a hover, .list-gradation li a:hover, .list-gradation dt a, .list-gradation dd a {
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  .list-gradation.flex {
    gap: 0;
  }
}

.list-gradation dt {
  position: relative;
  z-index: 2;
}

.list-gradation dd {
  padding: 3em 3em 2em 3em;
  margin-top: -2em;
  margin-bottom: 2em;
  z-index: 1;
  color: #fff;
  font-weight: 600;
}

dl.border-gradation > div {
  height: auto;
  font-size: 1rem;
}

dl.border-gradation dt {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding-bottom: 0;
}
dl.border-gradation dd {
  border-top-right-radius: 0;
  border-top-left-radius: 0; 
  padding-top: 0;
}

header {
    padding: 3% 3% 1.5% 3%;
    display: grid;
    grid-template-columns: 20% 50% 20%;
    grid-template-areas: "logo nav list";
    gap: 5%;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    background: none;
    background-color: rgba(255,255,255,0);
    z-index: 4;
}

header #header-logo {
  grid-area: logo;
}

header #NavContent {
  grid-area: nav;
}

header .gnav {
  display: flex;
  gap: 5%;
}

header .gnav li a {
  padding: .5em 1em;
}

header .form-list {
  grid-area: list;
  justify-self: end;
}

header .form-list li {
  margin-bottom: 1em;
}

.form-list li a {
  width: 100%;
}

@media only screen and (max-width: 767px) {

    .HamburgerBtn {
    width: 2.5rem;
    height: 1.5rem;
    position: absolute;
    top: 3.8vw;
    right: 4vw;
    border: 1px solid #000;
    border-radius: .4rem;
    padding :1em;
    }
    
    .HamburgerBtn span {
    display: block;
    width: 40%;
    height: 1px;
    background-color: #000;
    position: absolute;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    }
    
    .HamburgerBtn span:first-of-type {
    top: .7em;
    }
    
    .HamburgerBtn span:last-of-type {
    bottom: .7em;
    }
    
    .HamburgerBtn.open {
    z-index: 14;
    border-color: #fff;
    }
    .HamburgerBtn.open span {
    background-color: #fff;
    }
    
    .HamburgerBtn.open span:first-of-type {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    }
    
    .HamburgerBtn.open span:last-of-type {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    }
  header {
    padding: 4vw 4vw;
    grid-template-columns: 28% 60%;
    grid-template-areas: "logo list";
    gap: 3%;
    background: #fff;
  }

  header .form-list {
    width: 100%;
    position: relative;
    z-index: 0;
    display: flex!important;
    gap: 2vw;
    font-size: 2vw;
  }
  header .form-list li {
    width: 50%;
  }
  header .form-list.sp {
    flex-direction: column;
    justify-content: center;
    font-size: inherit;
    z-index: 5;
    position: absolute;
    bottom: 1vh;
    left: 50%;
    translate: -50% 0;
    width: 85vw;
    gap: 0;
  }     
  header .form-list.sp li {
    width: 80%;
    margin-left: 10%;
    margin-bottom: 10px;
  }
  header .form-list.sp li a {
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-right: 1.5em;
    white-space: nowrap;
    font-size: 2vh;
  }
  header h1 {
    margin-top: .5rem;
  }
  header #NavContent {
   color: #fff;
   border-bottom-right-radius: 50px;
   border-bottom-left-radius: 50px;
   padding: 3rem;
   position: absolute;
   top: 0;
   right: 0;
   transition: opacity .3s ease-in-out;
   z-index: -4;
   opacity: 0;
   height: 0;
  }
  header #NavContent::after {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background-image: url(../img/bg02.svg);
    background-blend-mode: screen;
  }
  header #NavContent.active {
    z-index: 10;
    opacity: 1;
    height: 100dvh;
    width: 100vw;
    overflow: auto;
  }
  header .gnav {
    flex-direction: column;
    opacity: 0;
    gap: 2vh;
    height: 0;
    overflow: hidden;
  }
  header #NavContent.active .gnav {
    opacity: 1;
    height: 75dvh;
    overflow: auto;
  }
  header .gnav > li a {
    background: none;
    color: #000;
    border-radius: 0;
    padding-top: 1vh;
    padding-bottom: 2vh;
    border-bottom: 1px solid #fff;
  }
  header .gnav > li {
    margin-bottom: 0;
  }
  header .gnav > li:last-of-type a {
     border: none;
  }
  header .gnav > li a span {
    display: block;
    font-size: 6vw;
    color: #fff;
    margin-bottom: 1vh;
    font-weight: 400;
  }
}

@media only screen and (max-height: 375px) {
  header #NavContent.active .gnav {
    height: 55vh;
  }
}

#top {
  line-height: 1.8;
  position: relative;
}

#top::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  top: 2%;
  left: 50%;
  translate: -50% 0;
  background: url(../img/top/bg-line02.svg) 18% 0 no-repeat;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #top::before {
    content: none;
  }
  #top section {
    padding-left: 10vw;
  }
}


.swiper-wrapper{-webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important; }

#lead.content-wrapper {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

#lead .inner {
position: relative;
}

#lead figure.lead-header {
  width: 39%;
  margin-top: 5%;
}

main#top {
  margin-top: -250px;
  padding-top: 250px;
}

#lead .flex > div {
  width: 55%;
}

#lead .pics-slide {
  right: 0;
  top: -250px;
  height: 1150px;
  padding: 0;
  overflow: hidden;
}

.pics-slide {
  position: relative;
  overflow: hidden;
}

#lead ul {
  animation: slide 20s linear infinite both;
  position: relative;
  z-index: 5;
}

@keyframes slide {
  0% { translate: 0 0; }
  100% { translate: 0 -33.6%; }
}

#lead li.pics {
  display: grid;
  grid-template-columns: 55.7% 41.7%;
  grid-template-areas: "pic1 pic2"
                        "pic1 pic3";
  gap: 3%;
}

#lead li.pics img:first-of-type {
  grid-area: pic1;
}

#lead li.pics img:nth-of-type(2) {
  grid-area: pic2;
  justify-self: end;
}

#lead.bg-circle-s::before {
  content: none;
}

#lead li.pics img:last-of-type {
  grid-area: pic3;
  justify-self: end;
}

@media only screen and (max-width: 767px) {
  #lead::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  top: 25vh;
  left: 50%;
  translate: -50% 0;
  background: url(../img/top/bg-line01_sp.svg) 30% 0 / 120% no-repeat;
  z-index: -1;
  }
  #lead figure.lead-header.sp {
    position:relative;
    z-index: 2;
    order: 2;
    text-align: center;
    padding-right: 2%;
    margin-bottom: 60px;
  }
  #lead figure.lead-header.sp img {
    width: 60vw!important;
  }
  #lead .pics-slide {
    right: auto;
    left: -10%;
    top: 0;
    width: 100vw!important;
    height: auto;
    order: 1;
    z-index: 2;
    margin-bottom: 60px;
  }
  #lead ul {
    display: flex;
    align-items: stretch;
    width: fit-content;
    animation: slide2 20s linear infinite both;
    gap: 1.5vh;
  }
  @keyframes slide2 {
    0% { translate: 0 0; }
    100% { translate: -33.4% 0; }
  }
  #lead ul li {
    flex-shrink: 0;
    height: 30vh;
    width: fit-content;
  }
  #lead ul li img {
    height: 30vh;
    width: auto;
  }
  #lead.bg-circle-s {
    content: '';
  }
}



#about, section.about-lead {
  color: #fff;
}

@media only screen and (min-width: 2700px) {
  #about, section.about-lead {
    text-shadow: 1px 1px 6px #aaa;
  }
}

#about {
  margin-top: 10%;
}

#about h3, section.about-lead h3 {
  font-weight: 600;
}

#about.bg-circle.bg-circle-after::after {
  width: 120%;
  top: -300%;
  right: -30%;
  z-index: -2;
}

#about.bg-circle::before {
  top: -140%;
  left: -50%;
  width: 130%;
  translate: 0 0;
  animation: floating-y 8s ease-in-out infinite alternate-reverse;
  rotate: -10deg;
  z-index: -1;
}

@keyframes floating-y {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -3% 3%;
  }
  100% {
    translate: 3% 5%;
  }
}

#about .btn {
  float: right;
}

#about .about-lead {
  margin-bottom: 10rem;
  display: grid;
  position: relative;
}

#about .about-lead > * {
  width: 56%;
  justify-self: end;
}

#about .flex .text {
  width: 40%;
}
#about .flex {
    position: relative;
  z-index: 2;
}

#about .flex figure {
  width: 57%;
}

#about .about-lead-text {
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  #about {
    margin-top: 5rem;
    z-index: 20;    
  }
  .about-lead .title {
    font-size: 2rem;
  }
  .about-lead.inner {
    margin-bottom: 5em;
    display: block;
  }
  .about-lead > * {
    width: 100%;
  }
  #about .inner {
    position: relative;
    z-index: 20;
  }
  #about .inner.flex .order1 {
    order: 2;
  }
  #about .inner.flex .order2 {
    order: 1;
    width: 100vw!important;
    margin-left: -5vw;
    margin-bottom: 5em;
  }
  #about.bg-circle.bg-circle-after::after,
  #about.bg-circle::before {
    content: none;
    z-index: 2;
  }
  #lead.content-wrapper {
    z-index: 0;
  }
  #lead.bg-circle-s::before {
    content: '';
    width: 380vw;
    height: 380%;
    background: url(../img/top/bg-circle_sp.svg) center top / contain no-repeat;
    top: -13%;
    bottom: auto;
    left: -120vw;
    opacity: 1;
    z-index: -2;
  }
}

.line {
  background: url(../img/top/bg-transparent.svg);
  position: relative;
  z-index: 2;
  margin-top: -180px;
  height: auto;
  width: 100%;
  aspect-ratio: 118 / 50;
}

@media only screen and (max-width: 767px) {
  .line {
    display: none;
  }
}


#work {
  position: relative;
  z-index: 4;
  padding: 5% 0 0 0;
  background: #fff;
  margin-top: -150px
}
@media only screen and (max-width: 767px) {
  #work {
    z-index: 3;
    margin-top: 0;
  }
  #work::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/top/bg-transparent.svg) left top / cover no-repeat;
  top: -20%;
  left: 0;
  z-index: -2;
  }
}

#work .text li {
  font-size: 1.1em;
}

#work .pics-slide {
  margin-left: -25%;
  flex-shrink: 1;
  width: 80%;
  position: relative;
  z-index: 4;
}

#work .pics-slide ul,
.sub .pics-slide ul {
  display: flex;
  gap: 12px;
}

#work .pics-slide ul {
  width: fit-content;
  animation: slide-horizonal 8s linear infinite both;
}

#work .pics-slide ul li {
  min-width: 25%;
}

#work .pics-slide ul li:not(.pics) {
  min-width: 18.5%;
}

@keyframes slide-horizonal {
  0% { translate: 0 0; }
  100% { translate: -72.3% 0; }
}

#work .pics-slide ul > li.pics,
.sub .pics-slide ul > li.pics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media only screen and (max-width: 767px) {
  #work .flex .pics-slide {
    width: 100vw!important;
    margin-bottom: 10%;
    left: 50%;
    position: relative;
    top: 0;
    translate: -50% 0;
    margin-left: 0;
    overflow: visible;
  }
  #work .pics-slide ul {
    width: 300%;
  }
  #what {
    position: relative;
    padding-top: 15%;
  }
  #what::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 50%;
  top: -15%;
  left: 0;
  background: url(../img/top/bg-line06.svg) center top / 120% no-repeat;
  z-index: -1;
  }
}


#know {
  position: relative;
  z-index: 0;
}

#know::before {
  pointer-events:none;
}

#know .inner {
  position: relative;
  z-index: 2;
}

#know .flex-child-l figure:first-of-type {
  animation-delay: 2s;
}

#know .flex-child-l figure:last-of-type {
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  animation-delay: 1.4s;
}

#know > .inner > figure {
  position: absolute;
}

#know > .inner > figure:nth-of-type(1) {
  top: -5%;
  right: -10%;
  width: 22%;
  animation-delay: .6s;
}

#know > .inner > figure:nth-of-type(2) {
  bottom: -5%;
  left: -5%;
  width: 25%;
  animation-delay: 1s;
}

#know.bg-circle-s::before {
  width: 80%;
  right: -25%;
  bottom: -70%;
  z-index: auto;
  rotate: 17deg;
}

@media only screen and (max-width: 767px) {
  #know .flex-child-l {
    display: flex;
  }
  #know .flex-child-l figure {
    margin-left: -30vw;
    width: 73vw;
  }
  #know .flex-child-l figure:last-of-type {
    position: absolute;
    bottom: 25%;
    right: 0;
    width: 38vw;
  }
  #know > .inner > figure:nth-of-type(1) {
    right: -9vw;
    top: 12%;
    width: 35vw;
  }
  #know > .inner > figure:nth-of-type(2) {
    display: none;
  }
  #know.bg-circle-s::before {
    width: 250%;
    right: -120%;
    bottom: -70%;
    z-index: auto;
    rotate: 90deg;
  }
}

#job {
  position: relative;
  z-index: -1;
}

#job.bg-circle-s::before {
  width: 85%;
  left: -40%;
  bottom: -60%;
  rotate: 17deg;
}

#job::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -45%;
  left: 50%;
  translate: -50% 0;
  background: url(../img/top/bg-line01.svg) center top / 120% no-repeat;
  z-index: -2;
  animation: unset;
}

#job h2 {
  letter-spacing: .06em;
}

@media only screen and (max-width: 767px) {
  #job .order1 {
    order: 2;
  }
  #job .order2 {
    order: 1;
  }
  #job.bg-circle-s::before {
    content: none;
  }
  #job::after {
    background: url(../img/top/bg-line04.svg) center top / 105% no-repeat;
    top: -20%;
  }
}

#job .flex .flex-child-l {
  width: 48%;
}

#job .flex .flex-child-s {
  width: 48%;
}

ol.list-gradation {
  counter-reset: listnum;
  list-style: none;
}

ol.list-gradation li {
  position: relative;
}

ol.list-gradation li::before{
  counter-increment: listnum;
  content: '0'counter(listnum);
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
  height: 100%;
  border-radius: 19px 0 0 19px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  z-index: 2;
}

ol.list-gradation li > * {
  padding-left: 10em;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  ol.list-gradation li > * {
    padding-left: 7em;
  }
  ol.list-gradation li::before{
    width: 2.5em;
  }
}

#process.bg-circle-s::before {
  width: 90%;
  bottom: auto;
  top: -70%;
  right: -40%;
  background-image: url(../img/top/bg-circle02.svg);
  background-position: left top;
  opacity: .7;
}

#process .list-gradation li {
  margin-bottom: 1.5em;
  font-size: .9rem;
}

#process .process-flow h3 {
  font-size: 1.3rem;
  width: 5em;
  text-align: justify;
  text-justify: inter-ideograph;
  text-align-last: justify;
  white-space: nowrap;
  margin-right: 15%;
}

@media only screen and (max-width: 767px) {
  #process .process-flow h3 {
    margin-right: 5%;
  }  
}

#process .process-flow h3, 
#process .process-flow p {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  #process.bg-circle-s::before {
    content: none;
  }
  #process .note.textR {
    text-align: left;
    margin-top: -1em;
    margin-bottom: 2rem;
  }
  #process {
    z-index: 4;
  }
}

#faq {
  position: relative;
  z-index: 3;
}

#faq .flex.faq-list > * {
  width: 50%;
}

.faq-list dt {
  font-weight: normal;
  position: relative;
  cursor: pointer;
}

.faq-list dt > * {
  transition: background-color .3s;
}

@media (hover: hover) {
  .faq-list dt:hover > * {
    background-color: #f7fdff;
  }
}

@media (hover: none) {
  .faq-list dt:active > * {
    background-color: #f7fdff;
  }
}

.faq-list dt::after {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon-open.svg) center center / cover no-repeat;
  right: 2em;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  transition: rotate .3s;
}

.faq-list dt.open::after {
  rotate: -315deg;
}

.faq-list dd {
  translate: 0 0 0;
  transition: padding-top 0.3s;
  height: 0;
  overflow: hidden;
  padding: 0;
}

.faq-list dd.open {
  height: auto;
  padding: 3em 2.5em 2em 2.5em;
  margin-bottom: 0;
}


.flex.news-list {
  justify-content: flex-start;
}

.flex.news-list li {
  width: calc(100% / 3);
}

.flex.news-list li > * {
  height: 100%;
}

.list-gradation.news-list .arrow::after {
  top: 3.5rem;
  right: 3rem;
}

@media (hover: hover) {
  .list-gradation.news-list .arrow:hover::after {
    right: 2rem;
  }
}

@media (hover: none) {
  .list-gradation.news-list .arrow:active::after {
    right: 2rem;
  }
}

.list-gradation.news-list li > * > *:first-child {
  display: block;
  padding: 1em 1em 2em 1em;
  font-size: 1rem;
  position: relative;
}

.list-gradation.news-list li > * > *:first-child::after {
  content: '';
  display: inline-block;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(70deg, #ff9fca 0%, #a1abff 50%, #5ed5ff);
  position: absolute;
  left: 5%;
  bottom: 0;
}

.list-gradation.news-list p {
  font-size: 1.2rem;
  padding: 2rem 1rem 1rem 1rem;
  margin: 0;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  #news {
    position: relative;
    padding-top: 5%;
  }
  #news::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    top: -22%;
    left: 50%;
    translate: -50% 0;
    background: url(../img/top/bg-line03.svg) left top / 110% no-repeat;
    z-index: -1;
    }
  }
}


footer {
  color: #fff;
}

footer #footer-lead {
  font-size: .8rem;
  color: #fff;
  overflow: hidden;
}

footer #footer-lead span {
  display: inline-block;
  white-space: nowrap;
  line-height: 1em;
  padding: .5em 0;
  animation: textscroll 26s linear infinite .1s both;
}
@keyframes textscroll {
    0% { translate: 0 0; }
  100% { translate: -100vw 0; }
}


footer h2 {
  font-weight: 600;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  footer h2 {
    font-size: 7vw;
  }
}

footer h2::after {
  content: none;
}

footer .footer-entry {
  width: 100%;
  height: auto;
  background: url(../img/footer-entry.webp) center center / cover;
  padding: 10px 0;
  aspect-ratio: 8 / 2.6;
  display: grid;
  place-items: center;
  position: relative;
}

footer .l-text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 5%;
}


footer .footer-entry::before,
footer .footer-entry::after {
  content: '';
  display: block;
  height: 100%;
  background: #000;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

footer .footer-entry::before {
  width: 0;
  left: 0;
  transition: .2s opacity, width .1s;
}

footer .footer-entry::after {
  width: 0;
  right: 0;
  transition: .2s opacity, width .1s;
}

footer .footer-entry.entry-over::before {
  width: 52.5%;
  opacity: .5;
}

footer .footer-entry.casual-over::after {
  width: 47.5%;
  opacity: .5;
}

footer .footer-entry > * {
  position: relative;
  z-index: 2;
}

footer #entry-form h2 {
  width: fit-content;
}

footer #entry-form .flex {
  gap: 2%;
  width: 80%;
}

footer .btn {
  padding-top: 1em;
  padding-bottom: 1em;
  display: inline-block;
  width: 48%;
  white-space: nowrap;
  transition: background-image .5s;
}

@media (hover: hover) {
  footer .btn:hover {
    opacity: 1;
  }
}

@media (hover: none) {
  footer .btn:active {
    opacity: 1;
  }
}

footer .footer-entry-form {
  display: flex;
}

footer .footer-entry-form > section {
  width: 40%;
}

footer .footer-entry-form > section:first-of-type {
  width: 60%;
}


footer #casual-form .btn {
  width: 57%;
}

footer #footer-bottom {
  background: url(../img/footer-bg.svg) center center / cover;
  padding: 5% 0 0 0;
}

footer #footer-bottom nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 3%;
}

footer #footer-bottom nav li {
  width: 40%;
  margin-bottom: 3em;
}

footer #footer-bottom nav li a {
  position: relative;
  font-size: 2rem;
  letter-spacing: .08em;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

h2::after, footer #footer-bottom nav li a::after {
  content: '';
  position: absolute;
  bottom: -2em;
  left: 0;
  letter-spacing: .07em;
  font-size: .25em;
  color: inherit;
   background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
}

h2::after {
  bottom: -1.5em;
}

footer #footer-bottom nav li a::after {
  color: #000;
  font-size: .4em;
  bottom: -1.5em;
}

footer #footer-assets ul.flex {
  gap: 1%;
  width: 57%;
}

footer #footer-assets li {
  width: fit-content;
}

footer #footer-assets {
  font-size: .8rem;
}


@media only screen and (max-width: 767px) {
  footer .footer-entry {
    padding-top: 5%;
  }
  footer #footer-bottom {
    display: none;
  }footer .footer-entry-form > section {
    width: 50%!important;
  }
  footer #casual-form {
    padding-left: 2%;
  } 
  footer .btn {
    width: 100%;
    margin-bottom: 1em;
  } 
  footer #casual-form .btn {
    width: 90%;
  }
  footer .footer-entry.entry-over::before {
    width: 50%;
  }
  footer .footer-entry.casual-over::after {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  h2::after {
    bottom: auto;
    top: 1em;
    left: -3vw;
    rotate: 90deg;
    white-space: nowrap;
    transform-origin: left top;
  }
}

#about h2:not(.title)::after, footer #footer-bottom nav li:first-of-type a::after, #sub-about h2::after {
  content: '私たちを知る';
}

footer #footer-bottom nav li:nth-of-type(2) a::after {
  content: '環境を知る';
}

#work h2:not(.title)::after, #sub-work h2::after {
  content: '職場環境を知る';
  color: #000;
}

#what h2:not(.title)::after, footer #footer-bottom nav li:nth-of-type(3) a::after, #sub-what h2::after {
  content: '仕事を知る';
}

#job h2:not(.title)::after, footer #footer-bottom nav li:nth-of-type(4) a::after, .sub-job h2::after {
  content: '募集職種';
}

#know h2:not(.title)::after, footer #footer-bottom  li:nth-of-type(5) a::after, #sub-know h2::after {
  content: '会社を知る';
}

#news h2:not(.title)::after, footer #footer-bottom  li:nth-of-type(6) a::after, .sub-news h2::after {
  content: 'お知らせ';
}

#faq h2:not(.title)::after, #sub-faq h2::after {
  content: 'よくある質問';
}

#process h2:not(.title)::after {
  content: '選考フロー';
}

#sub-entry h2::after {
  content: 'エントリーする';
}

.sub-casual h2::after {
  content: 'カジュアル面談';  
}

#sub-privacy-policy h2::after {
  content: 'プライバシーポリシー';  
}

#sub-security-policy h2::after {
  content: 'セキュリティポリシー';  
}

.bg-circle, .bg-circle-after, .bg-circle-s {
  position: relative;
}

.bg-circle.bg-circle-after::after,
.bg-circle::before,
.bg-circle-s::before {
  content: '';
  display: block;
  position: absolute;
  width: 150%;
  height: auto;
  aspect-ratio: 1 / 1;
  z-index: -2;
  border-radius: 50%;
  background: url(../img/top/bg-circle01.svg) right top / cover;
  animation: floating-y 4s ease-in-out infinite alternate-reverse;
}

.bg-circle-s::before {
  background: url(../img/top/bg-circle02.svg) right top / cover;  
  opacity: .5;
  z-index: -2;
}

.bg-gradation01, .btn-pb, .list-gradation li::before {
  background-image: linear-gradient(70deg, #ff9fca 0%, #a1abff 50%, #5ed5ff);
}

.bg-gradation02 {
  background: linear-gradient(50deg, #31d5de, #7777fe), url(../img/bg.svg);
  position: relative;
}

.bg-gradation02 > * {
  position: relative;
  z-index: 2;
}

.bg-gradation02::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg.svg), rgba(255,255,255,0.1);
  z-index: 0;
}

.bg-text {
   background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.is-show {
  opacity: 0;
  transition: 1s;
}
    
.showAnim {
  animation: show .6s linear 0s 1 normal forwards;
}

@keyframes show {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

    .animRight, .animLeft {
    position: relative;
    }
    
    .showAnim.animRight {
    right: -5%;
    animation: showRight .3s forwards, show .3s linear 0s 1 normal forwards;
    }
    
    @keyframes showRight {
    0% { right: -5%; }
    100% { right: 0; }
    }
    
    .showAnim.animLeft {
    left: -5%;
    animation: showLeft .3s forwards, show .3s linear 0s 1 normal forwards;
    }

@keyframes showLeft {
  0% { left: -5%; }
  100% { left: 0; }
}

h2.animRight, h2.animLeft {
  animation-delay: .3s!important;
  animation-duration: .6s!important;
}


@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  br.sp {
    display: inline !important;
  }
}
@media only screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  br.pc {
    display: inline !important;
  }
  
}
