@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  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 {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
}

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1100px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #2C2500;
  letter-spacing: 0.1em;
}

picture {
  display: block;
}

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

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

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

.swiper-slide img {
  height: auto;
  width: 100%;
}

.l-common {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-common {
    margin-top: 6.25rem;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner-secondary {
  max-width: 798px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner-secondary {
    max-width: 600px;
    padding: 0 20px;
  }
}

.l-inner {
  max-width: 1100px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.l-main {
  margin-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 2.5rem;
  }
}

.l-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.c-bg {
  background: linear-gradient(129.74deg, #FFE3E2 0%, #FEAFC2 100%);
}

.c-bg-wrap {
  display: grid;
}

.c-bg.l-common {
  margin-top: 3.125rem;
}

.c-bg__img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  max-width: 56.5rem;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-btn {
  padding: 0.875rem 1.375rem;
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2.25rem;
  color: #FFF;
  background-color: #F29999;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.75rem;
  }
}

.c-btn.c-btn--white {
  color: #F29999;
  background-color: #FFF;
  border: solid 1px #FFF;
  padding: 0.875rem 3.5rem;
}

.c-btn.c-btn--orange {
  color: #FFF;
  background-color: #F3981C;
  padding: 0.875rem 1.375rem;
}

.c-btn.c-btn--news,
.c-btn.c-btn--event,
.c-btn.c-btn--press-release {
  font-size: 0.75rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.3125rem;
  color: #FFF;
}

.c-btn.c-btn--news {
  background-color: #F29999;
}

.c-btn.c-btn--event {
  background-color: #89D2FA;
}

.c-btn.c-btn--press-release {
  background-color: #A4ABD6;
}

.c-contact {
  background-image: -webkit-image-set(url("../images/common/footer-bg.webp") type("image/webp"), url("../images/common/footer-bg.jpg") type("image/jpg"));
  background-image: image-set(url("../images/common/footer-bg.webp") type("image/webp"), url("../images/common/footer-bg.jpg") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 5rem 1.25rem 2.875rem;
}
@media screen and (max-width: 767px) {
  .c-contact {
    background-position: center right;
  }
}

@media screen and (max-width: 767px) {
  .c-contact__content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem;
    margin: 0 auto;
    border-radius: 0.9375rem;
  }
}

.c-contact__content-text {
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .c-contact__content-text {
    margin-top: 1.25rem;
  }
}

.c-contact__btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-contact__btn {
    margin-top: 1.25rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .c-contact__btn .c-btn.c-btn--white {
    border: solid 1px #F29999;
  }
}

.c-contact__link-text {
  position: relative;
  font-size: 0.9375rem;
  color: #2C2500;
  margin-top: 1.5rem;
  margin-left: 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-contact__link-text {
    margin-top: 1.25rem;
    margin-left: 1.25rem;
  }
}

.c-contact__link-text::before {
  position: absolute;
  top: 0;
  left: -2.5rem;
  content: "";
  display: inline-block;
  width: 1.6875rem;
  height: 1.6875rem;
  background-color: #CC28B4;
}
@media screen and (max-width: 767px) {
  .c-contact__link-text::before {
    top: 0.1875rem;
    left: -1.625rem;
    width: 1.125rem;
    height: 1.125rem;
  }
}

.c-contact__link {
  color: #CC28B4;
}

.c-heading {
  width: 100%;
  text-align: center;
}

.c-heading.c-heading--left {
  text-align: left;
}

.c-heading.c-heading--right {
  text-align: right;
}

.c-heading__en-title {
  display: inline-block;
  position: relative;
  font-size: 2.5rem;
  font-family: "Zen Old Mincho", serif;
  background: linear-gradient(90deg, #F29999 2.59%, #89D2FA 54.5%, #CC28B4 102.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-heading__en-title {
    font-size: 1.625rem;
  }
}

.c-heading .c-heading__ja-title {
  margin-top: 0.625rem;
  color: #2C2500;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-heading .c-heading__ja-title {
    font-size: 0.75rem;
    margin-top: 0.375rem;
  }
}

.c-sub-mv .c-heading__ja-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-sub-mv .c-heading__ja-title {
    font-size: 1rem;
  }
}

.c-news__list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 1.25rem;
  padding: 0.9375rem 0 0.9375rem 1rem;
}
@media screen and (max-width: 767px) {
  .c-news__list a {
    padding: 1rem 0;
  }
}

.c-news__list a::after {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  display: block;
  width: 0.5rem;
  height: 0.8125rem;
  content: "";
  margin-right: 0.25rem;
  background: url("../images/common/news-list-arrow.svg") no-repeat center bottom/contain;
}

.c-news__list-item {
  border-bottom: dashed 1px #2C2500;
}

