@charset "UTF-8";
/*==============================================================================
1.0 Foundation
============================================================================= */
:root {
  --black: #333;
  --white: #fff;
  --gray: #DEDEDE;
  --pink: #E95278;
  --lightPink: #FCE5E6;
  --pink-grede-start: #F15E7D;
  --pink-grede-end: #FFACBE;
  --around: 9999px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- summaryの三角を消す  ---*/
summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
  max-width: 100%;
  color: #333;
  text-decoration: none;
  transition: opacity 0.5s;
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

picture,
figure {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  word-break: break-all;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
font-size
============================================================================= */
html {
  font-size: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 1rem;
  }
}

p {
  font-size: 1rem;
}

/*==============================================================================
  2.0 - Layout
============================================================================= */
.l-container {
  max-width: 2000px;
  margin-inline: auto;
  position: relative;
}

.l-container--small {
  width: 54rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-container--small {
    width: 20.625rem;
  }
}
@media screen and (min-width: 2000px) {
  .l-container--small {
    width: 75rem;
  }
}

/*==============================================================================
  3.0 - component
============================================================================= */
/*==============================================================================
  Component Header
============================================================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 2000px;
  margin-inline: auto;
  padding-block: 0.75rem;
  padding-inline: 2.5rem;
  position: fixed;
  top: 0;
  left: 50%;
  background: var(--white);
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    padding-block: 0.5rem 0.75rem;
    padding-inline: 0.9375rem 0.625rem;
  }
}
@media screen and (min-width: 2000px) {
  .header {
    padding-block: 1rem;
    padding-inline: 3.4375rem;
  }
}
.header__title {
  width: 16rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .header__title {
    width: 16.375rem;
  }
}
@media screen and (min-width: 2000px) {
  .header__title {
    width: 22.25rem;
  }
}

/*==============================================================================
  Component Footer
============================================================================= */
.footer {
  width: 100%;
  padding-block: 2.5rem 6.25rem;
  background: var(--pink);
  z-index: 5;
}
.footer__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-block-end: 1.25rem;
}
.footer__head p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.footer__logo {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 9.375rem;
  }
}
.footer__body-tel a {
  text-align: center;
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__body-tel a {
    font-size: 1.5rem;
  }
}
.footer__body-time {
  margin-block-end: 2.25rem;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
}
.footer__body-company {
  text-align: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer__body-company {
    font-size: 1.25rem;
  }
}
.footer__address {
  margin-block-end: 2rem;
}
.footer__address p {
  text-align: center;
  color: var(--white);
}
.footer__copy {
  text-align: center;
  color: var(--white);
  font-size: 0.75rem;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-align: center;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  transition: 0.5s;
}

