@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html {
  font-size: 62.5%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000000;
  background-image: url(../images/bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* ------------------------------------------------
l-inner
--------------------------------------------------- */
.l-inner {
  width: 100%;
  padding-right: 3rem;
  padding-left: 3rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1280px;
    padding-right: 4rem;
    padding-left: 4rem;
  }
}

/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  background: #333;
  max-width: 30rem;
  width: 100%;
  height: 4.2rem;
  border: 1px solid #fff;
  border-radius: 50vh;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-btn {
    max-width: 35rem;
    height: 5rem;
    font-size: 2.1rem;
  }
}

.c-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.c-btn:hover {
  color: #000000;
  opacity: 1;
  border: 1px solid #000000;
}

.c-btn:hover:before {
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* ------------------------------------------------
c-hamburger
--------------------------------------------------- */
.c-hamburger {
  width: 50px;
  height: inherit;
  margin-left: auto;
  position: relative;
  display: block;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 1px;
  width: 50px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

.c-hamburger.is-step01 span:nth-child(1) {
  top: 50%;
}

.c-hamburger.is-step01 span:nth-child(3) {
  top: 50%;
}

.c-hamburger.is-step02 span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 50px;
  background-color: #000000;
}

.c-hamburger.is-step02 span:nth-child(2) {
  opacity: 0;
  background-color: #000000;
}

.c-hamburger.is-step02 span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 50px;
  background-color: #000000;
}

/* ------------------------------------------------
c-line
--------------------------------------------------- */
.c-line {
  height: 10px;
  position: relative;
  max-width: 175px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-line {
    max-width: 1px;
  }
}
.c-line::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(50% + 50vw);
  height: 100%;
  background-image: url(../images/line.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}

.c-line--top::before {
  left: 0;
}

.c-line--bottom::before {
  right: 0;
}

.c-line-long {
  height: 10px;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.c-line-long::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/line.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}

