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%;
  }
}/*# sourceMappingURL=common.css.map */