#btn_animation {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
#btn_animation .btn {
  writing-mode: vertical-rl;
  display: block;
  position: relative;
  font-size: 32px;
  font-weight: bold;
  border-radius: 16px 0 0 16px;
  padding: 16px;
  background-color: #63d4db;
  color: #fbfbfb;
  text-align: center;
  transition: 0.2s;
}
#btn_animation .btn::before, #btn_animation .btn::after {
  content: "";
  position: absolute;
  z-index: -10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 16px 0 0 16px;
  background: #a6f9ff;
  transform: translate3d(0, 0, 0);
}
#btn_animation .btn::before {
  animation: anime 2s ease-out infinite;
}
#btn_animation .btn::after {
  animation: anime 2s ease-out 2s infinite;
}
@keyframes anime {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: scale(1.8, 1.4);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  #btn_animation {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
  }
  #btn_animation .btn {
    writing-mode: horizontal-tb;
    border-radius: 16px 16px 0 0;
    font-size: 24px;
    padding: 12px;
  }
  #btn_animation .btn::before, #btn_animation .btn::after {
    border-radius: 16px 16px 0 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #f3f3f3;
  transition: background-color 0.6s ease;
}
body.is-change-bg {
  background-color: #ded3ed;
}
body.is-locked {
  overflow: hidden;
}

body.is-fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.img {
  width: 100%;
}
.img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul li {
  list-style: none;
  color: #2e2e2e;
}

th,
td {
  color: #2e2e2e;
}

p,
label,
span {
  font-size: 18px;
  color: #2e2e2e;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  p,
  label,
  span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  p,
  label,
  span {
    font-size: 14px;
  }
}

.PC {
  display: block;
}
@media (max-width: 1024px) {
  .PC {
    display: none;
  }
}

.SP {
  display: none;
}
@media (max-width: 1024px) {
  .SP {
    display: block;
  }
}

.common-sec {
  padding: 60px 120px;
}
@media (max-width: 1280px) {
  .common-sec {
    padding: 60px 60px;
  }
}
@media (max-width: 1024px) {
  .common-sec {
    padding: 60px 0px;
  }
}
@media (max-width: 768px) {
  .common-sec {
    padding: 40px 0px;
  }
}
@media (max-width: 480px) {
  .common-sec {
    padding: 32px 0px;
  }
}

.container {
  width: 100%;
  padding: 0 32px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

.h2-area {
  padding: 0 0 32px;
  position: relative;
}
.h2-area::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2e2e2e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease;
}
.h2-area h2,
.h2-area .jp {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.h2-area.is-active h2 {
  opacity: 1;
  transform: translateY(0);
}
.h2-area.is-active .jp {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.h2-area.is-active:after {
  transform: scaleX(1);
}
.h2-area h2 {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 80px;
  color: #2e2e2e;
}
.h2-area .jp {
  font-family: "Yanone Kaffeesatz", sans-serif;
  color: #6633cc;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .h2-area h2 {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .h2-area h2 {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .h2-area h2 {
    font-size: 40px;
  }
  .h2-area .jp {
    font-size: 20px;
  }
}

h3 {
  font-family: "Yanone Kaffeesatz", sans-serif;
  font-size: 32px;
  margin-bottom: 24px;
  color: #6633cc;
}
h3 span {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
@media (max-width: 1280px) {
  h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
    margin: 14px 0;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}

.fade-up-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}
.fade-up-text.is-active .char {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.reveal-left.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: #6633cc;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .page-top {
    right: 16px;
    bottom: 56px;
  }
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0s;
}
.modal .block {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}
.modal.is-active .modal-content {
  opacity: 1;
  transform: translateY(0);
}
.modal .video-wrapper {
  position: relative;
  padding-top: 56.25%;
}
.modal .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal .close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

#FV {
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}
#FV .fv1,
#FV .fv2,
#FV .fv3 {
  width: 33.3333333333%;
}
#FV .fv1 .slick-list,
#FV .fv2 .slick-list,
#FV .fv3 .slick-list {
  height: 100%;
}
#FV .fv1 .slick-list .slick-track,
#FV .fv2 .slick-list .slick-track,
#FV .fv3 .slick-list .slick-track {
  height: 100%;
}
#FV .fv1 .slick-list .slick-track .img img,
#FV .fv2 .slick-list .slick-track .img img,
#FV .fv3 .slick-list .slick-track .img img {
  height: 100%;
  object-fit: cover;
}
#FV .catch {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
#FV .catch span {
  font-size: 3vw;
  color: #fff;
  background-color: #6633cc;
  margin: 4px;
  border-radius: 16px;
  padding: 16px;
}
@media (max-width: 1280px) {
  #FV {
    height: 70vh;
  }
}
@media (max-width: 1024px) {
  #FV {
    height: 50vh;
  }
}
@media (max-width: 768px) {
  #FV {
    flex-direction: column;
    height: calc(100% - 56.4px);
    margin-top: 56.4px;
  }
  #FV .fv1,
  #FV .fv2,
  #FV .fv3 {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
  }
  #FV .catch {
    writing-mode: vertical-rl;
    bottom: auto;
    top: 8px;
  }
  #FV .catch span {
    padding: 4px;
    font-size: 32px;
    border-radius: 4px;
  }
}
@media (max-width: 480px) {
  #FV .catch span {
    font-size: 20px;
  }
}