/* ------------------------------------------------
c-section-head
--------------------------------------------------- */
.c-section-head {
  width: 100%;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .c-section-head {
    width: 83.3333333333vw;
    padding-left: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1440px) {
  .c-section-head {
    max-width: 1280px;
  }
}

/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title span {
  display: block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.c-section-title span:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Lustria", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -3rem;
}
@media screen and (min-width: 768px) {
  .c-section-title span:nth-child(1) {
    font-size: 2.4rem;
    margin-left: -6rem;
  }
}

.c-section-title span:nth-child(1)::before {
  background-color: #000000;
  content: "";
  height: 1px;
  width: 2rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .c-section-title span:nth-child(1)::before {
    width: 5rem;
  }
}

.c-section-title span:nth-child(2) {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-section-title span:nth-child(2) {
    font-size: 1.4rem;
  }
}

.c-section-title--white span {
  color: #fff;
}

.c-section-title--white span:nth-child(1)::before {
  background-color: #fff;
}

.js-fadeUp {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 0.6s;
  transition: opacity 1s, -webkit-transform 0.6s;
  transition: opacity 1s, transform 0.6s;
  transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media screen and (min-width: 768px) {
  .js-fadeUp {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: opacity 1.2s, -webkit-transform 1s;
    transition: opacity 1.2s, -webkit-transform 1s;
    transition: opacity 1.2s, transform 1s;
    transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}

/* フェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.js-fadeLeft {
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.5s;
  transition: opacity 0.8s, -webkit-transform 0.5s;
  transition: opacity 0.8s, transform 0.5s;
  transition: opacity 0.8s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .js-fadeLeft {
    -webkit-transition: opacity 1.2s, -webkit-transform 1s;
    transition: opacity 1.2s, -webkit-transform 1s;
    transition: opacity 1.2s, transform 1s;
    transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}

.js-fadeLeft.is-inview {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* --------------------------------
js-catch
----------------------------------- */
.js-catch {
  -webkit-transform: translateY(-7rem);
          transform: translateY(-7rem);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  opacity: 0;
}

.js-catch--01 {
  -webkit-transition: opacity 1s ease-in 0.5s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, -webkit-transform 0.6s ease-in 0.3s;
  transition: opacity 1s ease-in 0.5s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, -webkit-transform 0.6s ease-in 0.3s;
  transition: 2s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, transform 0.6s ease-in 0.3s, opacity 1s ease-in 0.5s;
  transition: 2s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, transform 0.6s ease-in 0.3s, opacity 1s ease-in 0.5s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, -webkit-transform 0.6s ease-in 0.3s;
}

.js-catch--02 {
  -webkit-transition: opacity 1s ease-in 1.7s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, -webkit-transform 0.6s ease-in 1.7s;
  transition: opacity 1s ease-in 1.7s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, -webkit-transform 0.6s ease-in 1.7s;
  transition: 2s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, transform 0.6s ease-in 1.7s, opacity 1s ease-in 1.7s;
  transition: 2s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, transform 0.6s ease-in 1.7s, opacity 1s ease-in 1.7s, 2s -webkit-clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, -webkit-transform 0.6s ease-in 1.7s;
}

.js-catch.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* ------------------------------------------------
p-area
--------------------------------------------------- */
.p-area {
  padding-block: 9.5rem 13.5rem;
}
@media screen and (min-width: 768px) {
  .p-area {
    padding-block: 14rem 13.5rem;
  }
}

.p-area__body {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-area__body {
    margin-top: 9.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.p-area__img {
  max-width: 311px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-area__img {
    max-width: none;
    width: 44.5rem;
    margin-inline: inherit;
  }
}

.p-area__img img {
  aspect-ratio: 311/344;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-area__img img {
    aspect-ratio: 445/492;
  }
}

.p-area__content {
  margin-top: -1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-area__content {
    margin-top: 10.5rem;
  }
}

.p-area__deco {
  position: absolute;
  z-index: -1;
  width: 18.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-area__deco {
    width: 25rem;
  }
}

.p-area__text {
  margin-top: 9.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-area__text {
    margin-top: 13rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.p-area__text:before {
  content: "";
  position: absolute;
  top: -5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.6rem;
  height: 4rem;
  background-image: url(../images/area-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media screen and (min-width: 768px) {
  .p-area__text:before {
    width: 3.5rem;
    height: 5.3rem;
  }
}

/* ------------------------------------------------
p-company
--------------------------------------------------- */
.p-company {
  padding-block: 9rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-company {
    padding-block: 12.5rem 8.5rem;
  }
}

.p-company__body {
  margin-top: 4.3rem;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-company__body {
    margin-top: 9.5rem;
    max-width: 900px;
  }
}

.p-company__list {
  display: grid;
  grid-template-columns: 7rem 1fr;
  padding-block: 1.2rem;
  padding-left: 0.5rem;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 768px) {
  .p-company__list {
    grid-template-columns: 14.6rem 1fr;
    padding-left: 0;
  }
}

.p-company__list:nth-child(1) {
  border-top: 1px solid #000000;
}

.p-company__label {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-company__label {
    font-size: 1.8rem;
    line-height: 2.7222222222;
    text-align: center;
  }
}

.p-company__value {
  font-size: 1.4rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company__value {
    font-size: 1.8rem;
    line-height: 2.7222222222;
    padding-left: 2rem;
  }
}

.p-company__value::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-company__value::before {
    height: 3rem;
  }
}

/* ------------------------------------------------
p-concept
--------------------------------------------------- */
.p-concept {
  position: relative;
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  .p-concept {
    padding-top: 10rem;
  }
}

.p-concept__body {
  margin-top: 3.6rem;
  padding-bottom: 29rem;
}
@media screen and (min-width: 768px) {
  .p-concept__body {
    margin-top: 9.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 2rem;
  }
}

.p-concept__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-concept__textarea {
    margin-top: 4rem;
    padding-left: 10rem;
    row-gap: 4rem;
    width: 53%;
  }
}

.p-concept__text {
  font-size: 1.4rem;
  line-height: 2.2857142857;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 1.8rem;
    line-height: 2.3333333333;
  }
}

.p-concept__deco {
  margin-top: -3rem;
  padding-bottom: 1rem;
  width: 7.6rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-concept__deco {
    margin-top: -5rem;
    width: 11rem;
  }
}

.p-concept__deco img {
  aspect-ratio: 76/80;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-concept__deco img {
    aspect-ratio: 110/114;
  }
}

.p-concept__img {
  width: 92%;
  height: 40rem;
  position: absolute;
  right: 0;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-concept__img {
    width: 43%;
    height: 76rem;
  }
}

.p-concept__img img {
  aspect-ratio: 345/400;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-concept__img img {
    aspect-ratio: 620/760;
  }
}

.p-concept-line {
  width: 100%;
  height: 1rem;
}

.p-concept-line img {
  height: auto;
}

/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact {
  padding-block: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 5rem;
  }
}

.p-contact__body {
  margin-top: 4rem;
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    margin-top: 11rem;
    max-width: 950px;
  }
}

.p-contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    row-gap: 2rem;
  }
}

.p-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.7rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    display: grid;
    grid-template-columns: 25rem 1fr;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__item--textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__item--textarea .p-contact__label {
    padding-top: 1rem;
  }
}

.p-contact__label {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 1.8rem;
    line-height: 1.1666666667;
    padding-bottom: 0.8rem;
    padding-left: 0.3rem;
    border-bottom: 1px solid #000000;
  }
}