.c-news__list-text-wrapper {
  margin-top: 0.25rem;
  flex-grow: 1;
}

.c-news__list-information {
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-news__list-information {
    flex-direction: column;
  }
}

.c-news__list-title {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-news__list-title {
    font-size: 0.875rem;
  }
}

.c-news__list-date {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-news__list-date {
    font-size: 0.875rem;
  }
}

.c-news__list-new {
  max-width: 5.1875rem;
  font-size: 0.75rem;
  padding: 0.25rem 1.625rem;
  border-radius: 0.3125rem;
  color: #FFF;
  background-color: #F29999;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-news__list-new {
    margin-right: 0;
  }
}

.c-news__list-img {
  max-width: 7.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 122/69;
}

.c-sub-bg {
  background-image: -webkit-image-set(url("../images/sub/about-bg.webp") type("image/webp"), url("../images/sub/about-bg.png") type("image/jpg"));
  background-image: image-set(url("../images/sub/about-bg.webp") type("image/webp"), url("../images/sub/about-bg.png") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.c-sub-mv {
  padding: 3.375rem 0 1.125rem;
}

.c-sub-mv__heading.c-heading--right {
  padding-right: 0.9375rem;
}

.c-sub-mv .c-heading__ja-title {
  font-weight: 500;
}

.c-sub-mv__img {
  max-width: 65.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 0.625rem;
  border-radius: 0.9375rem;
}

.c-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.875rem;
  }
}

.c-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F29999;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.25rem;
  }
}

.c-varifran {
  max-width: 61.3125rem;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .c-varifran {
    max-width: 600px;
    padding: 0 20px;
  }
}

.c-varifran__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 3rem;
  background-color: #FCF8E8;
  padding: 3.625rem 3.625rem 5.375rem;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-varifran__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem 0;
    padding: 1.875rem;
  }
}

.c-varifran__wrap {
  flex-grow: 1;
  text-align: center;
}

.c-varifran__img {
  max-width: 25.6875rem;
}
@media screen and (max-width: 767px) {
  .c-varifran__img {
    max-width: 12.5rem;
  }
}

.c-varifran__text {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .c-varifran__text {
    font-size: 1rem;
  }
}

.c-varifran__btn {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-varifran__btn {
    margin-top: 1.875rem;
  }
}

.p-about-message-bg {
  padding-bottom: 6.25rem;
}

.p-about-message__flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 0 1.375rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__flex {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.875rem 0;
    margin-top: 1.875rem;
  }
}

.p-about-message__img-wrap {
  flex-grow: 1;
}

.p-about-message__img {
  max-width: 33.25rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__img {
    max-width: 60%;
    margin: 0 auto;
  }
}

.p-about-message__img-wrap-bottom {
  margin-top: 0.875rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__img-wrap-bottom {
    margin-top: 1.25rem;
    margin-right: 0;
  }
}

.p-about-message__name-wrap {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__name-wrap {
    flex-direction: column;
    gap: 0;
  }
}

.p-about-message__name-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #B1B1B1;
}
@media screen and (max-width: 767px) {
  .p-about-message__name-title {
    font-size: 0.75rem;
  }
}

.p-about-message__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C2500;
}
@media screen and (max-width: 767px) {
  .p-about-message__name {
    font-size: 1rem;
  }
}

.p-about-message__name-kana {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #F29999;
}
@media screen and (max-width: 767px) {
  .p-about-message__name-kana {
    font-size: 0.75rem;
  }
}

.p-about-message__text-wrap {
  width: 47%;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__text-wrap {
    width: 100%;
  }
}

.p-about-message__text-list {
  margin-top: 2.5rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-about-message__text-list {
    margin-top: 1.25rem;
  }
}

.p-about-message__text-list li {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-about-message__text-list li {
    font-size: 0.875rem;
  }
}

.p-about-message__text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-top: 1.9375rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-about-message__text {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

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

.c-btn.p-about-message__btn {
  padding: 0.875rem 2.625rem;
}

.p-about-message__list {
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__list {
    margin-top: 3.125rem;
  }
}

.p-about-message__list-item {
  display: flex;
  align-items: center;
  padding: 3.0625rem 3.125rem;
  border-bottom: solid 1px #2C2500;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-item {
    flex-direction: column;
    gap: 1.25rem 0;
    padding: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 399px) {
  .p-about-message__list-item {
    padding: 1.875rem 0;
  }
}

.p-about-message__list-item:first-child {
  border-top: solid 1px #2C2500;
}

.p-about-message__list-title {
  flex-grow: 1;
  font-size: 1.875rem;
  font-family: "Zen Old Mincho", serif;
  color: #818181;
  text-transform: uppercase;
}

.p-about-message__list-text-wrap {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-text-wrap {
    width: 100%;
  }
}

.p-about-message__list-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-text {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-message__list-text-wrap .c-text {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-message__list-text-wrap .c-title {
    font-size: clamp(1rem, 0.821rem + 0.8949vw, 1.25rem);
  }
}

.p-about-message__value-list:not(:first-child) {
  margin-top: 1.25rem;
}

.p-about-message__list-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-about-message__list-flex-title {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-flex-title {
    font-size: clamp(1rem, 0.821rem + 0.8949vw, 1.25rem);
  }
}

.p-about-message__list-flex-title::after {
  background-color: #2C2500;
  content: "";
  flex-grow: 1;
  height: 1px;
  margin: 0 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-flex-title::after {
    margin: 0 0.375rem;
  }
}

.p-about-message__list-flex-text {
  width: 60%;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-about-message__list-flex-text {
    font-size: 0.875rem;
  }
}

/* HEART */
.p-about-heart {
  background-color: #F7F1F1;
  padding: 3.75rem 0 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-heart {
    padding: 3.125rem 0;
  }
}

.p-about-heart__wrap {
  display: grid;
  place-content: center;
  place-items: center;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-about-heart__wrap {
    margin-top: 3.125rem;
  }
}

.p-about-heart__img {
  width: 100%;
  max-width: 14.3125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about-heart__text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-heart__text {
    margin-top: 1.875rem;
  }
}

/*OUTLINE*/
.p-about-outline {
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-outline {
    padding-bottom: 6.25rem;
  }
}

.p-about-outline__wrap {
  display: flex;
  gap: 0 1.875rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-about-outline__wrap {
    flex-direction: column;
    gap: 1.875rem 0;
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about-outline__map {
    text-align: center;
  }
}

.p-about-outline__map iframe {
  width: 100%;
  max-width: 26.4375rem;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .p-about-outline__map iframe {
    max-width: 100%;
  }
}

.p-about-outline__list {
  width: 100%;
  margin-top: 0.5rem;
}

.p-about-outline__list-item {
  display: flex;
  padding: 0.75rem 1.25rem;
  border-bottom: solid 1px #2C2500;
}

.p-about-outline__list-item:first-child {
  border-top: solid 1px #2C2500;
}

.p-about-outline__list-item dt,
.p-about-outline__list-item dd {
  font-size: 0.9375rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about-outline__list-item dt,
  .p-about-outline__list-item dd {
    font-size: 0.875rem;
  }
}

.p-about-outline__list-item dt {
  flex-grow: 1;
}

.p-about-outline__list-item dd {
  width: 75%;
}

.p-about-outline__map {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-about-outline__map {
    width: 100%;
  }
}

.p-contact {
  position: relative;
  padding-bottom: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-bottom: 3.125rem;
  }
}

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

.p-form__wrap + .p-form__wrap {
  margin-top: 2.5rem;
}

.p-form__label {
  font-size: 0.9375rem;
}

.p-form__wrap.p-form__wrap--textarea .p-form__label {
  margin-top: 0.625rem;
}

.p-form__input,
.p-form__select,
.p-form__radio,
.p-form__checkbox,
.p-form__textarea {
  margin-top: 0.625rem;
}

.p-form__submit {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__submit {
    margin-top: 1.875rem;
  }
}

.p-form-input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border: 1px solid #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
  border-radius: 0.625rem;
}

.p-form-input input:focus {
  border: 1px solid #F29999;
  box-shadow: none;
  outline: none;
}

/*select*/
.p-form-select select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1;
  border: 1px solid #FFF;
  border-radius: 0.625rem;
  background-image: url("../images/sub/contact-arrow.svg");
  background-repeat: no-repeat;
  background-size: 1.125rem;
  background-position: right 1.6875rem top 0.9375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.p-form-select select::-ms-expand {
  display: none;
}

.p-form-select select:focus {
  border: 1px solid #F29999;
  box-shadow: none;
  outline: none;
}

/*textarea*/
.p-form-textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  height: 21.875rem;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  border: 1px solid #FFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFF;
  background-image: none;
}

.p-form-textarea textarea:focus {
  border: 1px solid #F29999;
  box-shadow: none;
  outline: none;
}

/*checkbox*/
.p-contact__form-privacy {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0;
}

.p-contact__form-privacy input {
  display: none;
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: -1.0625rem;
  background: #FFF;
  border: 1px solid #FFF;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.p-contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 0.4375rem;
  left: -1.0625rem;
  transform: rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #F29999;
  border-left: 0.1875rem solid #F29999;
  transition: 0.3s;
  opacity: 0;
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact__form-privacy input + a {
  text-decoration: underline;
}

.p-contact__form-privacy input {
  border: solid 1px #FFF;
}

/*submit*/
.p-form-submit input {
  display: inline-block;
  background-image: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.p-form-submit .c-btn.c-btn--white {
  padding: 0.75rem 2.625rem;
  border: solid 1px #F29999;
}

.p-form-submit .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.p-form-submit input:hover,
.p-form-submit input:focus {
  outline: none;
}

.p-form-submit input:hover {
  opacity: 0.8;
}

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

.p-error {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  padding-top: 3.125rem;
  padding-bottom: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-error {
    padding-bottom: 3.125rem;
  }
}

.p-error__heading {
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  padding: 0 1.25rem;
  background: linear-gradient(90deg, #F29999 2.59%, #89D2FA 54.5%, #CC28B4 102.41%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-error__heading {
    font-size: 1.875rem;
  }
}

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

.p-error__text {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-error__text {
    text-align: left;
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

.p-error__btn {
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-error__btn {
    margin-top: 1.875rem;
  }
}

.home .p-footer {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .home .p-footer {
    margin-top: 6.25rem;
  }
}

.p-footer__top {
  background-color: #2B2B2B;
  padding: 2.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    padding: 1.5625rem 0;
  }
}

.p-footer__inner {
  margin: auto;
  padding: 0 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 0.9375rem;
  }
}

.p-footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    flex-direction: column;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 18.75rem;
  margin: initial;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 12.5rem;
    margin: auto;
  }
}

.p-footer__logo a {
  padding: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__logo a {
    display: block;
    padding: 0.625rem 0;
  }
}

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

.p-footer__nav {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    width: 100%;
  }
}

.p-footer__nav-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: right;
  gap: 0.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-items {
    gap: 0;
    justify-content: center;
  }
}

.p-footer__nav-item a {
  color: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9375rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    padding: 0.75rem;
    position: relative;
    display: block;
    line-height: 1;
    text-align: center;
  }
}

.p-footer__nav-item.p-footer__privacy-policy a {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.p-footer__privacy-policy a {
    font-size: 0.9375rem;
  }
}

.p-footer__copyright {
  display: block;
  width: 100%;
  color: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
  background-color: #F29999;
  padding: 0.9375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    line-height: 1;
    letter-spacing: 0.04em;
  }
}

.p-footer__copyright span {
  text-transform: uppercase;
}

.p-footer__links {
  width: 100%;
  display: flex;
  justify-content: right;
  gap: 0 0.875rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    margin-top: 0.9375rem;
  }
}
.p-footer__links a {
  width: 30px;
}

@media screen and (max-width: 767px) {
  .p-footer__link {
    max-width: 1.5625rem;
    max-height: 1.5625rem;
  }
}

.p-header {
  height: 4.625rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 2.5rem;
  }
}

.p-header__inner {
  padding: 0 2.0625rem 0 3.125rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 0 0 0.9375rem;
  }
}

.p-header__logo {
  max-width: 13.375rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 10.625rem;
  }
}

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

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

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

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

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

.p-header__nav-item a {
  padding: 0 1.25rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 2.5rem;
    height: inherit;
    background-color: #F29999;
    cursor: pointer;
    transition: 0.3s;
  }
}

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

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

.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) {
  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) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 14.25rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(242, 153, 153, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

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

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-header__drawer-item a {
    font-size: 1rem;
  }
}

.p-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-loading__wrap {
  display: grid;
  place-content: center;
  place-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.p-loading__sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
  margin-top: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-loading__sub-title {
    font-size: 1.25rem;
    margin-top: 0.625rem;
  }
}

.p-loading__title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
  margin-top: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-loading__title {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

.p-news-single {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single {
    padding-bottom: 6.25rem;
  }
}

.p-news-single__inner {
  margin-top: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__inner {
    margin-top: 3.125rem;
  }
}

.p-news-single__title {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.5rem;
  }
}

.p-news-single__img {
  width: 100%;
  border-radius: 0.9375rem;
  margin: 2.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__img {
    margin: 1.875rem auto 0;
  }
}

.p-news-single__content {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content {
    margin-top: 1.875rem;
  }
}

.p-news-single__content img {
  max-width: 36.5625rem;
  width: 100%;
  aspect-ratio: 585/329;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__content img {
    margin: 1.875rem auto 0;
  }
}

.p-news-single__content h1,
.p-news-single__content h2,
.p-news-single__content h3,
.p-news-single__content h4,
.p-news-single__content h5,
.p-news-single__content h6 {
  font-weight: 700;
  padding-left: 1rem;
  border-bottom: solid 1px #F29999;
  border-left: solid 0.375rem #F29999;
  margin-top: 4.3125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h1,
  .p-news-single__content h2,
  .p-news-single__content h3,
  .p-news-single__content h4,
  .p-news-single__content h5,
  .p-news-single__content h6 {
    margin-top: 3.125rem;
  }
}

.p-news-single__content h2 {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h2 {
    margin-top: 3.125rem;
  }
}

.p-news-single__content h3 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h3 {
    font-size: 1rem;
  }
}

.p-news-single__content h4 {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content h4 {
    font-size: 0.9375rem;
  }
}

.p-news-single__content p {
  font-size: 0.9375rem;
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content p {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

.p-news-single__content ul,
.p-news-single__content ol {
  list-style: revert-layer;
  margin-top: 2.125rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content ul,
  .p-news-single__content ol {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

.p-news-single__content li {
  padding-left: 0.625rem;
  margin-top: 0.625rem;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__content li {
    font-size: 0.875rem;
  }
}

.p-news-single__category-btn {
  color: #808080;
}

.p-news-single__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__pagination {
    margin-top: 3.125rem;
  }
}

.p-news-single__pagination-prev,
.p-news-single__pagination-next {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F29999;
}
@media screen and (max-width: 767px) {
  .p-news-single__pagination-prev,
  .p-news-single__pagination-next {
    font-size: clamp(0.688rem, 0.553rem + 0.67vw, 0.875rem);
  }
}

.p-news-single__pagination-placeholder {
  min-width: 10.3125rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__pagination-placeholder {
    min-width: 6.375rem;
  }
}

.p-news-single__pagination-next {
  justify-content: right;
}

.p-news-single__pagination-prev a,
.p-news-single__pagination-next a {
  display: flex;
  align-items: center;
  gap: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__pagination-prev a,
  .p-news-single__pagination-next a {
    gap: 0 0.5rem;
  }
}

.p-news-single__pagination-all {
  flex-grow: 1;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-news-single__pagination-all {
    font-size: clamp(0.688rem, 0.553rem + 0.67vw, 0.875rem);
  }
}

.p-news-single__pagination-prev,
.p-news-single__pagination-next {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F29999;
}

.p-news {
  padding-bottom: 13.4375rem;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 6.25rem;
  }
}

.p-news__btn-wrap {
  display: flex;
  justify-content: center;
  gap: 0 1.25rem;
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-news__btn-wrap {
    margin-top: 3.125rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem 0.375rem;
  }
}

.p-news__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin-top: 1.875rem;
  }
}

/*ナビゲーション*/
.navigation {
  margin-top: 1.875rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0 0.75rem;
}

.pagination__arrow {
  display: inline-block;
  width: 0.6875rem;
  height: 1.125rem;
}

.page-numbers {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  color: #F29999;
  border: 1px solid #F29999;
  border-radius: 50%;
}

.page-numbers.current {
  color: #FFF;
  background-color: #F29999;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.p-privacy-policy {
  padding-bottom: 5.8125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding-bottom: 3.125rem;
  }
}

.p-privacy-policy__inner {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__inner {
    margin-top: 3.125rem;
  }
}

.p-privacy-policy__list-item:not(:first-child),
.p-privacy-policy__list-flex-wrap {
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-item:not(:first-child),
  .p-privacy-policy__list-flex-wrap {
    margin-top: 1.875rem;
  }
}

.p-privacy-policy__list-item dt,
.p-privacy-policy__list-item dd {
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-item dt,
  .p-privacy-policy__list-item dd {
    font-size: 0.875rem;
  }
}

.p-privacy-policy__list-flex-wrap dt,
.p-privacy-policy__list-flex-wrap dd {
  font-size: 0.9375rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-flex-wrap dt,
  .p-privacy-policy__list-flex-wrap dd {
    font-size: 0.875rem;
  }
}

.p-privacy-policy__list-item dd {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__list-item dd {
    margin-top: 1.25rem;
  }
}

.p-privacy-policy__list-item ul {
  padding-left: 1.125rem;
}

.p-privacy-policy__list-item li::before {
  content: "・";
  margin-right: 0.3125rem;
}

.p-privacy-policy__list-flex {
  display: flex;
}

.p-privacy-policy__list-flex dt {
  width: 30%;
}

.p-privacy-policy__list-flex dd {
  flex-grow: 1;
}

.p-service {
  padding-bottom: 7.875rem;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding-bottom: 6.25rem;
  }
}

.p-service-business__list-inner {
  position: relative;
}

.p-service-business__list-bg {
  position: relative;
  z-index: 0;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__list-bg {
    margin-top: 3.125rem;
  }
}

.p-service-business__list-bg::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(129.74deg, #FFE3E2 0%, #FEAFC2 100%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-business__list-bg::before {
    height: 90%;
  }
}

