html {
  font-size: 2.67vw;
}

body {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

th,
td {
  padding: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  padding-top: 3.8rem;
}

.footer__logo {
  margin: 0 auto;
  max-width: 11rem;
}

.footer__copyright {
  border-top: 1px solid #000;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  padding: 0.6rem 2rem 0.8rem;
  text-align: center;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  background: #fff;
  left: 50%;
  margin: 0 auto;
  max-width: 48rem;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  transition: background 0.6s;
  width: 100%;
  z-index: 100;
}

.header.is-active {
  background: #f7f7f7;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 5.6rem;
  justify-content: space-between;
  padding: 0 2rem;
}

.header__logo {
  max-width: 8rem;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin: auto;
  padding: 0 2rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
}

/*
 * l-wrap
 * -------------------------------------------------------------
 */

.l-wrap {
  margin: 0 auto;
  max-width: 48rem;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
  height: 1.5rem;
  position: relative;
  width: 2.3rem;
}

.burger span {
  background: #e02419;
  display: block;
  height: 1px;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger span:nth-child(3) {
  top: calc(100% - 2px);
}

.burger span.is-active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
}

.burger span.is-active:nth-child(2) {
  opacity: 0;
}

.burger span.is-active:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}

/*
 * c-cta
 * -------------------------------------------------------------
 */

.c-cta {
  margin-left: auto;
  max-width: 32rem;
}

.c-cta:hover {
  filter: brightness(110%);
}

/*
 * c-sec-ttl
 * -------------------------------------------------------------
 */

.c-sec-ttl {
  margin: 0 auto;
}

/*
 * c-table
 * -------------------------------------------------------------
 */

.c-table {
  line-height: 1.67;
  width: 100%;
}

.c-table tr:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}

.c-table td,
th {
  font-feature-settings: "palt";
  font-weight: 500;
  padding: 1.3rem 0;
}

.c-table th {
  letter-spacing: 0.1em;
  padding-left: 0.4rem;
  vertical-align: middle;
  width: 9.5rem;
}

.c-table td {
  letter-spacing: 0.05em;
}

/*
 * float-cta
 * -------------------------------------------------------------
 */

.float-cta {
  bottom: 1rem;
  left: 50%;
  max-width: 48rem;
  opacity: 0;
  position: fixed;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
  width: 100%;
  z-index: 100;
}

.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/*
 * benefits
 * -------------------------------------------------------------
 */

.benefits {
  padding-top: 2.6rem;
}

.benefits__head {
  align-items: center;
  display: flex;
  gap: 1.4rem;
}

.benefits__img {
  max-width: 17.6rem;
}

.benefits__head-ttl {
  max-width: 11.3rem;
}

.benefits__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.benefits__ttl {
  background: #e02419;
  border-radius: 2.5rem;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.7rem 1rem;
}

