@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4678899083vw;
  }
}
@media (min-width: 1090px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #403535;
  padding-top: 4.375rem;
}

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

/*****************************
* 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-inner {
  max-width: 33.75rem;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1090px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-inner--s {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner--s {
    max-width: 850px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-section {
  padding: 3.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding: 5rem 0 3.75rem;
  }
}

.c-column2 {
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-column2 {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-column2--gap60 {
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-column2--gap60 {
    gap: 3.75rem;
  }
}

.c-column2--gap-sp20 {
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-column2--gap-sp20 {
    gap: inherit;
  }
}

.c-column3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .c-column3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-column4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .c-column4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.c-column4--sp2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .c-column4--sp2 {
    grid-template-columns: inherit;
  }
}

.c-hamburger-btn {
  display: inline-block;
  position: relative;
  width: 4.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-hamburger-btn {
    display: none;
  }
}

.c-hamburger-btn__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.25rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger-btn__line::before,
.c-hamburger-btn__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger-btn__line::before {
  top: -8px;
}

.c-hamburger-btn__line::after {
  top: 8px;
}

.c-hamburger-btn.is-open .c-hamburger-btn__line {
  background-color: transparent;
}

.c-hamburger-btn.is-open .c-hamburger-btn__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
}

.c-hamburger-btn.is-open .c-hamburger-btn__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
}

.c-hover-run {
  text-decoration: none;
  color: black;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(90deg, black, black);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  -webkit-transition: background-size 0.5s;
  transition: background-size 0.5s;
}

@media screen and (min-width: 768px) {
  .c-hover-run:hover {
    background-size: 100% 1px;
  }
}
.c-img-hover {
  position: relative;
}

.c-img-hover img {
  width: 1.875rem;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

.c-img-hover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}

@media screen and (min-width: 768px) {
  .c-img-hover:hover img:nth-of-type(1) {
    opacity: 0;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity;
  }
  .c-img-hover:hover img:nth-of-type(2) {
    opacity: 1;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity;
  }
}
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: -1em;
  top: 0.3em;
  background: url(../../assets/images/画像のファイル) center center/contain no-repeat;
}

.c-sakura {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
}

.c-sakura li {
  position: absolute;
  list-style: none;
  top: -3.125rem;
  left: 100%;
  -webkit-animation: fall 8s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 8s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

@-webkit-keyframes fall {
  to {
    top: 120%;
    left: -100%;
  }
}

@keyframes fall {
  to {
    top: 120%;
    left: -100%;
  }
}
@-webkit-keyframes rotate1 {
  from {
    -webkit-transform: rotate(0deg) rotateX(0deg);
            transform: rotate(0deg) rotateX(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) rotateX(180deg);
            transform: rotate(360deg) rotateX(180deg);
  }
}
@keyframes rotate1 {
  from {
    -webkit-transform: rotate(0deg) rotateX(0deg);
            transform: rotate(0deg) rotateX(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) rotateX(180deg);
            transform: rotate(360deg) rotateX(180deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rotate2 {
  from {
    -webkit-transform: translateX(200px) rotate(-45deg);
            transform: translateX(200px) rotate(-45deg);
  }
  to {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.c-sakura li:nth-child(1) {
  left: 0;
  -webkit-animation: fall 20s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 20s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(2) {
  left: 5vw;
  -webkit-animation: fall 30s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 30s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(3) {
  left: 15vw;
  -webkit-animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(4) {
  left: 30vw;
  -webkit-animation: fall 16s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 16s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(5) {
  left: 40vw;
  -webkit-animation: fall 20s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 20s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(6) {
  left: 55vw;
  -webkit-animation: fall 22s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 22s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(7) {
  left: 65vw;
  -webkit-animation: fall 14s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
          animation: fall 14s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(8) {
  left: 50vw;
  -webkit-animation: fall 14s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 14s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(9) {
  left: 100vw;
  -webkit-animation: fall 20s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 20s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(10) {
  left: 80vw;
  -webkit-animation: fall 30s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 30s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(11) {
  left: 145vw;
  -webkit-animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(12) {
  left: 130vw;
  -webkit-animation: fall 26s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 26s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(13) {
  left: 120vw;
  -webkit-animation: fall 20s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 20s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(14) {
  left: 90vw;
  -webkit-animation: fall 22s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 22s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(15) {
  left: 125vw;
  -webkit-animation: fall 19s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
          animation: fall 19s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(16) {
  left: 155vw;
  -webkit-animation: fall 14s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 14s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(17) {
  left: 100vw;
  top: 50%;
  -webkit-animation: fall 24s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 24s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(18) {
  left: 105vw;
  top: 50%;
  -webkit-animation: fall 32s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 32s linear infinite, rotate1 2s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(19) {
  left: 145vw;
  top: 50%;
  -webkit-animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 18s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(20) {
  left: 130vw;
  top: 50%;
  -webkit-animation: fall 14s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 14s linear infinite, rotate2 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(21) {
  left: 120vw;
  top: 50%;
  -webkit-animation: fall 26s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 26s linear infinite, rotate1 4s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(22) {
  left: 110vw;
  top: 50%;
  -webkit-animation: fall 25s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 25s linear infinite, rotate2 3s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(23) {
  left: 125vw;
  top: 50%;
  -webkit-animation: fall 17s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
          animation: fall 17s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}

.c-sakura li:nth-child(24) {
  left: 155vw;
  top: 50%;
  -webkit-animation: fall 15s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 15s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

/* animation-delay */
.c-sakura li:nth-child(4n+1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.c-sakura li:nth-child(4n+2) {
  -webkit-animation-delay: 9s;
          animation-delay: 9s;
}

.c-sakura li:nth-child(4n+3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.c-sakura li:nth-child(4n+4) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.c-section-title {
  text-align: center;
}

.c-section-title__main {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #98706F;
}
@media screen and (min-width: 768px) {
  .c-section-title__main {
    font-size: 2.25rem;
  }
}

.c-section-title__sub {
  margin-top: 0.1875rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}

.c-section-note {
  font-size: 0.75rem;
  margin-top: 1.25rem;
}

.c-under-bar {
  position: relative;
  display: inline-block;
}
.c-under-bar::before {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-under-bar:hover:before {
    opacity: 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
}
.p-about {
  position: relative;
}

.p-about__inner {
  position: relative;
  z-index: 1;
}

.p-about-skill {
  position: relative;
}

.p-about-skill__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 1.625rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-about-skill__items {
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 2.625rem;
    margin-top: 3.5rem;
  }
}

.p-about-skill__item {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-row: span 2;
  grid-template-rows: subgrid;
  row-gap: 0.25rem;
}

.p-about-skill__item-img {
  display: grid;
  place-items: center;
}

.p-about-skill__item-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.p-about-skill__note {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about-skill__note {
    margin-top: 0;
    position: absolute;
    right: 12.4760076775%;
    bottom: 6.25rem;
  }
}

.p-about-skill__note li::before {
  display: inline-block;
  content: "";
  margin-right: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #98706F;
}

.p-about {
  background: linear-gradient(165deg, #FFF5F4 0%, #F8D3D1 100%);
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 7.5rem 0;
  }
}

.p-about__body {
  background-color: #fff;
  padding: 2.5rem 1.25rem;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    padding: 4.375rem 6.875rem 4.375rem 4.375rem;
    max-width: 52.0625rem;
    width: 100%;
  }
}
@media screen and (min-width: 1282px) {
  .p-about__body {
    padding: 4.375rem 5.8737151248vw 4.375rem 4.375rem;
    margin-left: -5.1395007342vw;
  }
}
@media screen and (min-width: 1362px) {
  .p-about__body {
    padding: 4.375rem 8.0763582966vw 4.375rem 4.375rem;
    max-width: 61.1600587372vw;
  }
}

.p-about__name {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-about__name {
    font-size: 1.5rem;
  }
}

.p-about__name::after {
  display: block;
  content: attr(data-en);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__name::after {
    display: inline-block;
    font-size: 1rem;
    margin-top: 0;
    margin-left: 1.5rem;
  }
}

.p-about__detail {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__detail {
    margin-top: 1.5rem;
  }
}

.p-about__text {
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    margin-top: 1.5rem;
  }
}