#ABOUT {
  background-color: #ddd3eb;
}
#ABOUT .container .cover {
  position: relative;
}
#ABOUT .container .cover .img {
  width: 60%;
  position: relative;
}
#ABOUT .container .cover .img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
#ABOUT .container .cover .img .title {
  position: absolute;
  top: 8%;
}
#ABOUT .container .cover .img .title .ttl {
  background-color: #6633cc;
  color: #fff;
  font-size: 40px;
  margin-bottom: 16px;
  font-weight: bold;
}
#ABOUT .container .cover .img .title .ttl:last-of-type {
  margin-bottom: 0;
}
#ABOUT .container .cover .text {
  width: 50%;
  background-color: #f3f3f3;
  padding: 2%;
  position: absolute;
  right: 0;
  bottom: -32px;
}
#ABOUT .container .content {
  max-width: 1200px;
  margin: 120px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#ABOUT .container .content .block {
  width: 30%;
}
#ABOUT .container .content .img {
  width: 60%;
}
#ABOUT .container .content .img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (max-width: 1600px) {
  #ABOUT .container .cover .img .title .ttl {
    font-size: 32px;
  }
  #ABOUT .container .cover .text {
    width: 80%;
    bottom: -120px;
  }
  #ABOUT .container .content {
    margin: 180px auto 0;
  }
}
@media (max-width: 1280px) {
  #ABOUT .container .cover .img .title .ttl {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  #ABOUT .container .cover .text {
    width: 90%;
    bottom: -160px;
  }
  #ABOUT .container .content {
    margin: 220px auto 0;
  }
}
@media (max-width: 768px) {
  #ABOUT .container .cover .img {
    width: 100%;
  }
  #ABOUT .container .cover .img .title .ttl {
    font-size: 4vw;
  }
  #ABOUT .container .cover .text {
    position: static;
    margin: -40px auto 0;
  }
  #ABOUT .container .content {
    margin: 40px auto 0;
    flex-direction: column;
  }
  #ABOUT .container .content .block {
    width: 100%;
  }
  #ABOUT .container .content .img {
    width: 100%;
  }
}

#MESSAGE .container .content {
  max-width: 1200px;
  margin: 0 auto;
}
#MESSAGE .container .content .ttl {
  font-size: 48px;
}
#MESSAGE .container .content .ttl span {
  font-size: inherit;
}
#MESSAGE .container .content p {
  margin: 32px 0;
  line-height: 2.5;
}
#MESSAGE .container .content .img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (max-width: 1024px) {
  #MESSAGE .container .content .ttl {
    font-size: 32px;
  }
  #MESSAGE .container .content p {
    margin: 24px 0;
  }
}
@media (max-width: 768px) {
  #MESSAGE .container .content .ttl {
    font-size: 24px;
  }
  #MESSAGE .container .content p {
    margin: 20px 0;
  }
}
@media (max-width: 480px) {
  #MESSAGE .container .content .ttl {
    font-size: 20px;
  }
  #MESSAGE .container .content p {
    margin: 16px 0;
  }
}

#JOB {
  background-color: #ddd3eb;
}
#JOB .container .content {
  position: relative;
  margin: 56px 0;
}
#JOB .container .content .text {
  background-color: #f3f3f3;
  width: 40%;
  padding: 4%;
  border: 1px solid #2e2e2e;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translateY(-50%);
}
#JOB .container .content .img {
  width: 70%;
  margin: 0 0 0 auto;
}
#JOB .container .content .img img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
#JOB .container .content:nth-child(odd) .text {
  left: auto;
  right: 0;
}
#JOB .container .content:nth-child(odd) .img {
  margin: 0 auto 0 0;
}
@media (max-width: 1280px) {
  #JOB .container .content .text {
    width: 50%;
    padding: 2%;
  }
}
@media (max-width: 768px) {
  #JOB .container .content {
    margin: 24px 0;
    display: flex;
    flex-direction: column-reverse;
  }
  #JOB .container .content .text {
    position: static;
    transform: translate(0, -24px);
    width: 90%;
    margin: 0 auto;
  }
  #JOB .container .content .img {
    width: 100%;
    margin: auto;
  }
}