.benefits__ttl span {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  margin-right: 1.2rem;
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.benefits__list li {
  display: flex;
  margin-right: calc(50% - 50vw);
  padding-left: 0.5rem;
}

.benefits__list li::before {
  background: url(./../images/benefits_mark.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 0.4rem;
  margin-right: 0.4rem;
  margin-top: 0.5rem;
  min-width: 0.4rem;
  width: 0.4rem;
}

.benefits__list .color {
  color: #e02419;
}

.benefits__cta {
  margin-top: 3.4rem;
}

/*
 * career
 * -------------------------------------------------------------
 */

.career {
  padding-bottom: 1.5rem;
}

.career__body {
  align-items: center;
  background: url(./../images/career_box.webp) no-repeat center/100% 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.career__head {
  max-width: 19.5rem;
}

.career__text {
  line-height: 1.5;
  text-align: center;
}

/*
 * charm
 * -------------------------------------------------------------
 */

.charm {
  padding: 2rem 0 4.5rem;
}

.charm__head {
  max-width: 17rem;
}

.charm__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.charm__flex {
  align-items: flex-start;
  display: flex;
  gap: 1.5rem;
  margin-top: 2.3rem;
}

.charm__img {
  max-width: 22.4rem;
  width: 46.67vw;
}

.charm__detail {
  flex: 1;
  letter-spacing: 0.05em;
  padding-right: 2rem;
}

.charm__label {
  background: #e02419;
  border-radius: 2.5rem;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem 0.7rem;
}

.charm__label:nth-of-type(2) {
  margin-top: 1rem;
}

.charm__text {
  line-height: 1.5;
  margin-top: 0.7rem;
}

.charm__note {
  font-feature-settings: "palt";
  color: #e02419;
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: calc(50% - 50vw);
  margin-top: 0.7rem;
}

.charm__flex.--reverse {
  flex-direction: row-reverse;
}

.charm__detail.--reverse {
  padding-left: 2rem;
  padding-right: 0;
}

.charm__data {
  margin-top: 1rem;
}

.charm__detail .guide {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #e02419;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  display: block;
  height: 0.8rem;
  margin: 0.5rem 0 0.5rem 5.6rem;
  width: 1rem;
}

.charm__text02 {
  font-size: 1.1rem;
  line-height: 1.5;
}

.charm__text02 .gry {
  color: #818181;
}

.charm__text02 .lg {
  color: #e02419;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  margin-left: 0.3rem;
  position: relative;
  top: 0.3rem;
}

.charm__text02:last-child {
  margin-top: -0.2rem;
}

.charm__text03 {
  max-width: 15.8rem;
}

/*
 * faq
 * -------------------------------------------------------------
 */

.faq {
  padding-top: 4rem;
}

.faq__head {
  max-width: 15.2rem;
}

.faq__list {
  font-feature-settings: "palt";
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 3.2rem;
}

.faq__ttl:not(:nth-child(1)) {
  margin-top: 2rem;
}

.faq__ttl {
  background: #e02419;
  border-radius: 2.5rem;
  color: #fff;
  font-weight: 500;
  padding: 0.4rem 1.1rem 0.6rem;
}

.faq__text {
  margin-top: 0.9rem;
  padding-left: 1.1rem;
}

.faq__ttl,
.faq__text {
  display: flex;
  gap: 0.7rem;
}

.faq__list span {
  font-family: "Montserrat", sans-serif;
  position: relative;
  top: 0.1rem;
}

/*
 * flow
 * -------------------------------------------------------------
 */

.flow {
  padding-top: 4.2rem;
}

.flow__head {
  margin: 0 auto;
  text-align: center;
}

.flow__head-ttl {
  margin: 0 auto;
  max-width: 19.7rem;
}

.flow__note {
  color: #818181;
  display: block;
  margin-top: 0.7rem;
}

.flow__inner {
  background: #f7f7f7;
  margin-top: 3.7rem;
}

.flow__table {
  margin: 0 auto;
  max-width: 24.6rem;
  padding: 3.5rem 0 3rem;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv__hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fv__cta {
  margin-top: -1.2rem;
  max-width: 34.8rem;
}

/*
 * job
 * -------------------------------------------------------------
 */

.job {
  padding-top: 3.7rem;
}

.job__head {
  max-width: 10.3rem;
}

.job__table {
  line-height: 1.67;
  margin-top: 3rem;
}

.job__table td .td-flex {
  display: flex;
}

.job__table td .td-flex span:first-of-type {
  display: inline-block;
}

.job__table td .td-flex span:first-child {
  display: inline-block;
  margin-right: 0.5rem;
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav {
  -webkit-overflow-scrolling: touch;
  background: #f7f7f7;
  bottom: 0;
  height: auto;
  height: calc(100dvh - 5.6rem);
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 3.4rem 2rem 4.2rem;
  position: fixed;
  right: 0;
  top: 5.6rem;
  transition: all 0.6s;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.nav.is-active {
  opacity: 1;
  visibility: visible;
}

.nav__items {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.nav__link {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav__cta {
  background: #e02419;
  border-radius: 5rem;
  margin: 6rem auto 0;
  position: relative;
}

.nav__cta::before {
  background: url(./../images/enter_eng.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 5.8rem;
  left: -1.6rem;
  max-width: 26.3rem;
  position: absolute;
  top: -4rem;
  width: 100%;
  z-index: -1;
}

.nav__cta:hover {
  filter: brightness(110%);
}

/*
 * process
 * -------------------------------------------------------------
 */

.process {
  background: #f7f7f7;
  padding: 2.5rem 0 4.2rem;
}

.process__head {
  max-width: 13rem;
}

.process__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.4rem;
}

.process__item {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.process__icon {
  width: 8.5rem;
}

.process__detal {
  flex: 1;
}

.process__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.process__text {
  line-height: 1.5;
  margin-top: 1.2rem;
}

/*
 * profile
 * -------------------------------------------------------------
 */

.profile {
  padding-top: 4rem;
}

.profile__head {
  max-width: 10.3rem;
}

.profile__table {
  margin-top: 2.4rem;
}

.profile__cta {
  margin-top: 2.3rem;
  max-width: 33.4rem;
}

/*
 * request
 * -------------------------------------------------------------
 */

.request {
  background: #f7f7f7;
  padding: 2rem 0 3.5rem;
}

.request__head {
  max-width: 12.5rem;
}

.request__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  margin-top: 1.6rem;
}

.request__item {
  background: #fff;
  border-radius: 1.3rem;
  display: flex;
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1rem 1.3rem;
  width: calc(50% - 0.5rem);
}

.request__item:last-child {
  flex-direction: row;
  width: 100%;
}

.request__ttl {
  align-items: center;
  color: #e02419;
  display: flex;
  font-size: 1.2rem;
  font-weight: 800;
  height: 2.7rem;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}

.request__icon {
  aspect-ratio: 118/108;
  height: 5.4rem;
  margin: 0.5rem auto 0;
  max-width: 6rem;
}

.request__icon img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}

.request__icon.--icon01 {
  max-width: 6rem;
}

.icon02 {
  max-width: 4.1rem;
}

.icon03 {
  margin-top: 0.7rem;
}

.request__icon.--icon04 {
  aspect-ratio: 59/53;
  height: 100%;
  max-width: 6rem;
}

.request__text {
  font-size: 0.8rem;
}

.request__item.--flex .request__icon {
  aspect-ratio: unset;
  flex: none;
  height: auto;
  margin: 0;
  max-width: 5.5rem;
}

.request__text {
  font-feature-settings: "palt";
  line-height: 1.55;
  margin-top: 1.3rem;
}

.request__item.--flex {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  padding: 1.4rem 1.5rem 1.4rem 2rem;
}

.request__item.--flex .request__ttl {
  height: auto;
}

.request__item.--flex .request__text {
  margin-top: 1rem;
}

/*
 * sns
 * -------------------------------------------------------------
 */

.sns {
  padding: 3.6rem 0 5rem;
}

.sns__head {
  max-width: 10.5rem;
}

.sns__body {
  display: flex;
  flex-direction: column;
  gap: 4.7rem;
  margin-top: 3.4rem;
}

.sns__item-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.sns__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.sns__ttl.--red {
  color: #e02419;
}

.sns__btn {
  max-width: 14.1rem;
}

.sns__movie {
  aspect-ratio: 670/490;
  margin-top: 1.3rem;
}

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

.tiktok-embed {
  margin-top: 0 !important;
}

.sns__movie-ttl {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 0.7rem;
}

.sns__cta {
  margin-top: 3.6rem;
}

/*
 * why
 * -------------------------------------------------------------
 */

.why {
  padding-top: 3.2rem;
}

.why__head {
  max-width: 23.5rem;
}

.why__inner {
  background: #f7f7f7;
  margin-top: 2.4rem;
  padding-bottom: 2.8rem;
  padding-top: 2rem;
}

.why__text {
  line-height: 1.5;
}

.why__items {
  grid-gap: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.why__ttl {
  margin: 2.2rem auto 0;
  max-width: 25.6rem;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

@media screen and (min-width: 480px) {

  html {
    font-size: 11px;
  }

}

@media screen and (min-width: 1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

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

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}


/*# sourceMappingURL=style.css.map */