.c-globalNav {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: -150%;
  background: var(--lightPink);
  z-index: 40;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .c-globalNav {
    padding-block: 3.75rem 0;
  }
}
.c-globalNav.is-active {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 2000px) {
  .c-globalNav.is-active {
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (min-width: 768px) {
  .c-globalNav__container {
    display: grid;
    grid-template-columns: 41.75rem 1fr;
    align-items: center;
    height: 100%;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 2000px) {
  .c-globalNav__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-globalNav__mv {
    display: none;
  }
}
.c-globalNav__mv img {
  border-radius: 0 1.875rem 1.875rem 0;
}
@media screen and (min-width: 2000px) {
  .c-globalNav__mv img {
    border-radius: 0 2.8125rem 2.8125rem 0;
  }
}
.c-globalNav__list {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-globalNav__list {
    width: 28.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-globalNav__list {
    width: 20.625rem;
  }
}
.c-globalNav__item:nth-of-type(1) {
  width: 17.1875rem;
  margin-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-globalNav__item:nth-of-type(1) {
    width: 14.0625rem;
    margin-block-end: 1rem;
  }
}
.c-globalNav__item:nth-of-type(2) {
  width: 11rem;
  margin-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-globalNav__item:nth-of-type(2) {
    width: 9rem;
    margin-block-end: 1rem;
  }
}
.c-globalNav__item:nth-of-type(3) {
  width: 7.5rem;
  margin-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-globalNav__item:nth-of-type(3) {
    width: 6.125rem;
    margin-block-end: 1rem;
  }
}
.c-globalNav__item:nth-of-type(4) {
  width: 9.625rem;
  margin-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-globalNav__item:nth-of-type(4) {
    width: 7.875rem;
    margin-block-end: 1rem;
  }
}
.c-globalNav__item:nth-of-type(5) {
  width: 6.875rem;
  margin-block-end: 2rem;
}
@media screen and (max-width: 767px) {
  .c-globalNav__item:nth-of-type(5) {
    width: 5.625rem;
    margin-block-end: 1.75rem;
  }
}
.c-globalNav__item:nth-of-type(6) {
  margin-block-end: 1.25rem;
}
.c-globalNav__item:nth-of-type(7) {
  margin-block-end: 2rem;
}
.c-globalNav__item:nth-of-type(8) {
  width: 13.0625rem;
  margin-block-end: 0.9375rem;
}
@media screen and (min-width: 2000px) {
  .c-globalNav__item:nth-of-type(8) {
    width: 18.125rem;
  }
}
.c-globalNav__item:nth-of-type(9) {
  width: 8.5rem;
}
@media screen and (min-width: 2000px) {
  .c-globalNav__item:nth-of-type(9) {
    width: 11.875rem;
  }
}

.c-hamburger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 3.125rem;
  height: 3.125rem;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.375rem;
  background-color: var(--pink);
  text-align: center;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 50;
}
@media screen and (min-width: 2000px) {
  .c-hamburger {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.c-hamburger__line {
  width: 1.625rem;
  height: 0.1875rem;
  margin-inline: auto;
  position: relative;
  background-color: var(--white);
  border-radius: var(--around);
  transition: transform 0.5s;
  box-sizing: border-box;
}
@media screen and (min-width: 2000px) {
  .c-hamburger__line {
    width: 2.25rem;
    height: 0.25rem;
  }
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  display: block;
  width: 1.625rem;
  height: 0.1875rem;
  position: absolute;
  background-color: var(--white);
  border-radius: var(--around);
  transition: transform 0.5s;
}
@media screen and (min-width: 2000px) {
  .c-hamburger__line::before, .c-hamburger__line::after {
    width: 2.25rem;
    height: 0.25rem;
  }
}
.c-hamburger__line::before {
  top: 0.5rem;
}
@media screen and (min-width: 2000px) {
  .c-hamburger__line::before {
    top: 0.75rem;
  }
}
.c-hamburger__line::after {
  top: -0.5rem;
}
@media screen and (min-width: 2000px) {
  .c-hamburger__line::after {
    top: -0.75rem;
  }
}
.is-drawerActive .c-hamburger__line {
  background-color: transparent;
}
.is-drawerActive .c-hamburger__line::before, .is-drawerActive .c-hamburger__line::after {
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.is-drawerActive .c-hamburger__line::before {
  transform: rotate(-45deg);
}
.is-drawerActive .c-hamburger__line::after {
  transform: rotate(45deg);
}

/*==============================================================================
4.0 Project
============================================================================= */
.main {
  padding-block-end: 6.25rem;
  background: var(--white);
}

.kv__movie {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.cta {
  padding-block: 4.5rem;
  background: var(--pink-grede-start);
  background: linear-gradient(180deg, var(--pink-grede-start) 0%, var(--pink-grede-end) 100%);
}
@media screen and (max-width: 767px) {
  .cta {
    padding-block: 8.625rem 4rem;
    padding-inline: 1.375rem;
  }
}
.cta__container {
  margin-inline: auto;
  padding-block: 1.3125rem;
  padding-inline: 5.5rem;
  background: var(--white);
  border-radius: 3.125rem;
  box-shadow: 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25);
}
@media screen and (min-width: 768px) {
  .cta__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 67.5rem;
  }
}
@media screen and (min-width: 2000px) {
  .cta__container {
    width: 93.75rem;
  }
}
@media screen and (max-width: 767px) {
  .cta__container {
    padding-block: 9.0625rem 2rem;
    padding-inline: 1.25rem;
    position: relative;
    border-radius: 1.875rem;
  }
}
.cta__img {
  width: 32.8125rem;
}
@media screen and (max-width: 767px) {
  .cta__img {
    width: 19.625rem;
    position: absolute;
    top: -6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 2000px) {
  .cta__img {
    width: 45.375rem;
  }
}
@media screen and (min-width: 768px) {
  .cta__wrapper {
    width: 21.625rem;
  }
}
@media screen and (min-width: 2000px) {
  .cta__wrapper {
    width: 30rem;
  }
}
.cta__title {
  margin-block-end: 1rem;
}
@media screen and (max-width: 767px) {
  .cta__title {
    margin-block-end: 0.75rem;
  }
}
.cta__button a {
  filter: drop-shadow(0.125rem 0.125rem 0.1875rem rgba(0, 0, 0, 0.15));
}
@media screen and (min-width: 768px) {
  .cta__tel {
    pointer-events: none;
  }
}

.appeal01 {
  margin-block-start: -1px;
  background: linear-gradient(180deg, #FCE5E6 0%, #F7E4DD 100%);
}
.appeal01__title {
  margin-block-end: 5.4375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .appeal01__title {
    width: 67.5rem;
  }
}
@media screen and (min-width: 2000px) {
  .appeal01__title {
    width: 93.75rem;
  }
}
@media screen and (max-width: 767px) {
  .appeal01__title {
    margin-block-end: 4.0625rem;
  }
}
.appeal01__contents {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 2.75rem;
  justify-content: center;
}
@media screen and (min-width: 2000px) {
  .appeal01__contents {
    width: 93.75rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .appeal01__contents {
    gap: 4rem;
  }
}
.appeal01__content {
  width: 20.625rem;
  position: relative;
  background: var(--white);
  border-radius: 1.25rem;
}
@media screen and (min-width: 2000px) {
  .appeal01__content {
    width: 28.75rem;
    border-radius: 1.875rem;
  }
}
.appeal01__content:nth-of-type(2) .appeal01__content-text {
  margin-block-start: 2.5rem;
}
.appeal01__content-wrapper {
  padding-block: 0.8125rem 2rem;
  padding-inline: 0.8125rem;
}
.appeal01__content-num {
  width: 3.8125rem;
  height: 3.75rem;
  position: absolute;
  top: -2.5625rem;
  left: 0.8125rem;
}
@media screen and (min-width: 2000px) {
  .appeal01__content-num {
    width: 5.25rem;
    height: 5.1875rem;
  }
}
.appeal01__content-text {
  margin-block-start: 2.375rem;
}
@media screen and (max-width: 767px) {
  .appeal01__content-text {
    margin-block-start: 0.9375rem;
  }
}
.appeal01 .splide__pagination {
  gap: 0.375rem;
  bottom: -1.5rem;
}
.appeal01 .splide__pagination__page {
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0;
  background: #D9D9D9;
}
.appeal01 .splide__pagination__page.is-active {
  background: #8E8E8E;
  transform: scale(1);
}

.flow {
  padding-block: 1rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-block: 2.25rem;
  }
}
.flow__head {
  position: relative;
}
.flow__head.is-open .flow__head-title img {
  border-radius: 0;
}
.flow__head-title img {
  border-radius: 0 0 1.875rem 1.875rem;
  filter: drop-shadow(0 0 0.4375rem rgba(0, 0, 0, 0.15));
  transition: border-radius 0.3s;
}
@media screen and (max-width: 767px) {
  .flow__head-title img {
    border-radius: 0 0 0.9375rem 0.9375rem;
  }
}
.flow__head-button {
  width: 7.875rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 2000px) {
  .flow__head-button {
    width: 10.9375rem;
  }
}
.flow__head-button picture {
  display: none;
}
.flow__head-button picture.is-active {
  display: block;
}
.flow__content {
  display: none;
  background: #fff;
  border-radius: 0 0 0.9375rem 0.9375rem;
  filter: drop-shadow(0 0 0.4375rem rgba(0, 0, 0, 0.15));
}

.faq {
  padding-block: 5.375rem;
  background: url(../images/faq_bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-block: 4rem;
  }
}
.faq__title {
  width: 18.375rem;
  margin-block-end: 3.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .faq__title {
    width: 10.75rem;
    margin-block-end: 2rem;
  }
}
.faq__contents {
  background: var(--white);
}
.faq__content {
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--gray);
}
.faq__content:first-of-type {
  border-top: 1px solid var(--gray);
}
.faq__question {
  padding-inline: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding-inline: 1rem;
  }
}
.faq__question::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  right: 1rem;
  background: url(../images/arrow.webp) no-repeat top left/cover;
  transform: rotate(0);
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
.faq__question.is-open::after {
  transform: rotate(180deg);
}
.faq__ancer {
  display: none;
  margin-block-start: 1rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .faq__ancer {
    padding-block-start: 0.75rem;
    padding-inline: 1rem;
  }
}

.recruit {
  padding-block: 0 2.5rem;
}
.recruit01 {
  padding-block-start: 2.5rem;
}
.recruit__head {
  position: relative;
}
.recruit__head.is-open .recruit__head-title img {
  border-radius: 0;
}
.recruit__head-title img {
  border-radius: 0 0 1.875rem 1.875rem;
  transition: border-radius 0.3s;
  filter: drop-shadow(0 0 0.4375rem rgba(0, 0, 0, 0.15));
}
.recruit__head-button {
  width: 7.875rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 2000px) {
  .recruit__head-button {
    width: 10.9375rem;
  }
}
.recruit__head-button picture {
  display: none;
}
.recruit__head-button picture.is-active {
  display: block;
}
.recruit__content {
  display: none;
  padding-block: 2.5rem 1.875rem;
  padding-inline: 2.5rem;
  background: var(--white);
  border-radius: 0 0 0.9375rem 0.9375rem;
  filter: drop-shadow(0 0 0.4375rem rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .recruit__content {
    padding-inline: 0.875rem;
  }
}
.recruit__block {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--gray);
  font-size: 14px;
}
@media screen and (min-width: 2000px) {
  .recruit__block {
    grid-template-columns: 6.25rem 1fr;
    gap: 0.875rem;
    font-size: 1.125rem;
  }
}
.recruit__block:first-of-type {
  padding-block-start: 0;
}
.recruit__block ul {
  margin-inline-start: 1em;
}
.recruit__block li {
  text-indent: -0.5em;
}
.recruit__block li::before {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-inline-end: 0.3125rem;
  position: relative;
  top: -0.3125rem;
  background: var(--black);
  border-radius: var(--around);
}
.recruit__block a {
  color: #8C8C8C;
}

.fixed {
  width: 100%;
  padding-block: 0.625rem 0;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
}
.fixed__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .fixed__container {
    width: 54rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 2000px) {
  .fixed__container {
    width: 75rem;
  }
}
@media screen and (max-width: 767px) {
  .fixed__container {
    grid-template-columns: 13.125rem 7.75rem;
    gap: 0.6875rem;
  }
}

.js-toggle__head {
  cursor: pointer;
}

/*==============================================================================
5.0 Utility
============================================================================= */
/*==============================================================================
Accessibility
============================================================================= */
.u-visuallyHidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*==============================================================================
Display
============================================================================= */
.u-display--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display--pc {
    display: block;
  }
}
.u-display--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-display--sp {
    display: block;
  }
}

.u-display-block {
  display: block;
}

.u-spacer {
  display: block;
  margin-block-end: 1em;
}
.u-spacer--small {
  display: block;
  margin-block-end: 0.5em;
}

/*==============================================================================
Break
============================================================================= */
.u-break {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .u-break--pc {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .u-break--sp {
    display: inline-block;
  }
}

.u-br {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-br--pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-br--sp {
    display: block;
  }
}

.u-color-yellow {
  color: var(--yellow);
}
.u-color-pink {
  color: var(--pink);
}

.u-fw-bold {
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */