@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  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;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/* Remove all animations and transitions 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;
    -webkit-animation-iteration-count: 1 !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
******************************************/
/*****************************************
 * px→remの計算
******************************************/
/*****************************************
 * vwの計算
******************************************/
/*****************************************
 * line-heightの計算
******************************************/
html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media (max-width: 1240px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

img {
  height: auto;
}

picture {
  height: inherit;
}

/* ある時からbr消去 
----------------------------------------------- */
@media screen and (max-width: 399px) {
  .sm-remove {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .md-remove {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .lg-remove {
    display: none;
  }
}

/* ある時からbr追加
----------------------------------------------- */
.sm-add {
  display: none;
}
@media screen and (max-width: 399px) {
  .sm-add {
    display: block;
  }
}

.md-add {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-add {
    display: block;
  }
}

.lg-add {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg-add {
    display: block;
  }
}

.l-about {
  margin: 0 auto;
  margin-top: 11.25rem;
  max-width: 88.75rem;
  padding: 0 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-about {
    margin-top: 3.75rem;
    padding: 0;
  }
}

.l-point {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-point {
    margin-top: 3.75rem;
  }
}

.l-collection {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-collection {
    margin-top: 3.75rem;
  }
}

.l-flow {
  margin-top: 11.25rem;
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-flow {
    margin-top: 3.75rem;
    padding: 2.5rem 0;
  }
}

.l-voice {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-voice {
    margin-top: 3.75rem;
  }
}

.l-cta {
  margin-bottom: 11.25rem;
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .l-cta {
    margin-bottom: 3.75rem;
    margin-top: 3.75rem;
  }
}

.c-inner {
  margin: 0 auto;
  max-width: 77.5rem;
  padding: 0 1.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-inner {
    max-width: 37.5rem;
  }
}

.c-sec-title {
  border-bottom: 0.3125rem solid #E3DFD6;
  color: #333;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-sec-title {
    font-size: 1.5rem;
  }
}
.c-sec-title span {
  align-items: flex-end;
  background-color: #FD804D;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 6.25rem;
  justify-content: center;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-sec-title span {
    height: 3.75rem;
    width: 3.75rem;
  }
}
.c-sec-title.c-sec-title-black {
  color: #fff;
}
.c-sec-title.c-sec-title-black span {
  color: #333;
}

.c-imgZoom {
  overflow: hidden;
  position: relative;
}
.c-imgZoom img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media screen and (min-width: 768px) {
  .c-imgZoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}
.p-mv {
  height: calc(100vh - 5.625rem);
  min-height: 25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-mv {
    height: calc(100vh - 3.125rem);
  }
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  -webkit-transform: translate(-50%, -50%);
  color: #333;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__title-wrap {
    -webkit-transform: translateX(-50%);
    top: 10%;
    transform: translateX(-50%);
  }
}

.p-mv__main-title {
  display: inline-block;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__main-title {
    width: 60vw;
  }
}

.p-mv__sub-title {
  margin: 0 auto;
  margin-top: 1.875rem;
  max-width: 27.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    margin-top: 1.25rem;
    max-width: 18.75rem;
  }
}

.p-mv__swiper,
.p-mv__swiper .swiper-img,
.p-mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.p-mv__swiper .swiper-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-mv__swiper .swiper-slide.swiper-slide-active .swiper-img,
.p-mv__swiper .swiper-slide.swiper-slide-duplicate-active .swiper-img,
.p-mv__swiper .swiper-slide.swiper-slide-prev .swiper-img {
  -webkit-animation: scale 8s linear 0s normal both;
  animation: scale 8s linear 0s normal both;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.p-header {
  background-color: #557379;
  height: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.75rem;
  }
}

.p-header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding: 0 3.125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    justify-content: center;
  }
}

.p-header__logo {
  margin-top: -3.75rem;
  max-width: 18.9375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    margin-top: -1.25rem;
    max-width: 10rem;
  }
}

.p-header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

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

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

.p-header__nav-list {
  align-items: center;
  display: flex;
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  align-items: center;
  display: flex;
  margin-left: 0.9375rem;
}