.p-service-business__card {
  gap: 4.375rem 0;
}
@media screen and (max-width: 767px) {
  .p-service-business__card {
    gap: 2.5rem;
  }
}

.p-service-business__card-item {
  width: 76%;
  display: flex;
  border-radius: 0.9375rem;
  overflow: hidden;
  background-color: #FFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-service-business__card-item {
    width: 100%;
    flex-direction: column;
  }
}

.p-service-business__card-item:not(:first-child) {
  margin-top: 2.75rem;
}

.p-service-business__card-item:first-child {
  margin-right: auto;
}

.p-service-business__card-item:nth-of-type(2) {
  margin-left: auto;
  margin-right: auto;
}

.p-service-business__card-item:nth-of-type(3) {
  margin-left: auto;
}

.p-service-business__card-img {
  width: 100%;
  max-width: 21.1875rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-img {
    max-width: 100%;
    max-height: 17.5rem;
  }
}

.p-service-business__card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.875rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-content {
    margin-top: 0;
    padding: 1.25rem;
  }
}

.p-service-business__card-title {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
}

.p-service-business__card-title-sub-text {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  text-transform: capitalize;
}

.p-service-business__card-list {
  padding-left: 0.875rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-list {
    margin-top: 1.25rem;
  }
}

.p-service-business__card-list-item:not(:first-child) {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-list-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-service-business__card-wrap-title {
  display: flex;
  align-items: baseline;
  gap: 0 0.5rem;
  font-size: 1rem;
}

.p-service-business__card-wrap-title span {
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #F29999;
}

.p-service-business__card-wrap-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 0.5rem;
  margin-left: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-wrap-text {
    margin-top: 0.625rem;
    margin-left: 1.875rem;
  }
}

.p-service-business__card-wrap-quote {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.5rem;
  margin-left: 4.25rem;
  padding: 0 0.625rem;
  border-left: solid 2px #2C2500;
}
@media screen and (max-width: 767px) {
  .p-service-business__card-wrap-quote {
    margin-left: 3.125rem;
  }
}

/*BUSINESS PLAN*/
.p-service-plan__list {
  width: 43%;
  margin: 4.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-service-plan__list {
    width: 100%;
    margin: 3.125rem auto 0;
  }
}

.p-service-plan__list-item {
  display: flex;
}

.p-service-plan__list-item p {
  flex-grow: 1;
  font-size: 0.9375rem;
  font-weight: 400;
  border-left: solid 1px #2C2500;
  margin-left: -0.78125rem;
  padding-left: 3.125rem;
  padding-bottom: 3.25rem;
}
@media screen and (max-width: 767px) {
  .p-service-plan__list-item p {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 399px) {
  .p-service-plan__list-item p {
    padding-left: 1.25rem;
  }
}

.p-service-plan__list-item span {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #EA5550;
  border-radius: 50%;
}

.p-thanks {
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
  padding-bottom: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-bottom: 3.125rem;
  }
}

.p-thanks__heading {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__heading {
    font-size: 1.625rem;
  }
}

.p-top-concept {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept {
    padding-top: 6.25rem;
  }
}

.p-top-concept__text {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-concept__text {
    font-size: 1rem;
    margin-top: 1.875rem;
  }
}

.p-top-contents__flex {
  display: flex;
  align-items: flex-start;
  gap: 0 2.625rem;
  flex-direction: row-reverse;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-contents__flex {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.875rem 0;
    margin-top: 1.875rem;
  }
}

.p-top-contents__img {
  max-width: 32.5rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-contents__img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-contents__text-wrap {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .p-top-contents__text-wrap {
    width: 100%;
  }
}

.p-top-contents__text {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-contents__text {
    margin-top: 1.25rem;
  }
}

.p-top-contents__link-wrap {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-contents__link-wrap {
    margin: 1.875rem auto 0;
    text-align: center;
  }
}

.p-top-contents__btn {
  padding: 0.875rem 2.25rem;
}

.p-top-fv {
  background-image: -webkit-image-set(url("../images/top/fv-bg.webp") type("image/webp"), url("../images/top/fv-bg.png") type("image/jpg"));
  background-image: image-set(url("../images/top/fv-bg.webp") type("image/webp"), url("../images/top/fv-bg.png") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: grid;
  place-content: center;
  place-items: center;
  height: 100vh;
  min-height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    height: 100svh;
  }
}
@media screen and (max-width: 399px) {
  .p-top-fv {
    background-image: -webkit-image-set(url("../images/top/fv-bg-sp.webp") type("image/webp"), url("../images/top/fv-bg-sp.jpg") type("image/jpg"));
    background-image: image-set(url("../images/top/fv-bg-sp.webp") type("image/webp"), url("../images/top/fv-bg-sp.jpg") type("image/jpg"));
  }
}

.p-top-fv__wrap {
  display: grid;
  place-items: center;
  gap: 2rem 0;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-top-fv__wrap {
    width: 70%;
  }
}

.p-top-fv__img {
  max-width: 12.5625rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-top-fv__img {
    max-width: 60%;
  }
}

.p-top-fv__title {
  max-width: 38.8125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-fv__title {
    max-width: 100%;
  }
}

.p-top-news__wrap {
  display: flex;
  justify-content: space-between;
  gap: 0 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__wrap {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-news__wrap .c-heading.c-heading--left {
    text-align: center;
  }
}

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

.p-top-news__list {
  width: 100%;
}

.p-top-news__list-btn-wrap {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 1.875rem;
    margin-left: 0;
    text-align: center;
  }
}

.p-top-news__list-items {
  margin-top: 0.75rem;
  border-top: solid 1px #2C2500;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-items {
    padding: 0 1.25rem;
  }
}