.p-contact__input {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    font-size: 1.8rem;
    line-height: 1.1666666667;
  }
}

input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.p-contact__input input[type=text] {
  background-color: rgba(255, 255, 255, .5);
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #000000;
}
@media screen and (min-width: 768px) {
  .p-contact__input input[type=text] {
    padding: 0.85rem;
  }
}

.p-contact__input input:focus {
  outline: none;
}

.p-contact__input textarea {
  outline: none;
  background-color: rgba(255, 255, 255, .5);
  width: 100%;
  resize: vertical;
  min-height: 20rem;
  padding: 0.8rem;
  border: 1px solid #000000;
}
@media screen and (min-width: 768px) {
  .p-contact__input textarea {
    min-height: 29rem;
  }
}

.p-contact__btn {
  margin-top: 1rem;
  max-width: 31.1rem;
  width: 100%;
  height: 4.7rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    margin-top: 3.6rem;
    max-width: 40rem;
    height: 6rem;
  }
}

.p-contact__btn input[type=submit] {
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 50vh;
  font-size: 1.4rem;
  line-height: 2.7142857143;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-contact__btn input[type=submit] {
    font-size: 1.8rem;
  }
}

.p-contact__btn input[type=submit]:hover {
  background-color: #000000;
  color: #fff;
  border: 1px solid #fff;
}

/* ------------------------------------------------
p-drawer
--------------------------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  color: #000000;
  padding-inline: 3rem;
  overflow-y: scroll;
  z-index: 900;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-image: url(../images/bg-repeat.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
}

.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  margin-top: 10rem;
}

.p-drawer-nav__list {
  text-align: center;
}

.p-drawer-nav__list a {
  display: block;
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  line-height: 1.75;
  min-width: 14rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-drawer-nav__list a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------
p-fixed
--------------------------------------------------- */
.p-fixed {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 900;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-fixed {
    bottom: 2rem;
  }
}

.p-fixed__btn {
  display: grid;
  place-items: center;
  width: 30rem;
}
@media screen and (min-width: 768px) {
  .p-fixed__btn {
    width: 35rem;
  }
}

.p-fixed-banner {
  position: fixed;
  bottom: 6.5rem;
  right: 1rem;
  z-index: 900;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .p-fixed-banner {
    bottom: 3rem;
    right: 3rem;
  }
}

.p-fixed-banner__img {
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-fixed-banner__img {
    width: 20rem;
  }
}