.p-header__nav-item + .p-header__nav-item a {
  border-left: 0.0625rem solid #fff;
}

.p-header__nav-item a {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 0.9375rem;
}

.p-header__nav-item.p-header__nav-item--contact a::after {
  background-image: url(./../images/common/contact-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 0.75rem;
  margin-left: 0.625rem;
  width: 0.6875rem;
}

.p-header__hamburger {
  background-color: #557379;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  height: 3.125rem;
  margin: 0;
  outline: none;
  padding: 0;
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  transition: 0.3s;
  width: 3.125rem;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  -webkit-transform: translateX(-50%);
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 0.9375rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background-color: rgba(85, 115, 121, 0.95);
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 5rem 0 2.5rem 0;
  position: fixed;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
}

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

.p-header__drawer__logo {
  margin: 0 auto;
  max-width: 12.5rem;
}

.p-header__drawer-nav {
  margin-top: 2.5rem;
}

.p-header__drawer-item a {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.9375rem 0;
  text-align: center;
  text-transform: uppercase;
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
  background-image: url(./../images/common/contact-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 0.9375rem;
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
}

.p-footer {
  background: url(../img/footer-bg.webp) no-repeat center center/cover;
  padding-top: 1.875rem;
}

.p-footer__sns {
  align-items: center;
  display: flex;
  gap: 3.75rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__sns {
    gap: 1.875rem;
  }
}

.p-footer__sns-icon {
  max-width: 2.2575rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__sns-icon {
    max-width: 1.625rem;
  }
}

.p-footer__wrap {
  align-items: center;
  display: flex;
  gap: 2em;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    align-items: start;
    flex-direction: column;
    gap: 0.3125rem;
    margin-top: 1.25rem;
  }
}

.p-footer__text {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 0.875rem;
  }
}

.p-footer__nav-list {
  align-items: center;
  border-top: 1px solid #557379;
  display: flex;
  justify-content: space-between;
  margin-top: 1.375rem;
  padding-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-wrap: wrap;
    gap: 0.3125rem 0.625rem;
    justify-content: flex-start;
  }
}
.p-footer__nav-list a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list a {
    font-size: 0.875rem;
  }
}

.p-footer__nav-item {
  width: calc(50% - 0.625rem);
}

.p-footer__logo-bg {
  align-items: center;
  background-color: #557379;
  display: flex;
  height: 4.6875rem;
  justify-content: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-bg {
    height: 2.625rem;
    margin-top: 1.25rem;
  }
}

.p-footer__logo {
  margin-top: -0.625rem;
  max-width: 12.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 7.5rem;
  }
}

.p-footer__copyright {
  display: block;
  font-size: 0.75rem;
  padding: 0.625rem 0;
  text-align: center;
}

.p-about__inner {
  margin-left: auto;
  max-width: 77.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    margin: 0 auto;
  }
}

.p-about__wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-about__wrap {
    flex-direction: column-reverse;
  }
}

.p-about__title-wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__title-wrap {
    margin-top: 1.25rem;
  }
}

.p-about__content-bg {
  background-color: #C8B3A6;
  border-radius: 0.625rem;
  margin-right: -2.5rem;
  margin-top: 2.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__content-bg {
    margin-right: 0;
    margin-top: 1.25rem;
    padding: 1.25rem;
  }
}

.p-about__content-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  left: 0;
  line-height: 2em;
  padding: 3.75rem 2.5rem;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-about__content-text {
    font-size: 0.875rem;
    padding: 1.25rem;
  }
}

.p-about__content-bg-img {
  max-height: 34.375rem;
  max-width: 60%;
  padding-top: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-about__content-bg-img {
    margin-left: calc(50% - 50vw);
    max-height: 25rem;
    max-width: 100%;
  }
}

.p-about__img {
  flex-shrink: 0;
  max-width: 34.8125rem;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    margin: 0 auto;
    max-width: 18.75rem;
  }
}

.p-about-swiper {
  margin-top: 11.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-swiper {
    margin-top: 6.25rem;
  }
}