.p-varifran__mv {
  background-image: -webkit-image-set("../images/sub/varifran-mv-bg.webp" type("image/webp"), url("../images/sub/varifran-mv-bg.jpg") type("image/jpg"));
  background-image: image-set("../images/sub/varifran-mv-bg.webp" type("image/webp"), url("../images/sub/varifran-mv-bg.jpg") type("image/jpg"));
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  aspect-ratio: 1440/694;
  display: grid;
  place-content: center;
  padding: 1.875rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv {
    padding: 3.125rem 1.5625rem;
    place-items: center;
  }
}

.p-varifran__mv-wrap {
  padding-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-wrap {
    padding-top: 0;
  }
}

.p-varifran__mv-wrap-flex {
  display: flex;
  gap: 0 2.375rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-wrap-flex {
    gap: 0 0.625rem;
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 399px) {
  .p-varifran__mv-wrap-flex {
    flex-direction: column;
  }
}

.p-varifran__mv-wrap-img {
  max-width: 16.0625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-wrap-img {
    max-width: 6.25rem;
  }
}

.p-varifran__mv-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  color: #FFF;
  text-shadow: 0px 0px 0.5rem #2C2500;
  line-height: 1.71;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-title {
    font-size: clamp(1rem, 0.7275rem + 1.0899vw, 1.25rem);
  }
}
@media screen and (max-width: 399px) {
  .p-varifran__mv-title {
    text-align: center;
    font-size: 1.125rem;
  }
}

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

.p-varifran__mv-btn-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-btn-text {
    font-size: 0.875rem;
  }
}

.c-btn.p-varifran__mv-btn {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F3981C;
  background-color: #FFF;
  margin-top: 1.125rem;
  padding: 0.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-btn.p-varifran__mv-btn {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-varifran__mv-btn-img {
  max-width: 1.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-varifran__mv-btn-img {
    max-width: 1.125rem;
    margin: 0.625rem auto 0;
  }
}

/*見出し*/
hgroup .p-varifran__heading {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  hgroup .p-varifran__heading {
    margin-top: 0.625rem;
  }
}

.p-varifran__heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-varifran__heading {
    font-size: 1.25rem;
  }
}

.p-varifran__sub-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F3981C;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-varifran__sub-heading {
    font-size: 1rem;
  }
}

/*就職活動のお悩み*/
.p-varifran__problem {
  position: relative;
  padding: 7.5rem 0 3.8125rem;
  background-color: #FCF8E8;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem {
    padding: 3.125rem 0;
  }
}

.p-varifran__problem::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -3.3125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9.4375rem;
  height: 5.3125rem;
  background-color: #FCF8E8;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-varifran__problem-card {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem-card {
    margin-top: 3.125rem;
  }
}

.p-varifran__problem-card-list {
  display: grid;
  gap: 0.875rem 1.875rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem-card-list {
    gap: 1.875rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-varifran__problem-card-item {
  width: 100%;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem-card-item {
    gap: 0.625rem 0;
    justify-content: center;
  }
}

.p-varifran__problem-card-comment {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  background-color: #E6E2E2;
  padding: 2.8125rem 0;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem-card-comment {
    font-size: 0.875rem;
    min-width: 16.875rem;
    padding: 1.875rem 0;
  }
}

.p-varifran__problem-card-comment::after {
  content: "";
  background: url("../images/sub/varifran-icon1.svg") no-repeat center center/contain;
  width: 1.5rem;
  height: 1.9375rem;
  position: absolute;
  left: 3.125rem;
  bottom: -3.125rem;
}

.p-varifran__problem-card-img {
  max-width: 9.375rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto auto 0;
}

.p-varifran__problem-card-text {
  text-align: center;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.86;
}
@media screen and (max-width: 767px) {
  .p-varifran__problem-card-text {
    font-size: 0.875rem;
  }
}

/*サービス内容*/
.p-varifran__service-card {
  margin-top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card {
    margin-top: 3.125rem;
  }
}

.p-varifran__service-card-item {
  display: flex;
  gap: 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-item {
    flex-direction: column;
    gap: 1.875rem 0;
  }
}

.p-varifran__service-card-item:not(:first-child) {
  margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-item:not(:first-child) {
    margin-top: 3.125rem;
  }
}

.p-varifran__service-card-img {
  max-width: 26.6875rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.9375rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-img {
    max-width: 100%;
  }
}

.p-varifran__service-card-wrap {
  flex-grow: 1;
}

.p-varifran__service-card-sub-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #8E8E8E;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-sub-title {
    font-size: 1.5rem;
  }
}