/* ------------------------------------------------
p-flow
--------------------------------------------------- */
.p-flow {
  padding-block: 9.5rem 10rem;
  background-image: url(../images/bg-black.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-block: 14.5rem;
  }
}

.p-flow__head {
  position: relative;
}

.p-flow__deco {
  width: 9.3rem;
  position: absolute;
  top: -7.5rem;
  right: 3.3rem;
}
@media screen and (min-width: 768px) {
  .p-flow__deco {
    width: 15.3rem;
    top: -13.5rem;
    right: -1rem;
  }
}

.p-flow__body {
  margin-top: 4.3rem;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__body {
    margin-top: 4.8rem;
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 10rem;
       -moz-column-gap: 10rem;
            column-gap: 10rem;
  }
}

.p-flow__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.3rem;
}
@media screen and (min-width: 768px) {
  .p-flow__items {
    row-gap: 3rem;
  }
}

.p-flow__items:nth-child(2) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-flow__items:nth-child(2) {
    margin-top: 0;
  }
}

.p-flow__item {
  padding: 1rem;
  background-color: rgba(199, 178, 153, .5);
  position: relative;
  width: 27.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    width: 100%;
    padding: 1.8rem 1rem;
    border-radius: 1rem;
  }
}

.p-flow__item::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 2rem;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-flow__item::before {
    width: 1rem;
    height: 3rem;
    bottom: -3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__items:nth-child(1) .p-flow__item:last-child::before {
    width: 10rem;
    height: 22rem;
    background-image: url(../images/arrow02.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    right: -15rem;
    left: inherit;
    bottom: 2rem;
  }
}

.p-flow__items:nth-child(2) .p-flow__item:last-child::before {
  display: none;
}

.p-flow__text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.p-flow__body-deco {
  width: 9.3rem;
  position: absolute;
  bottom: -10rem;
  left: -2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__body-deco {
    width: 14.6rem;
    bottom: -15rem;
    left: -6rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-flow__body-deco {
    width: 14.6rem;
    bottom: -9rem;
    left: -14rem;
  }
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  padding-block: 0.5rem 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 5rem 4.5rem;
  }
}

.p-footer__inner {
  padding-inline: 2rem;
}

.p-footer__img {
  width: 28rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__img {
    width: 36rem;
  }
}

.p-footer__foot {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 3.1666666667;
}
@media screen and (min-width: 768px) {
  .p-footer__foot {
    margin-top: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__foot small {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  height: 8rem;
  color: #fff;
  background-color: transparent;
  padding-inline: 3rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 7rem;
    padding-inline: 10.5rem;
  }
}

/* ------------------------------------------------
p-header-nav
--------------------------------------------------- */
.p-header-nav {
  height: inherit;
}

.p-header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
}

.p-header-nav__list {
  height: inherit;
}

.p-header-nav__list a {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
  height: inherit;
  display: grid;
  place-content: end;
  padding-inline: 1.3rem;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header-nav__list a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------
p-mv-lead
--------------------------------------------------- */
.p-mv-lead {
  padding-block: 6rem 7rem;
}
@media screen and (min-width: 768px) {
  .p-mv-lead {
    padding-block: 15rem 5rem;
  }
}

.p-mv-lead__inner {
  position: relative;
}

.p-mv-lead__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.3rem;
}
@media screen and (min-width: 768px) {
  .p-mv-lead__textarea {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-column-gap: 4.8rem;
       -moz-column-gap: 4.8rem;
            column-gap: 4.8rem;
  }
}

.p-mv-lead__text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.2857142857;
}
@media screen and (min-width: 768px) {
  .p-mv-lead__text {
    font-size: 1.8rem;
    line-height: 2.6666666667;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
  }
}

.p-mv-lead__deco {
  width: 15.6rem;
  position: absolute;
  bottom: -13rem;
  right: 0;
}
@media screen and (min-width: 550px) {
  .p-mv-lead__deco {
    right: 30%;
  }
}
@media screen and (min-width: 768px) {
  .p-mv-lead__deco {
    width: 22.3rem;
    right: 17rem;
    bottom: -2.5rem;
  }
}