#INTERVIEW .container .content {
  margin: 56px 0;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
#INTERVIEW .container .content .card .img img {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 30%;
}
#INTERVIEW .container .content .card .name {
  font-size: 24px;
  line-height: 1;
  margin: 8px 0 0;
}
#INTERVIEW .container .content .card .en-name {
  font-weight: 100;
}
#INTERVIEW .container .content .card .text {
  margin: 8px 0 0;
}
#INTERVIEW .container .content .card .text span {
  display: inline-block;
  width: 100%;
  background-color: #ded3ed;
  padding: 8px;
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  #INTERVIEW .container .content {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  #INTERVIEW .container .content .card {
    display: flex;
    justify-content: space-between;
  }
  #INTERVIEW .container .content .card .img {
    width: 20%;
  }
  #INTERVIEW .container .content .card .img img {
    aspect-ratio: 8/9;
  }
  #INTERVIEW .container .content .card .block {
    width: 78%;
  }
}
@media (max-width: 480px) {
  #INTERVIEW .container .content {
    margin: 24px 0;
  }
  #INTERVIEW .container .content .card {
    flex-direction: column;
  }
  #INTERVIEW .container .content .card .img {
    width: 200px;
    margin: 0 auto;
  }
  #INTERVIEW .container .content .card .block {
    width: 100%;
  }
  #INTERVIEW .container .content .card .block .name,
  #INTERVIEW .container .content .card .block .en-name {
    text-align: center;
  }
}

#RESULTS .container .content {
  margin: 56px 0;
  padding: 0 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
#RESULTS .container .content .card {
  cursor: pointer;
  height: 480px;
  padding: 2%;
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  background-color: #fefbf4;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#RESULTS .container .content .card.is-open {
  border: none;
}
#RESULTS .container .content .card.is-open .plus {
  background-color: #fefbf4;
  border: 1px solid #2e2e2e;
}
#RESULTS .container .content .card.is-open .plus span {
  background-color: #ded3ed;
}
#RESULTS .container .content .card.is-open .plus span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#RESULTS .container .content .card.is-open .plus span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#RESULTS .container .content .card.is-open .hover-card {
  display: block;
}
#RESULTS .container .content .card .plus {
  background-color: #ded3ed;
  width: 120px;
  height: 120px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  border-top-right-radius: 8px;
}
#RESULTS .container .content .card .plus span {
  position: absolute;
  top: 30%;
  left: 70%;
  width: 40px;
  height: 2px;
  background-color: #2e2e2e;
  transform-origin: center;
  transition: 0.3s ease;
}
#RESULTS .container .content .card .plus span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}
#RESULTS .container .content .card .plus span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
#RESULTS .container .content .card:hover .plus span {
  width: 48px;
  height: 4px;
}
#RESULTS .container .content .card .ttl {
  font-size: 24px;
}
#RESULTS .container .content .card .img {
  width: auto;
  margin: 0 auto;
}
#RESULTS .container .content .card .nums {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#RESULTS .container .content .card .num {
  text-align: center;
  font-size: 72px;
  color: #6633cc;
  width: 100%;
}
#RESULTS .container .content .card .num .vertical {
  writing-mode: vertical-rl;
  display: inline-block;
}
#RESULTS .container .content .card .hover-card {
  overflow: auto;
  background-color: #ded3ed;
  width: 100%;
  height: 480px;
  border-radius: 8px;
  padding: 2%;
  border: 1px solid #2e2e2e;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#RESULTS .container .content .card .hover-card .ttl {
  text-align: center;
  position: relative;
  z-index: 1;
}
#RESULTS .container .content .card .hover-card .nums {
  border-bottom: 1px solid #2e2e2e;
}
#RESULTS .container .content .card .hover-card .nums .num {
  border-bottom: none;
}
#RESULTS .container .content .card .hover-card .num {
  border-bottom: 1px solid #2e2e2e;
  position: relative;
  z-index: 1;
}
#RESULTS .container .content .card .hover-card .text {
  margin: 16px 0 0 0;
}
@media (max-width: 1280px) {
  #RESULTS .container .content .card .ttl {
    font-size: 20px;
  }
  #RESULTS .container .content .card .img {
    width: 60%;
  }
  #RESULTS .container .content .card .num {
    font-size: 56px;
  }
}
@media (max-width: 1024px) {
  #RESULTS .container .content {
    grid-template-columns: repeat(2, 1fr);
  }
  #RESULTS .container .content .card .num {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  #RESULTS .container .content {
    margin: 24px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  #RESULTS .container .content .card:hover .plus span {
    width: 40px;
    height: 2px;
  }
  #RESULTS .container .content .card .img {
    width: 50%;
  }
}

