html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  font-size: clamp(4px, 0.5208333333vw, 10px);
  letter-spacing: 1px;
  color: #333;
}
@media screen and (max-width: 767px) {
  html,
  body {
    font-size: clamp(4px, 2.6666666667vw, 12px);
  }
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: block;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

ul,
ol,
li {
  list-style: none;
}

ul,
ol {
  margin: auto;
  padding: 0;
}

figure,
table {
  margin: auto;
}

svg * {
  transition: all 0.3s ease-in-out;
}

iframe {
  width: 100%;
  height: 100%;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.b-9 {
  font-weight: 900;
}

.b-8 {
  font-weight: 800;
}

.bold,
.b-7 {
  font-weight: 700;
}

.b-6 {
  font-weight: 600;
}

.medium,
.b-5 {
  font-weight: 500;
}

.regular,
.b-4 {
  font-weight: 400;
}

.light,
.b-3 {
  font-weight: 300;
}

h1,
.f-64 {
  font-size: clamp(10px, 6.4rem, 64px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  h1,
  .f-64 {
    font-size: 4rem;
  }
}

h2,
.f-48 {
  font-size: clamp(10px, 4.8rem, 48px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  h2,
  .f-48 {
    font-size: 2.4rem;
  }
}

.f-32 {
  font-size: clamp(10px, 3.2rem, 32px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .f-32 {
    font-size: 2rem;
  }
}

.f-24 {
  font-size: clamp(10px, 2.4rem, 24px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .f-24 {
    font-size: 1.4rem;
  }
}

.f-20 {
  font-size: clamp(10px, 2rem, 20px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .f-20 {
    font-size: 1.4rem;
  }
}

p,
.f-18 {
  font-size: clamp(10px, 1.8rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  p,
  .f-18 {
    font-size: 1.4rem;
  }
}

.f-16 {
  font-size: clamp(10px, 1.6rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .f-16 {
    font-size: 1.4rem;
  }
}

.f-128 {
  font-size: clamp(10px, 12.8rem, 128px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .f-128 {
    font-size: 6rem;
  }
}

.f-200 {
  font-size: clamp(10px, 20rem, 200px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .f-200 {
    font-size: 8rem;
  }
}

.f-40 {
  font-size: clamp(10px, 4rem, 40px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .f-40 {
    font-size: 2.4rem;
  }
}

.f-290 {
  font-size: clamp(10px, 29rem, 290px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .f-290 {
    font-size: 9rem;
  }
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kurenaido {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.allison {
  font-family: "Allison", cursive;
  font-weight: 400;
  font-style: normal;
}

.rock {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.tx-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.d-flex {
  display: flex;
}

.border-none {
  border: none;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.p-1 {
  padding: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

@keyframes btn-line {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
  51% {
    transform-origin: left top;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes loop-bottom {
  100% {
    top: 100%;
  }
}
@keyframes a-line {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
  51% {
    transform-origin: left top;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
@keyframes h_slide {
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide_top {
  100% {
    transform: translateY(100%);
  }
}
@keyframes slide_down {
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slide-right {
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide-left {
  100% {
    transform: translateX(-100%);
  }
}
.fade-in,
.fade-in-up,
.fade-in-down,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fade-in {
  animation-name: fadeIn;
}

.fade-in-up {
  transform: translateY(50px);
  animation-name: fadeInUp;
}

.fade-in-down {
  transform: translateY(-50px);
  animation-name: fadeInDown;
}

.fade-in-left {
  transform: translateX(50px);
  animation-name: fadeInLeft;
}

.fade-in-right {
  transform: translateX(-50px);
  animation-name: fadeInRight;
}

.fadein {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.fadein.visible {
  opacity: 1;
}

.fadeup {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(70px);
}
.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadedown {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(-70px);
}
.fadedown.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeleft {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(-100px);
}
.fadeleft.visible {
  opacity: 1;
  transform: translateX(0);
}

.faderight {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(100px);
}
.faderight.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.c-main {
  color: #589BE1;
}

.c-sub {
  color: #FF931E;
}

.c-gra {
  background: #333;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.c-white {
  color: #FFFFFF;
}

.c-black {
  color: #333;
}

.c-blue {
  color: #589BE1;
}

.c-orange {
  color: #FF931E;
}

.c-green {
  color: #45A829;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.fadein.visible {
  opacity: 1;
}

.fadeup {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(70px);
}
.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadedown {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateY(-70px);
}
.fadedown.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeleft {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(-100px);
}
.fadeleft.visible {
  opacity: 1;
  transform: translateX(0);
}

.faderight {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translateX(100px);
}
.faderight.visible {
  opacity: 1;
  transform: translateX(0);
}

.no-scroll {
  overflow: hidden;
}

.btn {
  width: 40rem;
  padding: 1.5rem 0;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 90%;
  }
}
.btn span {
  line-height: 1.5;
}
.btn--main {
  border: 0.2rem solid #FF931E;
  background-color: #FF931E;
  color: #FFFFFF;
}
.btn--main .icon {
  color: #FF931E;
}
.btn--main:hover {
  background-color: #FFFFFF;
  color: #FF931E;
}
.btn--main:hover .icon svg rect {
  fill: #FF931E;
}
.btn--main:hover .icon svg path {
  stroke: #FFFFFF;
}
.btn--sub {
  border: 0.2rem solid #589BE1;
  background-color: #589BE1;
  color: #FFFFFF;
}
.btn--sub .icon {
  color: #589BE1;
}
.btn--sub:hover {
  background-color: #FFFFFF;
  color: #589BE1;
}
.btn--sub:hover .icon svg rect {
  fill: #589BE1;
}
.btn--sub:hover .icon svg path {
  stroke: #FFFFFF;
}
.btn--back {
  border: 0.2rem solid #333;
  background-color: #333;
  color: #FFFFFF;
}
.btn--back .icon {
  color: #333;
}
.btn--back:hover {
  background-color: #FFFFFF;
  color: #333;
}
.btn--back:hover .icon svg rect {
  fill: #333;
}
.btn--back:hover .icon svg path {
  stroke: #FFFFFF;
}
.btn--green {
  border: 0.2rem solid #45A829;
  background-color: #45A829;
  color: #FFFFFF;
}
.btn--green .icon {
  color: #45A829;
}
.btn--green:hover {
  background-color: #FFFFFF;
  color: #45A829;
}
.btn--green:hover .icon svg rect {
  fill: #45A829;
}
.btn--green:hover .icon svg path {
  stroke: #FFFFFF;
}
.btn .icon {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 1.5rem;
}
.btn .icon svg {
  width: 100%;
  height: 100%;
}

.btn2 {
  width: 50rem;
  height: 8.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn2 {
    width: 100%;
    height: 6rem;
  }
}
.btn2 .arw {
  width: 5rem;
  height: 1.6rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.8rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn2 .arw {
    width: 3rem;
    height: 1rem;
  }
}
.btn2 .arw svg {
  width: 100%;
  height: 100%;
}
.btn2:hover .arw {
  transform: translateX(1rem);
}
.btn2--white {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #333;
}
.btn2--white:hover {
  background-color: #333;
  color: #FFFFFF;
}
.btn2--white:hover .arw svg {
  color: #FFFFFF;
}
.btn2--blue {
  background-color: #589BE1;
  border: 1px solid #589BE1;
  color: #FFFFFF;
}
.btn2--blue:hover {
  background-color: #FFFFFF;
  color: #589BE1;
}
.btn2--blue:hover .arw svg {
  color: #589BE1;
}
.btn2--black {
  background-color: #333;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.btn2--black:hover {
  background-color: #FFFFFF;
  color: #333;
}
.btn2--black:hover .arw svg {
  color: #333;
}

.btn3 {
  width: 39rem;
  height: 9.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .btn3 {
    width: 15rem;
    height: 4rem;
  }
}
.btn3--main {
  background-color: #589BE1;
  border: 2px solid #589BE1;
  color: #FFFFFF;
}
.btn3--main:hover {
  background-color: #FFFFFF;
  color: #589BE1;
}
.btn3--sub {
  background-color: #848484;
  border: 2px solid #848484;
  color: #FFFFFF;
}
.btn3--sub:hover {
  background-color: #FFFFFF;
  color: #848484;
}

.sidebar {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  width: 80px;
  height: 100vh;
  background-color: #FF931E;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .sidebar {
    width: 80rem;
    padding: 15rem 0;
  }
}
@media screen and (max-width: 767px) {
  .sidebar {
    background-color: transparent;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
  }
}
.sidebar .link {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .sidebar .link {
    gap: 20rem;
  }
}
.sidebar .link img {
  width: 56px;
}
@media screen and (min-width: 768px) {
  .sidebar .link img {
    width: 56rem;
  }
}
@media screen and (max-width: 767px) {
  .sidebar .link img {
    width: 60rem;
  }
}
.sidebar .link span {
  writing-mode: vertical-lr;
  line-height: 2;
  letter-spacing: 4px;
  position: relative;
}
.sidebar .link span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  transition: all 0.3s ease-in-out;
  background-color: #589BE1;
}
.sidebar .link:hover span::after {
  height: 100%;
}
.sidebar .link.mail {
  position: relative;
}
@media screen and (max-width: 767px) {
  .sidebar .link.mail {
    padding-top: 20rem;
  }
}
.sidebar .link.mail span {
  color: #589BE1;
}
.sidebar .link.mail span::after {
  background-color: #589BE1;
}
.sidebar .link.mail::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 50rem);
  background: #FF931E;
}
.sidebar .link.tel {
  margin-top: 40px;
  position: relative;
  padding-top: 25px;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .sidebar .link.tel {
    margin-top: 40rem;
    padding-top: 25rem;
    padding-bottom: 45rem;
  }
}
.sidebar .link.tel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  transform: skewY(-15deg);
}
.sidebar .link.tel span {
  color: #FFFFFF;
}
.sidebar .link.tel span::after {
  background-color: #FFFFFF;
}
.sidebar .link.recruit {
  position: relative;
  padding-top: 25px;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .sidebar .link.recruit {
    padding-top: 25rem;
    padding-bottom: 45rem;
  }
}
.sidebar .link.recruit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  transform: skewY(-15deg);
}
.sidebar .link.recruit span {
  color: #333;
}
.sidebar .link.recruit span::after {
  background-color: #333;
}

.faq__item {
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
  border-radius: 1.5rem;
}
.faq__item:hover {
  background-color: #f6f6f6;
}
.faq__item-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .faq__item-question {
    padding: 1.6rem;
  }
}
.faq__item-icon {
  width: 4rem;
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .faq__item-icon {
    width: 2.5rem;
    margin-right: 1.5rem;
  }
}
.faq__item-content {
  flex: 1;
}
.faq__item-arw {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-arw {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.faq__item-arw .bar1,
.faq__item-arw .bar2 {
  width: 100%;
  height: 0.2rem;
  background-color: #333;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.faq__item-arw .bar2 {
  transform: rotate(90deg);
}
.faq__item-arw.is_open .bar2 {
  transform: rotate(180deg);
}
.faq__item-arw.is_open .bar1 {
  transform: rotate(360deg);
}
.faq__item-answer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem;
}

.cta {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 4rem 2rem;
    padding-bottom: 0;
  }
}
.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 96rem;
  margin: auto;
  padding: 4rem 0;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    width: 100%;
  }
}
.cta-en {
  color: #FFEBD6;
  letter-spacing: 5px;
  line-height: 1;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cta-en {
    top: -1.2rem;
  }
}
.cta__title {
  color: #FF931E;
  font-weight: bold;
  line-height: 1.5;
}
.cta__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1rem 0;
  border-top: 0.3rem solid #000;
  border-bottom: 0.3rem solid #000;
  width: 66rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cta__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 0.2rem solid #000;
    border-bottom: 0.2rem solid #000;
    width: 100%;
  }
}
.cta__phone-tip {
  color: #000;
}
.cta__phone-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: all 0.3s ease-in-out;
  color: #FF931E;
}
.cta__phone-link:hover {
  color: #589BE1;
}
.cta__phone-link svg {
  width: 5.7rem;
  height: 5.7rem;
}
@media screen and (max-width: 767px) {
  .cta__phone-link svg {
    width: 3rem;
    height: 3rem;
  }
}
.cta__phone-link span {
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .cta__phone-link span {
    font-size: 3.5rem;
  }
}
.cta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cta__buttons {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cta__mail, .cta__line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #45A829;
  border: 1px solid #45A829;
  color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .cta__mail, .cta__line {
    padding: 2rem;
  }
}
.cta__mail:hover, .cta__line:hover {
  background-color: #FFFFFF;
  color: #45A829;
}
.cta__mail-icon, .cta__line-icon {
  width: 5.4rem;
  height: 5.3rem;
}
@media screen and (max-width: 767px) {
  .cta__mail-icon, .cta__line-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cta__mail-icon svg, .cta__line-icon svg {
  width: 100%;
  height: 100%;
}
.cta__mail-arw, .cta__line-arw {
  width: 5rem;
  height: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cta__mail-arw, .cta__line-arw {
    width: 2.5rem;
    height: 1rem;
  }
}
.cta__mail-arw svg, .cta__line-arw svg {
  width: 100%;
  height: 100%;
}
.cta__mail {
  background-color: #589BE1;
  border: 1px solid #589BE1;
  color: #FFFFFF;
}
.cta__mail:hover {
  background-color: #FFFFFF;
  color: #589BE1;
}

.blog__item {
  width: 100%;
}
.blog__item-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.blog__item-meta .cat {
  width: 15rem;
  padding: 1rem;
  color: #FFFFFF;
  line-height: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .blog__item-meta .cat {
    width: 10rem;
  }
}
.blog__item-meta .cat[data-cat=blog] {
  background-color: #589BE1;
}
.blog__item-meta .cat[data-cat=column] {
  background-color: #FF931E;
}
.blog__item-meta .date {
  color: #bfbfbf;
}
.blog__item-ttl {
  margin-top: 1.5rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .blog__item-ttl {
    margin-top: 1rem;
  }
}
.blog__item-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog__item:hover img {
  transform: scale(1.1);
}
.blog__item:hover .blog__item-ttl {
  color: #589BE1;
  text-decoration: underline;
}

.price-list {
  margin-top: 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px 36px;
}
@media screen and (min-width: 768px) {
  .price-list {
    margin-top: 85rem;
    gap: 90rem 36rem;
  }
}
@media screen and (max-width: 767px) {
  .price-list {
    grid-template-columns: 1fr;
    gap: 50rem;
  }
}
.price-list .price-item h4 {
  position: relative;
}
.price-list .price-item h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #333;
}
@media screen and (min-width: 768px) {
  .price-list .price-item h4::after {
    bottom: -10rem;
    width: 50rem;
  }
}
.price-list .price-item table {
  margin-top: 50px;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .price-list .price-item table {
    margin-top: 50rem;
  }
}
.price-list .price-item table th,
.price-list .price-item table td {
  border: 5px solid #EFF7FF;
  text-align: center;
}
.price-list .price-item table th {
  background-color: #589BE1;
  color: #FFFFFF;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .price-list .price-item table th {
    padding: 15rem;
  }
}
.price-list .price-item table td {
  background-color: #FFFFFF;
  color: #333;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .price-list .price-item table td {
    padding: 20rem;
  }
}

.fixed_notification {
  position: fixed;
  bottom: 5px;
  right: 155px;
  z-index: 100;
  width: 564px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .fixed_notification {
    right: 155rem;
    width: 564rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed_notification {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}
.fixed_notification .f-header {
  background: #333;
  padding: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fixed_notification .f-header {
    padding: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed_notification .f-header {
    padding: 20rem;
  }
}
.fixed_notification .content {
  background-color: #FFFFFF;
  padding: 40px 60px 30px;
  border: 1px solid #f6f6f6;
}
@media screen and (min-width: 768px) {
  .fixed_notification .content {
    padding: 40rem 60rem 30rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed_notification .content {
    padding: 20rem 40rem;
  }
}
.fixed_notification .content p.f-16 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.fixed_notification .content p.f-16 img {
  width: 22px;
}
@media screen and (min-width: 768px) {
  .fixed_notification .content p.f-16 img {
    width: 22rem;
  }
}
.fixed_notification .content p.f-16 span {
  margin-left: 13px;
}
@media screen and (min-width: 768px) {
  .fixed_notification .content p.f-16 span {
    margin-left: 13rem;
  }
}
.fixed_notification .content .btn {
  margin: auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .fixed_notification .content .btn {
    margin-top: 40rem;
  }
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}
.breadcrumb__link {
  color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.breadcrumb__link:hover {
  color: #589BE1;
}
.breadcrumb__link:hover .icon {
  color: #589BE1;
}
.breadcrumb__link .icon {
  color: #BFBFBF;
  width: 2rem;
  height: 1.9rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .breadcrumb__link .icon {
    width: 1.5rem;
    height: 1.45rem;
  }
}
.breadcrumb__link .icon svg {
  width: 100%;
  height: 100%;
}
.breadcrumb .arw {
  color: #333;
  width: 1.8rem;
  height: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.breadcrumb .arw svg {
  width: 100%;
  height: 100%;
}

.ttl-h {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 2;
}
.ttl-h::after {
  content: "";
  display: block;
  position: relative;
  width: 10rem;
  height: 0.3rem;
  margin: auto;
  margin-top: 2rem;
  background-color: #FFFFFF;
}
.ttl-h.c-black::after {
  background-color: #333;
}
.ttl-h.c-white::after {
  background-color: #FFFFFF;
}
.ttl-h.c-blue::after {
  background-color: #589BE1;
}

.ttl-d {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}
.ttl-d::before, .ttl-d::after {
  width: 5rem;
  height: 0.2rem;
  background-color: #333;
  content: "";
  position: absolute;
  transition: all 0.3s ease-in-out;
}
.ttl-d::before {
  top: 50%;
  left: -3rem;
  transform: translate(-100%, -50%);
}
.ttl-d::after {
  top: 50%;
  right: -3rem;
  transform: translate(100%, -50%);
}
.ttl-d.c-black::before, .ttl-d.c-black::after {
  background-color: #333;
}
.ttl-d.c-white::before, .ttl-d.c-white::after {
  background-color: #FFFFFF;
}

.anchors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.4rem 3.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .anchors {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.anchors__item {
  background-color: #589BE1;
  border: 1px solid #589BE1;
  color: #FFFFFF;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .anchors__item {
    padding: 1.6rem 0;
  }
}
.anchors__item .text {
  line-height: 1;
}
.anchors__item .arw {
  width: 2rem;
  height: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.3rem;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.anchors__item .arw svg {
  width: 100%;
  height: 100%;
}
.anchors__item:hover {
  background-color: #FFFFFF;
  color: #589BE1;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .services {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.services__item {
  background-color: #FF931E;
  border: 1px solid #FF931E;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .services__item {
    padding: 1.6rem 0;
  }
}
.services__item .text {
  line-height: 1;
}
.services__item .arw {
  width: 2rem;
  height: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.3rem;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
.services__item .arw svg {
  width: 100%;
  height: 100%;
}
.services__item:hover {
  background-color: #FFFFFF;
  color: #FF931E;
}

main {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
}

section {
  position: relative;
  z-index: 5;
}

.w-1100 {
  max-width: 110rem;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .w-1100 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.w-1400 {
  max-width: 140rem;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .w-1400 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.w-1440 {
  max-width: 144rem;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .w-1440 {
    max-width: 100%;
    padding: 0 5%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  transition: all 0.3s ease-in-out;
  background-color: #FFFFFF;
}
.header__inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 1rem;
    padding-right: 1.2rem;
  }
}
.header__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .header__logo {
    margin-left: 0;
  }
  .header__logo span {
    display: none;
  }
}
.header__logo img {
  width: 20.4rem;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 8.5rem;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 3.5rem;
}
.header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .header__nav-list {
    display: none;
  }
}
.header__nav-item {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: clamp(10px, 1.8rem, 18px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__nav-item {
    font-size: 1.2rem;
  }
}
.header__nav-item {
  font-weight: 700;
}
.header__nav-item::after {
  content: "";
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #589BE1;
}
.header__nav-item .icon {
  width: 4rem;
}
.header__nav-item .icon svg {
  width: 100%;
  height: 100%;
}
.header__nav-item:hover, .header__nav-item:active {
  color: #589BE1;
}
.header__nav-item:hover::after, .header__nav-item:active::after {
  width: 100%;
}
.header__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__buttons {
    display: none;
  }
}
.header__buttons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 15.5rem;
  height: 10rem;
  color: #FFFFFF;
  font-size: clamp(10px, 1.6rem, 16px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__buttons a {
    font-size: 1.2rem;
  }
}
.header__buttons a.btn__line {
  background-color: #45A829;
}
.header__buttons a.btn__line:hover {
  background-color: rgb(35.3253588517, 86.009569378, 20.990430622);
}
.header__buttons a.btn__contact {
  background-color: #FF931E;
}
.header__buttons a.btn__contact:hover {
  background-color: rgb(183, 95.16, 0);
}
.header__buttons a.btn__recruit {
  background-color: #589BE1;
}
.header__buttons a.btn__recruit:hover {
  background-color: rgb(32.1319796954, 103.8934010152, 178.8680203046);
}
.header__buttons a .icon {
  width: 5rem;
}
.header__buttons a:hover {
  opacity: 0.7;
}
.header__hamburger {
  display: none;
  position: relative;
  z-index: 15;
  width: 3rem;
  height: 1.6rem;
  cursor: pointer;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger .bar {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  transition: all 0.3s ease-in-out;
  background-color: #333;
}
.header__hamburger .bar.bar1 {
  transform: translateY(-0.8rem);
}
.header__hamburger .bar.bar3 {
  transform: translateY(0.8rem);
}
.header__hamburger[aria-expanded=true] .bar1 {
  transform: translateY(0) rotate(390deg);
}
.header__hamburger[aria-expanded=true] .bar3 {
  transform: translateY(0) rotate(510deg);
}
.header__hamburger[aria-expanded=true] .bar2 {
  display: none;
}
.header__right_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__right_sp {
    display: block;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
}
.header__right_sp a {
  cursor: pointer;
  width: 3rem;
}
.header__right_sp a:hover {
  opacity: 0.7;
}
.header__sp-menu {
  display: none;
}
.header__sp-menu[aria-expanded=true] {
  display: flex;
}
.header__sp-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: flex-end;
  background-color: rgba(51, 51, 51, 0.45);
  padding: 0;
}
.header__sp-menu .sp-menu__panel {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding: 5.4rem 2rem;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.header__sp-menu .sp-menu__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__sp-menu .sp-menu__close::before, .header__sp-menu .sp-menu__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.2rem;
  height: 1px;
  background-color: #333;
  transform-origin: center;
}
.header__sp-menu .sp-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__sp-menu .sp-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__sp-menu .nav-list {
  width: 100%;
  margin: 0;
}
.header__sp-menu .nav-list li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 147, 30, 0.55);
}
.header__sp-menu .nav-item {
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-size: clamp(10px, 1.8rem, 18px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__sp-menu .nav-item {
    font-size: 1.2rem;
  }
}
.header__sp-menu .nav-item {
  font-weight: 700;
}
.header__sp-menu .nav-item .label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.header__sp-menu .nav-item .arw {
  width: 2.4rem;
  height: 2.4rem;
}
.header__sp-menu .nav-item:hover {
  background-color: rgba(255, 147, 30, 0.15);
}
.header__sp-menu .btn-grp {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.5rem;
}
.header__sp-menu .btn-grp a {
  width: 100%;
  height: 5.5rem;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #FFFFFF;
  font-size: clamp(10px, 1.8rem, 18px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__sp-menu .btn-grp a {
    font-size: 1.6rem;
  }
}
.header__sp-menu .btn-grp a {
  font-weight: 700;
}
.header__sp-menu .btn-grp a .icon {
  width: 3.6rem;
}
.header__sp-menu .btn-grp a .label {
  width: 12rem;
  text-align: center;
}
.header__sp-menu .btn-grp .btn__line {
  background-color: #45A829;
}
.header__sp-menu .btn-grp .btn__line:hover {
  background-color: rgb(35.3253588517, 86.009569378, 20.990430622);
}
.header__sp-menu .btn-grp .btn__contact {
  background-color: #FF931E;
}
.header__sp-menu .btn-grp .btn__contact:hover {
  background-color: rgb(183, 95.16, 0);
}
.header__sp-menu .btn-grp .btn__recruit {
  background-color: #589BE1;
}
.header__sp-menu .btn-grp .btn__recruit:hover {
  background-color: rgb(32.1319796954, 103.8934010152, 178.8680203046);
}

.fixed-btn {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: none;
  height: 5.2rem;
}
@media screen and (max-width: 767px) {
  .fixed-btn {
    display: flex;
  }
}
.fixed-btn a {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #FFFFFF;
  font-size: clamp(10px, 1.6rem, 16px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fixed-btn a {
    font-size: 1.2rem;
  }
}
.fixed-btn a {
  font-weight: 700;
}
.fixed-btn a .icon {
  width: 4rem;
}
.fixed-btn a:hover {
  opacity: 0.7;
}
.fixed-btn .btn__contact {
  background-color: #FF931E;
}
.fixed-btn .btn__recruit {
  background-color: #589BE1;
}

.footer {
  background-color: #589BE1;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding-top: 23rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 20rem;
  }
}
.footer .footer__map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50rem;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer .footer__map {
    height: 40rem;
  }
}
.footer .footer__map iframe {
  width: 100%;
  height: 100%;
}
.footer .cta {
  position: relative;
  z-index: 5;
  width: 144rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer .cta {
    width: 90%;
  }
}
.footer__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 110rem;
  margin: 0 auto;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    padding: 0 5%;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.footer__logo {
  gap: 1rem;
  transition: all 0.3s ease-in-out;
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 20rem;
  }
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer .info {
  color: #FFFFFF;
  line-height: 2;
}
.footer__links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .footer__links {
    gap: 1.6rem;
    width: 100%;
  }
}
.footer__links-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
}
.footer__links-link {
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
  position: relative;
  line-height: 1;
}
.footer__links-link::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #FF931E;
  transition: all 0.3s ease-in-out;
}
.footer__links-link:hover {
  color: #FF931E;
}
.footer__links-link:hover::after {
  width: 100%;
}
.footer__sub {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 110rem;
  margin: 0 auto;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .footer__sub {
    margin-top: 8rem;
    width: 90%;
  }
}
.footer__social-link {
  width: 4rem;
  transition: all 0.3s ease-in-out;
}
.footer__social-link:hover {
  opacity: 0.8;
}
.footer__page-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #FFFFFF;
}
.footer__page-top:hover {
  color: #FF931E;
}
.footer__page-top svg {
  width: 3rem;
  height: 1.8rem;
}
@media screen and (max-width: 767px) {
  .footer__page-top svg {
    width: 2.5rem;
    height: 1.5rem;
  }
}
.footer__copyright {
  width: 110rem;
  padding: 2rem 0 6rem;
  border-top: 0.2rem solid #FFFFFF;
  margin: 0 auto;
  margin-top: 5.5rem;
  color: #94C6FB;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    padding: 2rem 0 4rem;
    margin: 0 2rem;
    margin-top: 4rem;
    width: 90%;
  }
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  width: 100%;
}
.hero__body {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .hero__body {
    z-index: 5;
  }
}
.hero__body img {
  position: absolute;
  opacity: 0;
  transform: scale(0.1);
  animation: fadeInScale 1s forwards;
  transition: opacity 1s ease, transform 1s ease;
}
.hero__body img:first-child {
  width: 120rem;
  top: 2rem;
  left: 10rem;
  right: 0;
  margin: 0 auto;
  animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .hero__body img:first-child {
    width: 35rem;
    top: 4rem;
    left: 2.5rem;
    margin: unset;
  }
}
.hero__body img:nth-child(2) {
  width: 118rem;
  bottom: 5rem;
  left: 0;
  right: 5rem;
  margin: 0 auto;
  animation-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .hero__body img:nth-child(2) {
    width: 34rem;
    bottom: 7.5rem;
    right: 1rem;
    z-index: 10;
  }
}
.hero__body img:nth-child(3) {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero__body img:nth-child(3) {
    display: block;
    width: 4rem;
    top: 4rem;
    left: 5rem;
  }
}
.hero__deco {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 4;
}
.hero__deco img {
  position: absolute;
  opacity: 0;
  transform: translateY(150rem);
}
.hero__deco img:first-child {
  width: 39rem;
  top: 9rem;
  left: 4rem;
}
@media screen and (max-width: 767px) {
  .hero__deco img:first-child {
    width: 15rem;
    left: 1rem;
    top: unset;
    bottom: 12rem;
  }
}
.hero__deco img:nth-child(2) {
  width: 38rem;
  bottom: 3rem;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .hero__deco img:nth-child(2) {
    width: 14rem;
    bottom: 7rem;
    left: 6rem;
  }
}
.hero__deco img:nth-child(3) {
  width: 37rem;
  top: 13rem;
  right: 7rem;
}
@media screen and (max-width: 767px) {
  .hero__deco img:nth-child(3) {
    width: 14rem;
    bottom: 13rem;
    top: unset;
    right: 1rem;
  }
}
.hero__deco img:nth-child(4) {
  width: 41rem;
  bottom: 1rem;
  right: -1rem;
}
@media screen and (max-width: 767px) {
  .hero__deco img:nth-child(4) {
    width: 15rem;
    bottom: 7rem;
    right: 2rem;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fade-In-Up {
  0% {
    opacity: 0;
    scale: 0;
    transform: translateY(150rem);
  }
  100% {
    opacity: 1;
    scale: 1;
    transform: translateY(0);
  }
}
@keyframes twingAnimationUp {
  0%, 100% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1) translate(0, 1.5rem) rotate(-5deg);
  }
}
@keyframes twingAnimationDown {
  0%, 100% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1) translate(0, 1.5rem) rotate(5deg);
  }
}
.hero .hero__deco img:nth-child(1) {
  animation: fade-In-Up 1s ease forwards 2.3s, twingAnimationUp 3s ease-in-out infinite 3.3s;
}
.hero .hero__deco img:nth-child(2) {
  animation: fade-In-Up 1s ease forwards 2.6s, twingAnimationUp 3s ease-in-out infinite 3.6s;
}
.hero .hero__deco img:nth-child(3) {
  animation: fade-In-Up 1s ease forwards 2.9s, twingAnimationDown 3s ease-in-out infinite 3.9s;
}
.hero .hero__deco img:nth-child(4) {
  animation: fade-In-Up 1s ease forwards 3.2s, twingAnimationDown 3s ease-in-out infinite 4.2s;
}

.sec-grp1 {
  background: url("../img/sec-grp1.png") no-repeat center center;
  background-size: cover;
  background-position: top;
  margin-top: -1rem;
  padding-top: 6rem;
  padding-bottom: 48rem;
}
@media screen and (max-width: 767px) {
  .sec-grp1 {
    padding-bottom: 14rem;
    background: url("../img/sec-grp1-sp.png") no-repeat top center;
    background-size: cover;
    background-position: top;
    padding-top: 3rem;
  }
}

.sec-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.about {
  padding: 1.5rem 0 7rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 0;
    padding-bottom: 4rem;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .about__content .btn {
    margin-top: 15rem;
  }
}
.about .w-1440 {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .about .w-1440 {
    padding-top: 0;
  }
}
.about .sec-ttl {
  color: #589BE1;
}
@media screen and (max-width: 767px) {
  .about .sec-ttl h2 {
    font-size: 2.8rem;
  }
  .about .sec-ttl p {
    font-size: 1.4rem;
  }
}
.about__title {
  font-size: clamp(10px, 4.8rem, 48px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 2rem;
  }
}
.about__image {
  position: absolute;
  top: 0;
  right: 0;
}
.about__image img {
  position: absolute;
}
.about__image img:first-child {
  width: 58rem;
  top: -7rem;
  right: 23rem;
}
@media screen and (max-width: 767px) {
  .about__image img:first-child {
    width: 15rem;
    top: 0rem;
    right: 0rem;
  }
}
.about__image img:nth-child(2) {
  width: 44rem;
  top: 17rem;
  right: -3rem;
}
@media screen and (max-width: 767px) {
  .about__image img:nth-child(2) {
    width: 13rem;
    top: 54rem;
    right: 3rem;
  }
}

.service {
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 4rem 0;
  }
}
.service .sec-ttl {
  color: #589BE1;
}
.service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .service__cards {
    grid-template-columns: 1fr;
    gap: 8rem;
  }
}
.service-card {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  position: relative;
}
.service-card__body {
  padding: 2rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .service-card__title {
    font-size: 2rem;
  }
}
.service-card__title .num {
  position: relative;
  padding-bottom: 1rem;
  margin-right: 1.5rem;
}
.service-card__title .num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #333;
}
.service-card__text {
  margin-top: 4rem;
}
.service-card .btn {
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.value {
  z-index: 40;
  margin: -28rem 0;
}
@media screen and (max-width: 767px) {
  .value {
    margin: -10rem 0 -3rem;
  }
  .value::after {
    content: "";
    width: 100%;
    position: relative;
    height: 55rem;
    background-color: #FFF9BA;
    display: block;
    top: -3rem;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .value::after {
    height: 58rem;
  }
}
.value .h-slide {
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.value .h-slide .wrap {
  white-space: nowrap;
  padding: 0 5rem;
  animation: h_slide 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .value .h-slide .wrap {
    font-size: 4rem;
    padding: 0 2rem;
  }
}
.value .w-1440 {
  position: absolute;
  top: 26.5rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .value .w-1440 {
    top: 11rem;
    gap: 2rem;
  }
}
.value .w-1440 .sec-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .value .w-1440 .sec-ttl h2 {
    font-size: 2rem;
  }
  .value .w-1440 .sec-ttl .en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .value .w-1440 .sec-desc {
    text-align: center;
  }
}
.value__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 15;
  width: 100%;
}
.value__body .wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 144rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .value__body .wrapper {
    width: 100%;
  }
}
.value__body .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(50%);
}
.value__item .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8rem 14rem;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .value__item .inner {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.value__item-img {
  width: 49rem;
}
@media screen and (max-width: 767px) {
  .value__item-img {
    width: 100%;
  }
}
.value__item-content {
  width: 59rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .value__item-content {
    width: 100%;
    padding: 2rem;
    padding-bottom: 5rem;
  }
}
.value__item-content .item-ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.value__item-content .item-ttl .num {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.value__item-content .item-ttl .num span {
  display: block;
}
@media screen and (max-width: 767px) {
  .value__item-content .item-ttl .num span.f-16 {
    display: none;
  }
}
.value__item-content .item-ttl .num::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: #333;
}
.value__item-content .item-ttl h3 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .value__item-content .item-ttl h3 {
    margin-top: 0;
    margin-left: 1.5rem;
  }
}
.value .slick-btns {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  transform: translateY(-50%);
}
.value .slick-btns .prev,
.value .slick-btns .next {
  cursor: pointer;
  width: 5.5rem;
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .value .slick-btns .prev,
  .value .slick-btns .next {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.value .slick-btns .prev:hover svg path,
.value .slick-btns .next:hover svg path {
  stroke: #FFFFFF;
}
.value .slick-btns .prev:hover svg circle,
.value .slick-btns .next:hover svg circle {
  fill: #FF931E;
}
.value .slick-btns svg {
  width: 100%;
  height: 100%;
}
.value .slick-btns .prev {
  transform: translateX(-50%);
}
.value .slick-btns .next {
  transform: translateX(50%);
}

.consultation {
  background: url("../img/t_discussion-bg.png") no-repeat top center;
  background-size: cover;
  padding: 42rem 0 23rem;
}
@media screen and (max-width: 767px) {
  .consultation {
    background: url("../img/t_discussion-bg-sp.png") no-repeat bottom center;
    background-size: cover;
    padding: 10rem 0;
  }
}
.consultation.cl-consultation {
  background: url("../img/sub/s_clean_discussion-bg.png") no-repeat top center;
  background-size: cover;
  padding: 12rem 0 23rem;
}
@media screen and (max-width: 767px) {
  .consultation.cl-consultation {
    padding: 8rem 0 15rem;
  }
}
.consultation.sub {
  background: url("../img/sub/s_discusion.png") no-repeat top center;
  background-size: cover;
  padding: 12rem 0 23rem;
}
@media screen and (max-width: 767px) {
  .consultation.sub {
    padding: 8rem 0 15rem;
  }
}
.consultation .w-1440 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .consultation .w-1440 {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.consultation__content {
  width: 63rem;
}
@media screen and (max-width: 767px) {
  .consultation__content {
    width: 100%;
    text-align: center;
  }
}
.consultation__content h2 {
  line-height: 1.5;
}
.consultation__content p {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .consultation__content p {
    margin-top: 4rem;
  }
}
.consultation__steps {
  width: 77rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .consultation__steps {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.consultation__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
  height: 57rem;
  background-color: #FFFFFF;
  padding: 6rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .consultation__step {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    height: auto;
  }
}
.consultation__step p {
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .consultation__step p {
    writing-mode: unset;
    width: calc(100% - 4.5rem);
    text-align: center;
  }
}
.consultation__icon {
  width: 8.5rem;
}
@media screen and (max-width: 767px) {
  .consultation__icon {
    width: 4.5rem;
  }
}

.sec-grp2 {
  background: url("../img/t_recruit-blog-bg.png") no-repeat center center;
  background-size: cover;
  padding: 17.5rem 0;
}
@media screen and (max-width: 767px) {
  .sec-grp2 {
    padding: 8rem 0;
  }
}

.recruit-card {
  background: url("../img/t_recruit-main_bg.png") no-repeat center center;
  background-size: cover;
  padding: 15rem 8rem 10rem 17rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-card {
    padding: 4rem 1rem 6rem;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
}
.recruit-card__content {
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .recruit-card__content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-card__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .recruit-card__heading h2 {
    font-size: 2.8rem;
  }
  .recruit-card__heading p {
    font-size: 1.4rem;
  }
}
.recruit-card__text {
  width: 56rem;
  line-height: 2;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .recruit-card__text {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
  }
}
.recruit-card__btn {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .recruit-card__btn {
    position: absolute !important;
    width: 100% !important;
    bottom: -2.5rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.recruit-card__img {
  width: 56rem;
  position: absolute;
  top: 15rem;
  right: 8rem;
}
@media screen and (max-width: 767px) {
  .recruit-card__img {
    position: relative;
    top: unset;
    right: unset;
    width: 18rem;
    margin: auto;
    margin-right: 0;
    margin-top: 3rem;
  }
}
.recruit-card__img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .recruit-card__img-sp {
    display: block;
    position: absolute;
    left: 0;
    width: 14rem;
    bottom: 5rem;
  }
}

.visit-banner {
  margin-top: 7rem;
}
.visit-banner__inner {
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.visit-banner__inner:hover {
  transform: scale(1.1);
}

.blog-top {
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .blog-top {
    margin-top: 4rem;
  }
}
.blog-top__ttl {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1.5rem;
  position: relative;
}
.blog-top__ttl .bird {
  width: 10rem;
  position: absolute;
  top: -9rem;
  left: -2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .blog-top__ttl .bird {
    width: 5rem;
  }
}
.blog-top__list {
  margin-top: 10rem;
  margin-left: 41rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-top__list {
    margin-top: 6rem;
    margin-left: 0;
  }
}
.blog-top__list .wrapper {
  overflow: visible;
  width: 100%;
}
.blog-top__list .inner {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 3.8rem;
  transition: all 0.3s ease-in-out;
}
.blog-top .blog__item {
  width: 54rem;
}
@media screen and (max-width: 767px) {
  .blog-top .blog__item {
    width: 30rem;
  }
}
.blog-top__scrollbar {
  position: absolute;
  z-index: -1;
  left: 41rem;
  bottom: 3rem;
  width: 97rem;
  height: 0.9rem;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
  .blog-top__scrollbar {
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    bottom: 10rem;
  }
}
.blog-top__scrollbar-slider {
  position: relative;
  width: 100%;
  height: 0.9rem;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
}
.blog-top__scrollbar-btn {
  width: 18rem;
  height: 0.9rem;
  background: #FF931E;
  position: absolute;
  top: 0;
  left: 0;
  cursor: grab;
  transition: all 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 0.4rem;
}
.blog-top__scrollbar-btn:hover {
  background: #FF931E;
}
.blog-top__scrollbar-btn:active {
  cursor: grabbing;
}
.blog-top__btn {
  margin: auto;
  margin-top: 10rem;
  margin-right: 12rem;
}
@media screen and (max-width: 767px) {
  .blog-top__btn {
    margin: auto;
    margin-top: 7rem;
  }
}

.t-faq {
  padding: 17.5rem 0;
  background: url("../img/t_faq_bg.png") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .t-faq {
    padding: 8rem 0;
  }
}
.t-faq__list {
  margin-top: 5rem;
}
.t-faq__subgroup {
  margin-bottom: 4rem;
}
.t-faq__subgroup-ttl {
  position: relative;
}
.t-faq__subgroup-ttl::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 10rem;
  height: 0.2rem;
}
.t-faq__subgroup-ttl.c-green::after {
  background-color: #45A829;
}
.t-faq__subgroup-ttl.c-blue::after {
  background-color: #589BE1;
}
.t-faq__subgroup-ttl.c-orange::after {
  background-color: #FF931E;
}
.t-faq__subgroup .faq__item {
  margin-top: 4rem;
}

.area {
  padding: 11rem 0;
  background: url("../img/t_area_bg.png") no-repeat center center;
  background-size: cover;
  background-position: center;
}
.area .w-1100 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .area .w-1100 {
    flex-direction: column;
    gap: 2rem;
  }
}
.area__map {
  width: 44.5rem;
  margin-left: -6rem;
}
@media screen and (max-width: 767px) {
  .area__map {
    width: 12rem;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
}
.area__content {
  margin-top: 2rem;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.area__content .bird {
  width: 14rem;
  position: absolute;
  top: -2rem;
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .area__content .bird {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .area__title {
    text-align: right;
  }
}
.area__title-ja {
  display: block;
  line-height: 1.5;
}
.area__title-en {
  display: block;
  line-height: 1.5;
}
.area__description {
  margin-top: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .area__description {
    margin-top: 12rem;
  }
}
.area__notes {
  padding: 1.5rem 2.5rem;
  background-color: #FFFFFF;
  border: 0.2rem solid #FF931E;
  border-radius: 2rem;
  line-height: 2 !important;
  white-space: nowrap;
  margin-top: 3rem;
  color: #FF931E;
}
@media screen and (max-width: 767px) {
  .area__notes {
    white-space: unset;
  }
}/*# sourceMappingURL=top.css.map */