.p-mv-lead__deco img {
  aspect-ratio: 156/165;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-mv-lead__deco img {
    aspect-ratio: 223/236;
  }
}

/* ------------------------------------------------
p-mv
--------------------------------------------------- */
.p-mv {
  position: relative;
}

.p-mv__img {
  position: relative;
}

.p-mv__img::before {
  position: absolute;
  content: "";
  top: 2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94.67%;
  height: 93.8%;
  border-radius: 3rem;
  background-color: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .p-mv__img::before {
    top: 3%;
    width: 97.23%;
    height: 91.6%;
  }
}

.p-mv__img img {
  aspect-ratio: 375/667;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    aspect-ratio: 1440/767;
  }
}

.p-mv__contents {
  position: absolute;
  top: 41.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30rem;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-mv__contents {
    top: 50%;
    width: 50rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-mv__contents {
    top: 55%;
  }
}

.p-mv__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-mv__title {
  font-size: 2.8rem;
  font-family: "Hina Mincho", serif;
  color: #fff;
  line-height: 1.6428571429;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  padding-bottom: 6.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 3.2rem;
    line-height: 1.75;
    padding-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-mv__title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28rem;
  height: 10.2rem;
  background-image: url(../images/kyoto.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-mv__title::before {
    width: 36rem;
    height: 13.2rem;
    top: 45%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -42rem;
  }
}

.p-mv__title span:last-child {
  display: block;
  margin-top: 20rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title span:last-child {
    margin-top: -2rem;
  }
}

.p-mv__logo-img {
  width: 28rem;
}

/* ------------------------------------------------
p-price
--------------------------------------------------- */
.p-price__body {
  margin-top: 3.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-price__body {
    margin-top: 4.3rem;
  }
}

.p-price__title {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding-inline: 1rem;
}
@media screen and (max-width: 367px) {
  .p-price__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-price__title {
    font-size: 3.6rem;
  }
}

.p-price__title span {
  font-size: 3.6rem;
  line-height: 1.1666666667;
}
@media screen and (max-width: 367px) {
  .p-price__title span {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-price__title span {
    font-size: 4.8rem;
  }
}

.p-price__btn {
  margin-top: 3rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-price__btn {
    margin-top: 5rem;
  }
}

.p-price__contens {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 62%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-price__contens {
    top: 63%;
  }
}

.p-price__img {
  -webkit-clip-path: polygon(0 7vw, 100% 0, 100% calc(100% - 7vw), 0 100%);
          clip-path: polygon(0 7vw, 100% 0, 100% calc(100% - 7vw), 0 100%);
  height: 27.6rem;
}
@media screen and (max-width: 350px) {
  .p-price__img {
    height: inherit;
  }
}
@media screen and (min-width: 768px) {
  .p-price__img {
    height: inherit;
  }
}

.p-price__img img {
  aspect-ratio: 375/276;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-price__img img {
    aspect-ratio: 1440/350;
  }
}

.p-price__line {
  position: relative;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.p-price--left {
  top: 1px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.p-price--right {
  bottom: 1px;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.p-price__body a {
  display: block;
  position: relative;
  color: inherit;
  z-index: 3;
}

.p-price__btn-contact {
  display: grid;
  place-items: center;
  color: #000000;
  font-size: 1.8rem;
  font-weight: 700;
  background-image: url(../images/bg-btn.jpg);
  background-repeat: repeat-y;
  background-position: center center;
  background-size: 100%;
  color: #000000;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .4);
          box-shadow: 0 3px 8px rgba(0, 0, 0, .4);
  max-width: 30rem;
  width: 100%;
  height: 4.2rem;
  border: 1px solid #fff;
  border-radius: 50vh;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-price__btn-contact {
    max-width: 35rem;
    height: 5rem;
    font-size: 2.1rem;
  }
}

.p-price__btn-contact:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000000;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.p-price__btn-contact:hover {
  color: #fff;
  background-image: none;
  background-color: #000000;
  opacity: 1;
}

.p-price__btn-contact:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/* ------------------------------------------------
p-service
--------------------------------------------------- */
.p-service {
  padding-block: 19.5rem 10.5rem;
  background-image: url(../images/bg-black.jpg);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding-block: 14rem 12.5rem;
  }
}

.p-service__text {
  margin-top: 3.8rem;
  font-size: 1.8rem;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  line-height: 1.5555555556;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    margin-top: 9.5rem;
    padding-left: 2rem;
    font-size: 2.1rem;
    line-height: 1.7142857143;
  }
}

.p-service__body {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    margin-top: 4rem;
    max-width: 1050px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-service__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.1rem, 1fr));
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  row-gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    grid-template-columns: repeat(5, 1fr);
    -webkit-column-gap: 5rem;
       -moz-column-gap: 5rem;
            column-gap: 5rem;
  }
}

.p-service__img {
  width: 13.1rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-service__img {
    width: 15rem;
  }
}

.p-service__img img {
  border-radius: 50vh;
  aspect-ratio: 131/131;
}

.p-service__title {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}

.p-service__deco {
  width: 10.5rem;
  position: absolute;
  bottom: 16rem;
  right: 12%;
}
@media screen and (max-width: 337px) {
  .p-service__deco {
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-service__deco {
    width: 15rem;
    right: 0;
    left: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-service__deco {
    left: 4%;
    bottom: 3rem;
  }
}

.p-service__deco img {
  aspect-ratio: 105/113;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
p-storong
--------------------------------------------------- */
.p-storong {
  padding-block: 9.2rem 11rem;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-storong {
    padding-block: 13.5rem 15rem;
  }
}

.p-storong__head {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-storong__deco {
    width: 18.4rem;
    position: absolute;
    top: -8rem;
    right: -2.5rem;
  }
}

.p-storong__inner {
  position: relative;
  padding-inline: 3rem;
}

.p-storong__body {
  margin-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-storong__body {
    margin-top: 9.5rem;
  }
}

.p-storong__item-img::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: rgba(0, 0, 0, .5);
}

.p-storong__item-img img {
  aspect-ratio: 315/495;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-storong__item-img img {
    aspect-ratio: 420/637;
  }
}

.p-storong__item-body {
  position: absolute;
  bottom: 1.7rem;
  left: 2.5rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-storong__item-body {
    bottom: 2.2rem;
  }
}

.p-storong__item-title span {
  display: block;
}

.p-storong__item-title span:nth-child(1) {
  font-size: 3.2rem;
  font-weight: 400;
  font-family: "Lustria", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-storong__item-title span:nth-child(1) {
    font-size: 4.2rem;
  }
}

.p-storong__item-title span:nth-child(2) {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Lustria", serif;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-storong__item-title span:nth-child(2) {
    font-size: 1.6rem;
  }
}

.p-storong__item-text {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
@media screen and (min-width: 768px) {
  .p-storong__item-text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}

/* ------------------------------------------------
swiper
--------------------------------------------------- */
.swiper-button-prev,
.swiper-button-next {
  height: 4.5rem;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 10rem;
    height: 10rem;
  }
}

.swiper-button-prev:after,
.swiper-button-next:after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  height: 4.5rem;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 10rem;
    height: 10rem;
  }
}

.swiper-button-prev::after {
  background-image: url(../images/storong-arrow01.png);
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after {
    left: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .swiper-button-prev::after {
    left: 1.5rem;
  }
}

.swiper-button-next::after {
  background-image: url(../images/storong-arrow02.png);
  right: -1rem;
}
@media screen and (min-width: 768px) {
  .swiper-button-next::after {
    right: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .swiper-button-next::after {
    right: 1.7rem;
  }
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks {
  padding-block: 20rem 10rem;
  padding-inline: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-thanks__text {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 2.4rem;
  }
}

.p-thanks__btn {
  margin-bottom: 3rem;
  display: grid;
  place-items: center;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