.p-varifran__service-card-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.3125rem;
  line-height: 1.83;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-title {
    font-size: 1.5rem;
    margin-top: 0.625rem;
    line-height: 1.5;
  }
}

.p-varifran__service-card-text {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.86;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-varifran__service-card-program {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 900;
  color: #F3981C;
  letter-spacing: 0.05em;
  line-height: 1.86;
  text-transform: uppercase;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-program {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-varifran__service-card-program::after {
  background-color: #2C2500;
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 0.75rem;
}

.p-varifran__service-card-list {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.86;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__service-card-list {
    font-size: 0.875rem;
  }
}

.p-varifran__service-card-list li::before {
  content: "・";
  margin-right: 0.3125rem;
}

/*エントリー*/
.p-varifran__entry {
  background-color: #FCF8E8;
  padding: 7.5rem 0 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry {
    padding: 3.125rem 0;
  }
}

.p-varifran__entry-heading {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.71;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-heading {
    font-size: clamp(1.125rem, 0.7671rem + 1.7897vw, 1.625rem);
  }
}

.p-varifran__entry-wrap {
  display: flex;
  gap: 0 4.875rem;
  align-items: center;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-wrap {
    flex-direction: column;
    gap: 1.875rem 0;
    margin-top: 1.875rem;
  }
}

.p-varifran__entry-img {
  max-width: 25.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-varifran__entry-list {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-list {
    width: 100%;
  }
}

.p-varifran__entry-list-item {
  display: flex;
  gap: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-list-item {
    gap: 0 0.875rem;
  }
}

.p-varifran__entry-list-item dt,
.p-varifran__entry-list-item dd {
  font-size: 0.9375rem;
  padding: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-list-item dt,
  .p-varifran__entry-list-item dd {
    font-size: clamp(0.75rem, 0.6605rem + 0.4474vw, 0.875rem);
    padding: 0.5rem;
  }
}

.p-varifran__entry-list-item dt {
  width: 17%;
  border-bottom: solid 2px #F3981C;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-list-item dt {
    width: 20%;
    min-width: 5.25rem;
  }
}

.p-varifran__entry-list-item dd {
  flex-grow: 1;
  border-bottom: solid 2px #C1C1C1;
}

.p-varifran__entry-btn {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-btn {
    margin-top: 3.125rem;
  }
}

.p-varifran__entry-btn .c-btn.c-btn--orange {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.875rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__entry-btn .c-btn.c-btn--orange {
    font-size: 1rem;
  }
}

/*スライダー*/
.p-varifran__message {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-varifran__message {
    padding-bottom: 6.25rem;
  }
}

.p-varifran__message-wrap {
  position: relative;
  max-width: 36.875rem;
  width: 100%;
  margin: 1.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-varifran__message-wrap {
    margin: 1.875rem auto 0;
  }
}

.p-varifran__message-slider-img {
  border-radius: 0.9375rem;
}

.p-varifran__message-title {
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  margin-top: 1.25rem;
}

.p-varifran__message-text {
  width: 86%;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0.625rem auto 0;
}

.p-varifran__message-slider-wrap {
  position: relative;
}

.p-slider__button-next,
.p-slider__button-prev {
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  top: 43%;
  z-index: 2;
}
@media screen and (max-width: 399px) {
  .p-slider__button-next,
  .p-slider__button-prev {
    width: 1rem;
    height: 1rem;
  }
}

.p-slider__button-next {
  left: -3.125rem;
  background: url("../images/sub/varifran-arrow-left.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-slider__button-next {
    left: -1.25rem;
  }
}

.p-slider__button-prev {
  right: -3.125rem;
  background: url("../images/sub/varifran-arrow-right.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-slider__button-prev {
    right: -1.25rem;
  }
}

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

.u-sm {
  display: none;
}
@media screen and (max-width: 399px) {
  .u-sm {
    display: block;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