#BENEFITS {
  background: linear-gradient(to left, #ded3ed 60%, transparent 60%);
}
#BENEFITS .container .content {
  margin: 56px 0;
  display: flex;
}
#BENEFITS .container .content .left {
  width: 40%;
  padding: 2%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 64px;
  height: fit-content;
}
#BENEFITS .container .content .left .ttl {
  font-size: 32px;
}
#BENEFITS .container .content .right {
  width: 60%;
}
#BENEFITS .container .content .right .block {
  display: flex;
  align-items: center;
  margin: 0 0 0 -4%;
  padding: 2% 0;
}
#BENEFITS .container .content .right .block .img {
  width: auto;
  margin-right: 24px;
}
#BENEFITS .container .content .right .block .img img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
}
#BENEFITS .container .content .right .block .sentence .ttl {
  font-size: 24px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  #BENEFITS .container .content .left .ttl {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #BENEFITS .container .content {
    margin: 24px 0;
    flex-direction: column;
  }
  #BENEFITS .container .content .left {
    width: 100%;
    position: static;
    justify-content: left;
  }
  #BENEFITS .container .content .right {
    width: 100%;
  }
  #BENEFITS .container .content .right .block {
    margin: auto;
  }
  #BENEFITS .container .content .right .block .img img {
    width: 120px;
    height: 120px;
  }
  #BENEFITS .container .content .right .block .sentence .ttl {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  #BENEFITS .container .content .right .block {
    flex-direction: column;
    margin: 16px 0;
  }
  #BENEFITS .container .content .right .block .img {
    margin-right: 0;
  }
  #BENEFITS .container .content .right .block .sentence .ttl {
    text-align: center;
    margin: 8px 0;
  }
}

#CAREER {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/bg6.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#CAREER .container .content {
  margin: 56px 0;
}
@media (max-width: 768px) {
  #CAREER .container .content {
    margin: 24px 0;
  }
}

#REQUIREMENTS {
  background-color: #f3f3f3;
}
#REQUIREMENTS .container .content {
  margin: 56px 0;
}
#REQUIREMENTS .container .content .tab-4 {
  display: flex;
  flex-wrap: wrap;
}
#REQUIREMENTS .container .content .tab-4 > label {
  flex: 1 1;
  order: -1;
  position: relative;
  min-width: 70px;
  padding: 0.7em 1em;
  background-color: #ded4ed;
  color: #999;
  font-weight: 600;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}
#REQUIREMENTS .container .content .tab-4 > label:hover, #REQUIREMENTS .container .content .tab-4 > label:has(:checked) {
  background-color: #6633cc;
  color: #fff;
}
#REQUIREMENTS .container .content .tab-4 > label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #6633cc;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
#REQUIREMENTS .container .content .tab-4 > label:has(:checked) + .block {
  display: block;
  border: 1px solid #2e2e2e;
}
#REQUIREMENTS .container .content .tab-4 > label input {
  display: none;
}
#REQUIREMENTS .container .content .tab-4 .block {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
}
#REQUIREMENTS .container .content .tab-4 .block table {
  width: 100%;
}
#REQUIREMENTS .container .content .tab-4 .block table tr th,
#REQUIREMENTS .container .content .tab-4 .block table tr td {
  padding: 16px;
}
#REQUIREMENTS .container .content .tab-4 .block table tr th {
  width: 20%;
  border-bottom: 2px solid #2e2e2e;
}
#REQUIREMENTS .container .content .tab-4 .block table tr td {
  width: 80%;
  border-bottom: 1px solid #2e2e2e;
}
#REQUIREMENTS .container .content .tab-4 .block table tr td ul li {
  list-style: disc;
  margin-left: 24px;
}
@media (max-width: 768px) {
  #REQUIREMENTS .container .content {
    margin: 24px 0;
  }
  #REQUIREMENTS .container .content .tab-4 .block table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }
  #REQUIREMENTS .container .content .tab-4 .block table tr:last-of-type {
    margin-bottom: 0;
  }
  #REQUIREMENTS .container .content .tab-4 .block table tr th {
    width: 100%;
    text-align: left;
    border-bottom: none;
    padding: 0 16px;
  }
  #REQUIREMENTS .container .content .tab-4 .block table tr td {
    width: 100%;
  }
}