.p-about-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.p-about-swiper .swiper-slide img {
  -o-object-fit: cover;
  aspect-ratio: 500/350;
  object-fit: cover;
  width: 100%;
}

/* voice
----------------------------------------------- */
.p-voice-swiper {
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper {
    margin-top: 1.875rem;
  }
}

.p-voice-swiper .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.p-voice-swiper .swiper-pagination {
  bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper .swiper-pagination {
    bottom: 2.5rem;
  }
}

.p-voice-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #557379;
  border: 1px solid #fff;
}

.p-voice-swiper__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper__button-wrap {
    margin-top: 3.75rem;
  }
}

.p-voice-swiper__button-wrap .swiper-button-prev,
.p-voice-swiper__button-wrap .swiper-button-next {
  background-color: #557379;
  border-radius: 50%;
  height: 3.125rem;
  position: relative;
  width: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper__button-wrap .swiper-button-prev,
  .p-voice-swiper__button-wrap .swiper-button-next {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.p-voice-swiper__button-wrap .swiper-button-next {
  margin-left: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper__button-wrap .swiper-button-next {
    margin-left: 6.25rem;
  }
}

.p-voice-swiper__button-wrap .swiper-button-prev::before,
.p-voice-swiper__button-wrap .swiper-button-next::before {
  border-right: 0.1875rem solid #fff;
  border-top: 0.1875rem solid #fff;
  content: "";
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper__button-wrap .swiper-button-prev::before,
  .p-voice-swiper__button-wrap .swiper-button-next::before {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.p-voice-swiper__button-wrap .swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.p-voice-swiper__button-wrap .swiper-button-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-point-list {
  -ms-grid-columns: calc((100% - 6.25rem) / 3) 3.125rem calc((100% - 6.25rem) / 3) 3.125rem calc((100% - 6.25rem) / 3);
  display: -ms-grid;
  display: grid;
  gap: 3.125rem;
  grid-template-columns: repeat(3, calc((100% - 6.25rem) / 3));
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-point-list {
    -ms-grid-columns: 1fr;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 1.875rem;
  }
}

.p-point__item {
  border: 0.625rem solid #C8B3A6;
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  padding: 0.625rem;
}

.p-point__item-icon {
  align-items: center;
  display: flex;
  height: 15.4375rem;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-point__item-icon {
    height: 7.9375rem;
  }
}

.p-point__item:nth-of-type(1) .p-point__item-icon {
  max-width: 9.856875rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(1) .p-point__item-icon {
    max-width: 6.25rem;
  }
}
.p-point__item:nth-of-type(2) .p-point__item-icon {
  max-width: 11.0175rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(2) .p-point__item-icon {
    max-width: 6.25rem;
  }
}
.p-point__item:nth-of-type(3) .p-point__item-icon {
  max-width: 11.0175rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(3) .p-point__item-icon {
    max-width: 6.25rem;
  }
}
.p-point__item:nth-of-type(4) .p-point__item-icon {
  max-width: 11.0175rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(4) .p-point__item-icon {
    max-width: 6.25rem;
  }
}
.p-point__item:nth-of-type(5) .p-point__item-icon {
  max-width: 12.113125rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(5) .p-point__item-icon {
    max-width: 6.25rem;
  }
}
.p-point__item:nth-of-type(6) .p-point__item-icon {
  max-width: 10.17rem;
}
@media screen and (max-width: 767px) {
  .p-point__item:nth-of-type(6) .p-point__item-icon {
    max-width: 6.25rem;
  }
}

.p-point__item-content {
  background-color: #C8B3A6;
  border-radius: 0.9375rem;
  color: #fff;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 0.9375rem 1.25rem;
}

.p-point__item-title {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point__item-title {
    font-size: 1.125rem;
  }
}

.p-point__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-point__item-text {
    font-size: 0.875rem;
  }
}
.p-point__item-text span {
  font-size: 0.75rem;
}

.p-collection__list {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-collection__list {
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.c-imgZoom {
  overflow: hidden;
  position: relative;
}
.c-imgZoom img {
  -o-object-fit: cover;
  object-fit: cover;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

@media screen and (min-width: 769px) {
  .c-imgZoom:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}
.p-flow {
  background-color: #1D454D;
  width: 100%;
}

.p-flow__img {
  margin: 6.25rem auto 0 auto;
  max-width: 56.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow__img {
    margin-top: 1.875rem;
  }
}

.p-voice__swiper .swiper-slide {
  height: auto;
  padding: 0.625rem;
}

.p-voice-swiper-container {
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 0.875rem;
  height: 100%;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-voice-swiper-container {
    flex-direction: column;
    gap: 0.3125rem;
  }
}

.p-voice__item-img {
  flex-shrink: 0;
  max-width: 20.840625rem;
  width: 100%;
}
.p-voice__item-img img {
  aspect-ratio: 333/293;
}

.p-voice__item-content {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}

.p-voice__item-account-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-account-wrap {
    align-items: start;
    flex-direction: column;
    gap: 0.3125rem;
  }
}

.p-voice__item-account {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.p-voice__item-account-icon {
  max-width: 2.3125rem;
  width: 100%;
}

.p-voice__item-account-name {
  font-size: 0.75rem;
}

.p-voice__item-account-follow {
  border: 0.03125rem solid #333;
  border-radius: 0.1875rem;
  font-size: 0.75rem;
  padding: 0.1875rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-account-follow {
    -ms-grid-row-align: end;
    align-self: end;
    padding: 0.125rem;
  }
}

.p-voice__item-text:first-of-type {
  border-top: 1px solid #333;
  padding-top: 0.625rem;
}
.p-voice__item-text:nth-last-child(2) {
  margin-top: 1em;
}

.p-voice__item-content-bottom {
  margin-top: 1em;
}

.p-voice__item-content-bottom-icon-wrap {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.p-voice__item-content-bottom-icon:nth-of-type(1) {
  max-width: 1.42875rem;
}
.p-voice__item-content-bottom-icon:nth-of-type(2) {
  max-width: 1.260625rem;
}

.p-voice__item-content-bottom-text {
  font-weight: 700;
  margin-top: 0.625rem;
}

.p-cta-bg {
  background: url(../img/cta-bg.webp) no-repeat center center/cover;
  padding: 6.25rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta-bg {
    background: url(../img/cta-bg_sp.webp) no-repeat center center/cover;
    padding: 2.5rem 0;
  }
}
.p-cta-bg::before {
  background: linear-gradient(to right, rgb(29, 69, 77) 27%, rgba(255, 255, 255, 0.15) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-cta__inner {
  position: relative;
  z-index: 3;
}

.p-cta__line {
  align-items: center;
  background-color: #06C755;
  border-radius: 0.625rem;
  display: inline-flex;
  padding: 0 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-cta__line {
    gap: 0.3125rem;
    padding: 0.625rem 0.625rem 0.625rem 0;
  }
}

.p-cta__line-icon {
  max-width: 7.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-cta__line-icon {
    max-width: 3.125rem;
  }
}

.p-cta__line-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cta__line-text {
    font-size: 0.875rem;
  }
}

.p-cta__text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 1.25rem;
  }
}
.p-cta__text span {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cta__text span {
    font-size: 1.625rem;
  }
}

/*--------------------------------
ページtop
--------------------------------*/
.js-scroll-fadein {
  opacity: 0;
  transition: opacity 1s;
  visibility: hidden;
  z-index: 9999;
}
.js-scroll-fadein.is-fadein {
  opacity: 1;
  visibility: visible;
}

.arrow {
  background-color: #c4c4c4;
  border-radius: 22px;
  bottom: 12px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  position: fixed;
  right: 12px;
  transition: all 0.2s ease-in-out;
}
.arrow:hover {
  bottom: 15px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}
.arrow:before {
  -webkit-transform: rotate(-45deg);
  border-right: solid 3px #fff;
  border-top: solid 3px #fff;
  content: "";
  height: 12px;
  left: 13px;
  position: absolute;
  transform: rotate(-45deg);
  width: 12px;
}
.arrow:before {
  top: 14px;
}
/*# sourceMappingURL=sourcemaps/style.css.map */