.p-about__img {
  margin-top: 2.5rem;
  max-width: 13.75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about__img {
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: 0;
    margin-right: initial;
    margin-top: -13.75rem;
  }
}

.p-about__img img {
  aspect-ratio: 220/202;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about__skill {
  margin-top: 2.5rem;
  background-color: #fff;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__skill {
    max-width: 70.0575815739%;
    width: 100%;
    margin-left: auto;
    padding: 5rem;
  }
}

.p-about__titile-sub {
  font-size: 1.375rem;
  font-weight: 700;
  color: #98706F;
}

.p-about__body2 {
  background-color: #fff;
  padding: 2.5rem 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__body2 {
    max-width: 50rem;
    width: 100%;
    margin-inline: auto;
    padding: 4rem 4.375rem 4rem 3.75rem;
    margin-top: 4.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__body2-des {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 2.5rem 0.5625rem;
  }
}

.p-about__body2-dtit {
  font-size: 1.25rem;
  font-weight: 700;
  color: #98706F;
}

.p-about__body2-data dl {
  display: grid;
  grid-template-columns: 3em 1fr;
  font-size: 0.9375rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__body2-data dl {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.p-about__body2-data-text {
  font-size: 0.9375rem;
}

.p-about__body2-data-link {
  margin-top: 1em;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #98706F;
}

.p-about__body2-data-link span {
  border-bottom: solid 1px #98706F;
}

.p-card {
  position: relative;
}

.p-card__img {
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.p-card__img img {
  aspect-ratio: 291/253;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-card__title {
  margin-top: 1.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-card__title {
    font-size: 1.25rem;
    text-align: left;
  }
}

.p-card__text {
  margin-top: 1rem;
  font-size: 1rem;
}

.p-contact {
  background: url(../images/bg_contact.jpg) center center/cover no-repeat;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 7.5rem 0;
  }
}

.p-contact__text {
  text-align: center;
  margin-top: 3.75rem;
}

.p-contact__form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    max-width: 33.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-contact__form-wrap + .p-contact__form-wrap {
  margin-top: 2.1875rem;
}

.p-contact__form-label {
  font-weight: 700;
}

.p-contact__form-label span {
  margin-left: 0.1875rem;
  display: inline-block;
  color: #D8202D;
}

.p-contact__form-input {
  margin-top: 0.875rem;
}

.p-contact__form-input input {
  padding: 1.25rem;
  width: 100%;
  border-radius: 0.3125rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: solid 1px #FFFBFB;
}

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

.p-contact__form-input input::-webkit-input-placeholder {
  color: #D9D9D9;
}

.p-contact__form-input input::-moz-placeholder {
  color: #D9D9D9;
}

.p-contact__form-input input::-ms-input-placeholder {
  color: #D9D9D9;
}

.p-contact__form-input input::placeholder {
  color: #D9D9D9;
}

.p-contact__form-textarea {
  margin-top: 0.9375rem;
}

.p-contact__form-textarea textarea {
  padding: 1.25rem;
  width: 100%;
  height: 14.375rem;
  border-radius: 0.3125rem;
  border: solid 1px #FFFBFB;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: none;
  resize: none;
}

.p-contact__form-textarea textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-contact__form-textarea textarea::-webkit-input-placeholder {
  color: #D9D9D9;
}

.p-contact__form-textarea textarea::-moz-placeholder {
  color: #D9D9D9;
}

.p-contact__form-textarea textarea::-ms-input-placeholder {
  color: #D9D9D9;
}

.p-contact__form-textarea textarea::placeholder {
  color: #D9D9D9;
}

.p-contact__form-submit {
  margin-top: 3.5rem;
  text-align: center;
}

.p-contact__form-submit input {
  padding: 0.75rem 6.25rem;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #98706F;
  background-image: none;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: 1px solid;
  outline-color: #98706F;
  outline-offset: 0px;
  -webkit-transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.p-contact__form-submit input:hover {
  outline-offset: 15px;
  outline-color: transparent;
}

.p-contact__form-submit input:focus {
  outline: none;
}

.p-contact__form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.p-footer {
  height: 3.125rem;
  background-color: #fff;
  font-size: 0.75rem;
  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-header {
  height: 4.375rem;
  background-color: #fff;
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.p-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.375rem;
  height: 100%;
  background-color: #F6C3C1;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .p-header::after {
    display: none;
  }
}

.p-header:has(.p-header__drawer.is-open)::after {
  background-color: transparent;
}

.p-header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 3.125rem;
  }
}

.p-header__logo {
  max-width: 4.625rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 6.25rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__logo img:first-child {
  aspect-ratio: 1/1;
  width: 1.25rem;
  margin-right: 0.625rem;
  padding-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo img:first-child {
    width: 2rem;
  }
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__nav-item a {
  padding: 0 1.875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1428571429;
  color: #98706F;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--contact a {
  margin-left: 0.625rem;
  padding: 0 1.625rem;
  color: #fff;
  background-color: #F6C3C1;
}

.p-header__nav-item a span {
  display: block;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotateX(0deg) translateZ(30px);
          transform: rotateX(0deg) translateZ(30px);
}

.p-header__nav-item a:hover span {
  -webkit-transform: rotateX(90deg) translateZ(30px);
          transform: rotateX(90deg) translateZ(30px);
}

.p-header__nav-item a::after {
  content: attr(data-ja);
  font-size: 0.75rem;
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotateX(-90deg) translateZ(30px);
          transform: rotateX(-90deg) translateZ(30px);
}

.p-header__nav-item a:hover::after {
  -webkit-transform: rotateX(0deg) translateZ(30px);
          transform: rotateX(0deg) translateZ(30px);
}

.p-header__drawer {
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100dvh;
  background: rgba(246, 195, 193, .8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.p-header__drawer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: url(../images/bg_drawer.png) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item + .p-header__drawer-item {
  margin-top: 0.9375rem;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.p-mv {
  background: url(../images/bg_mv_sp.jpg) center center/cover no-repeat;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-image: url(../images/bg_mv_pc.jpg);
    height: 42.5rem;
  }
}

.p-mv__title-wrap {
  padding-top: 9.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    padding-top: 19.75rem;
  }
}

.p-mv__title {
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #98706F;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 2.6875rem;
    letter-spacing: 0.05em;
  }
}

.p-mv__title-sub {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title-sub {
    font-size: 0.875rem;
  }
}

.p-mv__detail {
  margin-top: 0.5rem;
  width: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__detail {
    margin-top: 1.5rem;
    width: 2.5625rem;
  }
}

.p-mv__detail img {
  aspect-ratio: 41/5;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__text {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: 1.25rem;
    margin-top: 1rem;
  }
}

.p-price {
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-price {
    padding: 7.5rem 0;
  }
}

.p-price__list {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-price__list {
    max-width: 50rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-price__list dt {
  background-color: #F8D3D1;
  font-weight: 700;
  width: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-price__list dt {
    border-bottom: solid 1px #fff;
  }
}

.p-price__list dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #D9D9D9;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-price__list dd {
    padding: 1.5rem 2rem;
  }
}

.p-price__list dl:first-child dt {
  border-top: solid 1px #D9D9D9;
}

@media screen and (min-width: 768px) {
  .p-price__list dl:first-child dd:first-of-type {
    border-top: solid 1px #D9D9D9;
  }
}

.p-price__list dd:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-price__list dd:last-child {
    border-bottom: solid 1px #D9D9D9;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list dl:last-child {
    border-bottom: solid 1px #D9D9D9;
  }
}

.p-price__list dl:last-child dd {
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (min-width: 768px) {
  .p-price__list dl:last-child dd {
    border-bottom: none;
  }
}

.p-price__list dd span:last-child {
  font-weight: 700;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .p-price__list-row2 {
    display: grid;
    grid-template-columns: 30% 70%;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row2-dt {
    grid-area: 1/1/3/2;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row2-dd1 {
    grid-area: 1/2/2/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row2-dd2 {
    grid-area: 2/2/3/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4 {
    display: grid;
    grid-template-columns: 30% 70%;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4-dt {
    grid-area: 1/1/5/2;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4-dd1 {
    grid-area: 1/2/2/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4-dd2 {
    grid-area: 2/2/3/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4-dd3 {
    grid-area: 3/2/4/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row4-dd4 {
    grid-area: 4/2/5/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row3 {
    display: grid;
    grid-template-columns: 30% 70%;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row3-dt {
    grid-area: 1/1/4/2;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row3-dd1 {
    grid-area: 1/2/2/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row3-dd2 {
    grid-area: 2/2/3/3;
  }
}

@media screen and (min-width: 768px) {
  .p-price__list-row3-dd3 {
    grid-area: 3/2/4/3;
  }
}

.p-price__note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-price__note {
    margin-top: 3.5rem;
  }
}

.p-price__note li {
  text-indent: calc(-1em - 0.25rem);
  padding-left: calc(1em + 0.25rem);
}

.p-price__note li::before {
  content: "※";
  margin-right: 0.25rem;
}

.p-service {
  background: url(../images/bg_service.jpg) center center/cover no-repeat;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-service {
    padding: 7.5rem 0;
  }
}

.p-service__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .p-service__items {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(3.125rem, 1.36rem + 3.676vw, 3.75rem);
    margin-top: 3.5rem;
  }
}

.p-slider-main {
  position: relative;
}

.p-slider-main__img {
  margin-left: 0.625rem;
  margin-right: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__img {
    margin-left: 0;
    margin-right: 0;
  }
}

.p-slider-main__img img {
  aspect-ratio: 528/280;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-slider-main__body {
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__body {
    width: 70%;
    margin-inline: auto;
  }
}

.p-slider-main__name {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-slider-main__name {
    font-size: 1.375rem;
  }
}

.p-slider-main__pass {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__pass {
    font-size: 0.875rem;
  }
}

.p-slider-main__text {
  letter-spacing: 0.03em;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__text {
    font-size: 1rem;
  }
}

.p-slider-main__text:last-child {
  margin-top: 1.25rem;
}

.p-slider-main__text-lists {
  list-style-type: disc;
  text-align: left;
  margin-top: 1.25rem;
  margin-left: 1.875rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__text-lists {
    font-size: 1rem;
  }
}

.p-slider-main__tags {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-inline: auto;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-slider-main__tags {
    width: 60%;
  }
}

.p-slider-main__tag {
  background-color: #F6C3C1;
  border-radius: 0.1875rem;
  color: #fff;
  font-size: 0.8125rem;
  padding: 0.1875rem 0.3125rem;
}

.p-slider-main .swiper-button-prev,
.p-slider-main .swiper-button-next {
  position: absolute;
  top: 10%;
  width: 2.3125rem;
  height: 2.3125rem;
  background-color: #fff;
  border: solid 1px #98706F;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-slider-main .swiper-button-prev,
  .p-slider-main .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-slider-main .swiper-button-prev::before,
.p-slider-main .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #98706F;
  border-right: 0.125rem solid #98706F;
}
@media screen and (min-width: 768px) {
  .p-slider-main .swiper-button-prev::before,
  .p-slider-main .swiper-button-next::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.p-slider-main .swiper-button-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: -0.3125rem;
}

.p-slider-main .swiper-button-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -0.3125rem;
}

.p-slider-main .swiper-horizontal > .swiper-pagination-bullets,
.p-slider-main .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-slider-main .swiper-pagination-custom,
.p-slider-main .swiper-pagination-fraction {
  bottom: -3.75rem;
}

.p-slider-main .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: #F6C3C1;
}

.p-slider-main .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F6C3C1;
}

.p-slider-main .swiper-button-next,
.p-slider-main .swiper-button-prev {
  display: none;
}
@media (max-width: 767px) {
  .p-slider-main .swiper-button-next,
  .p-slider-main .swiper-button-prev {
    display: grid;
  }
}

.p-slider-thumbnail {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-slider-thumbnail {
    margin-top: 4rem;
  }
}

.p-slider-thumbnail .swiper-slide {
  height: auto;
}

@media (any-hover: hover) {
  .p-slider-thumbnail .swiper-slide {
    cursor: pointer;
  }
}
.p-slider-thumbnail .swiper-slide__img {
  height: 100%;
}

.p-slider-thumbnail .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-slider-thumbnail .swiper-slide.swiper-slide-thumb-active::before {
  background-color: transparent;
  background-color: initial;
}

.p-slider-thumbnail .swiper-slide img {
  aspect-ratio: 350/258;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-slider-thumbnail .swiper-button-prev,
.p-slider-thumbnail .swiper-button-next {
  position: absolute;
  width: 2.3125rem;
  height: 2.3125rem;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-slider-thumbnail .swiper-button-prev,
  .p-slider-thumbnail .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.p-slider-thumbnail .swiper-button-prev::before,
.p-slider-thumbnail .swiper-button-next::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #98706F;
  border-right: 0.125rem solid #98706F;
}
@media screen and (min-width: 768px) {
  .p-slider-thumbnail .swiper-button-prev::before,
  .p-slider-thumbnail .swiper-button-next::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.p-slider-thumbnail .swiper-button-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-right: -0.3125rem;
}

.p-slider-thumbnail .swiper-button-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: -0.3125rem;
}

.p-slider-thumbnail .swiper-horizontal > .swiper-pagination-bullets,
.p-slider-thumbnail .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-slider-thumbnail .swiper-pagination-custom,
.p-slider-thumbnail .swiper-pagination-fraction {
  bottom: -3.75rem;
}

.p-slider-thumbnail .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: #F6C3C1;
}

.p-slider-thumbnail .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F6C3C1;
}

.p-slider-thumbnail__text {
  background-color: #FFECEB;
  height: 100%;
  padding: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.p-header--thanks::after {
  display: none;
}

.p-thanks {
  margin-top: 7.5rem;
}

.p-thanks__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    margin-top: 5rem;
  }
}

.p-thanks__btn {
  display: inline-block;
  margin: 1.25rem 0;
  background-color: #F6C3C1;
  color: #fff;
  font-weight: 700;
  border-radius: 0.3125rem;
  padding: 0.625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__btn {
    margin: 2.5rem 0;
  }
}

.p-voice {
  background-color: #FFFBFB;
  padding: 6.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding: 7.5rem 0;
  }
}

.p-voice__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-voice__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8125rem;
  }
}

.p-voice__item {
  background-color: #F9DDDC;
  padding: 1.875rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-voice__item {
    padding: 1.875rem;
  }
}

.p-voice__item-name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-voice__item-text {
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

.p-works {
  padding: 6.25rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-works {
    padding: 7.5rem 0 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-works__section-title {
    width: 40%;
  }
}

.p-works__slider-main {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-works__slider-main {
    width: 60%;
    margin-top: 0;
  }
}

.p-works__slider-thumbnail {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

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

.u-font12 {
  font-size: 0.75rem;
}

.u-font14 {
  font-size: 0.875rem;
}

.u-font16 {
  font-size: 1rem;
}

.u-font18 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .u-font18 {
    font-size: 1.125rem;
  }
}

.u-font20 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .u-font20 {
    font-size: 1.25rem;
  }
}

.u-font22 {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .u-font22 {
    font-size: 1.375rem;
  }
}

.u-font24 {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .u-font24 {
    font-size: 1.5rem;
  }
}

.u-font28 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .u-font28 {
    font-size: 1.75rem;
  }
}

.u-font32 {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .u-font32 {
    font-size: 2rem;
  }
}

.u-font40 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .u-font40 {
    font-size: 2.5rem;
  }
}

.u-fw300 {
  font-weight: 300;
}

.u-fw400 {
  font-weight: 400;
}

.u-fw500 {
  font-weight: 500;
}

.u-fw600 {
  font-weight: 600;
}

.u-fw700 {
  font-weight: 700;
}

.u-fw900 {
  font-weight: 900;
}

.u-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

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

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

.u-shadow {
  -webkit-box-shadow: 0 0 13px rgba(255, 0, 0, .5);
          box-shadow: 0 0 13px rgba(255, 0, 0, .5);
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-justify {
  text-align: justify !important;
}

@media screen and (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
  .u-text-sp-center {
    text-align: center !important;
  }
  .u-text-sp-right {
    text-align: right !important;
  }
  .u-text-sp-justify {
    text-align: justify !important;
  }
}
/*# sourceMappingURL=styles.css.map */