#FLOW {
  background-color: #f3f3f3;
}
#FLOW .container .content {
  margin: 56px 0;
  display: flex;
}
#FLOW .container .content .left {
  width: 50%;
  padding: 0 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#FLOW .container .content .left .ttl {
  font-size: 40px;
  margin-bottom: 24px;
}
#FLOW .container .content .right {
  width: 50%;
  padding: 0 2%;
}
#FLOW .container .content .right .flow {
  position: relative;
}
#FLOW .container .content .right .flow .flow-item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 32px;
}
#FLOW .container .content .right .flow .flow-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #6633cc;
  border-radius: 50%;
}
#FLOW .container .content .right .flow .flow-item::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 12px;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(#6633cc 33%, rgba(255, 255, 255, 0) 0%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}
#FLOW .container .content .right .flow .flow-item:last-child::after {
  display: none;
}
#FLOW .container .content .right .flow .flow-item h3 {
  margin-bottom: 8px;
}
@media (max-width: 1024px) {
  #FLOW .container .content .left .ttl {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  #FLOW .container .content {
    margin: 24px 0;
    flex-direction: column;
  }
  #FLOW .container .content .left {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
  }
  #FLOW .container .content .left .ttl {
    font-size: 24px;
  }
  #FLOW .container .content .right {
    width: 100%;
    padding: 0;
  }
}

#QUESTION {
  background-color: #f3f3f3;
}
#QUESTION .container .content {
  margin: 56px 0;
}
#QUESTION .container .content .accordion {
  margin: 32px 0;
  border-bottom: 1px solid #ccc;
}
#QUESTION .container .content .accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
}
#QUESTION .container .content .accordion-header:hover {
  opacity: 0.8;
}
#QUESTION .container .content .accordion-header .q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-weight: bold;
  margin-right: 16px;
}
#QUESTION .container .content .accordion-header .text {
  flex: 1;
}
#QUESTION .container .content .accordion-header .icon {
  position: relative;
  width: 16px;
  height: 16px;
}
#QUESTION .container .content .accordion-header .icon::before, #QUESTION .container .content .accordion-header .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #2e2e2e;
  left: 50%;
  top: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}
#QUESTION .container .content .accordion-header .icon::before {
  transform: rotate(90deg);
}
#QUESTION .container .content .accordion-header.is-open .icon::after {
  transform: rotate(90deg);
}
#QUESTION .container .content .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
#QUESTION .container .content .accordion-content p {
  margin: 0;
  padding: 20px;
  background-color: #2e2e2e;
  display: flex;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 40px;
}
#QUESTION .container .content .accordion-content p .a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-weight: bold;
  margin-right: 16px;
  color: #f3f3f3;
}
#QUESTION .container .content .accordion-content p .text {
  color: #f3f3f3;
}
#QUESTION .container .content .accordion-content p .text a {
  border-bottom: 1px solid #fff;
}
@media (max-width: 768px) {
  #QUESTION .container .content {
    margin: 24px 0;
  }
}

footer {
  text-align: center;
  background-color: #2e2e2e;
  padding: 16px 8px;
  color: #f3f3f3;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 64px;
  }
}

.PC-header {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 0 16px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 999;
}
.PC-header .img {
  width: 240px;
}
.PC-header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.PC-header ul li {
  margin: 0 16px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.PC-header ul li:hover {
  color: #6633cc;
}
@media (max-width: 1600px) {
  .PC-header ul li {
    margin: 0 10px;
  }
}

.SP-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
  padding-left: 16px;
  transition: all 0.3s;
}
.SP-header .top-btn {
  width: 160px;
}
.SP-header .nav .hamburger {
  position: relative;
  z-index: 999;
}
.SP-header .nav .hamburger .hamburger-box .hamburger-inner {
  background-color: #6633cc;
}
.SP-header .nav .hamburger .hamburger-box .hamburger-inner::before, .SP-header .nav .hamburger .hamburger-box .hamburger-inner::after {
  background-color: #6633cc;
}
.SP-header .nav .sp-nav {
  overflow: scroll;
  position: fixed;
  inset: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
}
.SP-header .nav .sp-nav.is-active {
  opacity: 1;
  visibility: visible;
}
.SP-header .nav .sp-nav ul {
  padding: 72px 24px 16px;
}
.SP-header .nav .sp-nav ul li {
  margin-bottom: 24px;
  margin-left: 16px;
  color: #fff;
}

header .PC {
  display: block !important;
}
@media (max-width: 1280px) {
  header .PC {
    display: none !important;
  }
}
header .SP {
  display: none !important;
}
@media (max-width: 1280px) {
  header .SP {
    display: block !important;
  }
}