@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  word-break: break-all;
  text-decoration: none;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

.g-font-title {
  font-size: clamp(24px, 1.2rem + 2vw, 40px);
  color: #E17580;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 4px;
}

.g-front-heading {
  text-align: center;
  color: #E17581;
  font-size: clamp(24px, 1.2rem + 2vw, 50px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 5px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (width <= 768px) {
  .g-front-heading {
    letter-spacing: 2px;
  }
}

.g-font-text {
  font-size: clamp(14px, 14px + 4 * (100vw - 375px) / 825, 18px);
  color: #745454;
  font-weight: 400;
  line-height: 182%;
}

.g-font-ltext {
  font-size: clamp(16px, 1.2rem + 1vw, 22px);
  color: #745454;
  font-weight: 400;
  line-height: 240%;
}

.g-font-mtext {
  color: #745454;
  text-align: center;
  font-size: clamp(16px, 1.2rem + 0.6vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}

:root {
  --breadcrumb-color: #222222;
  --header-height: 88px; /* ヘッダー - 高さ */
  --header-top: 2.4rem; /* ヘッダー - 上余白 */
  --inline-guideline: clamp(80px, 10vw, 160px); /* コンテンツガイド */
  --contents-spacer: 120px; /* コンテンツ間隔 */
}
@media screen and (width <= 959px) {
  :root {
    --header-height: 60px; /* ヘッダー - 高さ */
  }
}
@media screen and (width <= 767px) {
  :root {
    --header-top: 0px; /* ヘッダー - 上余白 */
    --inline-guideline: clamp(10px, 4vw, 80px); /* コンテンツガイド */
    --contents-spacer: 104px; /* コンテンツ間隔 */
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #222222;
  min-height: 100vh;
  background-color: #ffffff;
}
@media screen and (width <= 767px) {
  body {
    font-size: 1.4rem;
  }
}

img,
svg {
  vertical-align: bottom;
}

* {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #745454;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-weight: 500;
}

.sp-only {
  display: none;
}
@media screen and (width <= 767px) {
  .sp-only {
    display: unset;
  }
}

.off {
  pointer-events: none;
  opacity: 0.3;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -webkit-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 90px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: var(--header-height, 0);
  padding: 0px 18px;
  background: #fff;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  width: 97%;
  margin-top: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50px;
  height: 70px;
}
@media screen and (width <= 1000px) {
  .l-header {
    height: 60px;
  }
}
.l-header__inner {
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.l-header__main {
  grid-column: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, 0.625vw, 2rem);
     -moz-column-gap: clamp(1rem, 0.625vw, 2rem);
          column-gap: clamp(1rem, 0.625vw, 2rem);
}
@media screen and (width <= 1000px) {
  .l-header__logo {
    width: auto;
  }
}
@media screen and (width <= 767px) {
  .l-header__logo {
    height: auto;
  }
}
.l-header__logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 20px;
  color: #e17580;
}
@media screen and (width <= 1085px) {
  .l-header__logo-link {
    font-size: 18px;
    gap: 10px;
  }
}
.l-header__logo-link > img {
  width: auto;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (width <= 767px) {
  .l-header__logo-link > img {
    height: 50px;
  }
}
.l-header__logo-tag {
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #222222;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (width <= 767px) {
  .l-header__logo-tag {
    font-size: 1.2rem;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (width <= 1350px) {
  .l-header__menu {
    gap: 15px;
  }
}
@media screen and (width <= 1000px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 1350px) {
  .l-header__nav {
    gap: 15px;
  }
}
@media screen and (width <= 1085px) {
  .l-header__nav {
    gap: 10px;
  }
}
.l-header__nav-item a {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (width <= 1350px) {
  .l-header__nav-item a {
    font-size: 14px;
  }
}
@media screen and (width <= 1150px) {
  .l-header__nav-item a {
    font-size: 13px;
  }
}
@media screen and (width <= 1085px) {
  .l-header__nav-item a {
    font-size: 12px;
  }
}
.l-header__nav-item:hover {
  opacity: 0.7;
}
@media screen and (width <= 1350px) {
  .l-header .c-btn-main.-contact {
    padding-right: 45px;
    font-size: 14px;
    padding: 7px 12px;
    padding-right: 40px;
  }
}
.l-header_toggleDrawer {
  display: none;
}
@media screen and (width <= 1000px) {
  .l-header_toggleDrawer {
    z-index: 1001;
    display: block;
    position: relative;
    height: 100%;
    aspect-ratio: 1;
    cursor: pointer;
    position: absolute;
    background: #D78C94;
    border-radius: 50px;
    width: 49px;
    height: 49px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 7px;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn {
    all: unset;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    display: block;
    position: absolute;
    top: -3.5px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 27px;
    height: 1px;
    margin: auto;
    background-color: #fff;
    border-radius: 50px;
    -webkit-transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -16px;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: none;
    top: 2.5px;
    text-align: center;
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:first-child {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:nth-child(2) {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:last-child {
    opacity: 0;
  }
}

.l-spmenu {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1000;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.l-spmenu.open {
  display: block;
  z-index: 1000;
  opacity: 1;
  pointer-events: auto;
}
.l-spmenu-nav {
  padding: 24px 5% 120px;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
}
.l-spmenu .l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-size: 18px;
  padding: 0;
  width: 100%;
}
.l-spmenu .l-header__tell {
  display: block;
  margin-top: 40px;
}
.l-spmenu .l-header__tell-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
}
.l-spmenu .l-header__tell-link img {
  width: 33px;
}
.l-spmenu .l-header__tell-text {
  font-size: 14px;
}
.l-spmenu nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 25px;
  max-width: 666px;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width <= 767px) {
  .l-spmenu nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-spmenu nav a {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  padding-right: 44px;
  position: relative;
  display: block;
  border-bottom: 1px solid #E2CFD1;
}
.l-spmenu nav a:hover {
  opacity: 0.7;
}
@media screen and (width <= 767px) {
  .l-spmenu nav a {
    font-size: 16px;
  }
}
.l-spmenu nav a:before {
  position: absolute;
  right: 0;
  content: "";
  width: 17px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D78C94;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-spmenu .c-btn-main.-contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
}
.l-spmenu .c-btn-special {
  margin-top: 25px;
  position: relative;
  bottom: unset;
  right: unset;
  max-width: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
  margin-right: 0;
}
.l-spmenu .c-btn-special img {
  width: 66px;
}
.l-spmenu .c-btn-special .c-btn-special__title {
  margin: 0;
}
@media screen and (width <= 767px) {
  .l-spmenu .c-btn-special {
    position: relative;
    width: calc(100% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-left: 0;
  }
  .l-spmenu .c-btn-special figure {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
  }
  .l-spmenu .c-btn-special figure img {
    width: 48px;
  }
}
.l-spmenu .l-footer__privacy {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block !important;
}

.l-spmenu .c-btn-main.-contact {
  font-size: 16px;
}

.l-header__other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-header__other .-company {
  font-size: 14px;
  min-width: 210px;
  padding: 5px 20px;
  line-height: 1.5;
}
.l-header__other .-contact {
  color: #FEFEFE;
  background: #D78C94;
  font-size: 16px;
  min-width: unset;
  padding: 9px 17px;
  padding-right: 40px;
}

.l-footer {
  overflow: hidden;
  border-radius: 25px 25px 0 0;
  background: #FFF;
  margin-top: -50px;
  padding-top: 60px;
  z-index: 1;
  position: relative;
}
.l-footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 26px;
}
@media screen and (width <= 767px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
}
.l-footer__logo {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: calc(95% - 350px);
}
@media screen and (width <= 767px) {
  .l-footer__logo {
    width: 100%;
  }
}
.l-footer__logo > img {
  width: 200px;
}
@media screen and (width <= 959px) {
  .l-footer__logo > img {
    width: 180px;
  }
}
@media screen and (width <= 767px) {
  .l-footer__logo > img {
    margin: 0 auto;
  }
}
.l-footer__logo .c-btn-main.-contact {
  margin-top: 48px;
}
@media screen and (width <= 767px) {
  .l-footer__logo .c-btn-main.-contact {
    display: none;
  }
}
.l-footer nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 25px;
  max-width: 666px;
}
@media screen and (width <= 767px) {
  .l-footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer nav a {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  padding-right: 44px;
  position: relative;
  display: block;
  border-bottom: 1px solid #E2CFD1;
}
.l-footer nav a:hover {
  opacity: 0.5;
}
@media screen and (width <= 767px) {
  .l-footer nav a {
    font-size: 16px;
  }
}
.l-footer nav a:before {
  position: absolute;
  right: 0;
  content: "";
  width: 17px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D78C94;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__nav .l-footer__privacy {
  display: none;
}
@media screen and (width <= 767px) {
  .l-footer__nav .l-footer__privacy {
    display: block;
    margin: 30px 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.l-footer__nav .c-btn-main.-contact {
  margin-left: auto;
  font-size: 20px;
}
.l-footer__nav .c-btn-main.-contact:before {
  width: 17px;
  height: 14px;
}
@media screen and (width <= 767px) {
  .l-footer__nav .c-btn-main.-contact {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    font-size: 16px;
  }
}
.l-footer__nav .c-btn-special {
  margin-top: 40px;
  position: relative;
  bottom: unset;
  right: unset;
  max-width: 350px;
  width: 100%;
  padding-right: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: 31px;
}
.l-footer__nav .c-btn-special img {
  width: 66px;
}
.l-footer__nav .c-btn-special .c-btn-special__title {
  margin: 0;
}
@media screen and (width <= 767px) {
  .l-footer__nav .c-btn-special {
    position: relative;
    width: calc(100% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-left: 0;
  }
  .l-footer__nav .c-btn-special figure {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
  }
  .l-footer__nav .c-btn-special figure img {
    width: 48px;
  }
}
.l-footer__copyright {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  padding-bottom: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 767px) {
  .l-footer__copyright {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
}
.l-footer__privacy {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 30.4px */
  padding-right: 35px;
  position: relative;
  text-decoration: underline;
}
.l-footer__privacy:hover {
  opacity: 0.5;
}

.l-glb-menu {
  position: fixed;
  z-index: 9990;
  top: 0px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  height: 100dvh;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  translate: 100% 0;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
}
.l-glb-menu.is-active {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}
.l-glb-menu__wrapper {
  overflow: clip;
  width: min(800px, 100%);
  min-height: 100%;
  padding-block: calc(var(--header-height, 0) + var(--header-after, 0)) 56px;
  -ms-overflow-style: none;
}
.l-glb-menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 767px) {
  .l-glb-menu__wrapper {
    padding-inline: var(--inline-outer-size, 0);
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
}
body {
  background: #FFFCF4;
}

.l-main {
  position: relative;
  width: 100%;
  padding-top: var(--header-height, 0);
  padding-bottom: var(--footer-before, 0);
}

.l-section__main {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.l-page-head {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (width <= 767px) {
  .l-page-head {
    margin-bottom: 60px;
  }
}
.l-page-head__inner {
  position: relative;
}
.l-page-head__inner:before {
  position: absolute;
  content: "";
  background-image: url("../images/page/pattern_01.png");
  width: 241.953px;
  height: auto;
  aspect-ratio: 4/3;
  background-size: cover;
  bottom: -220px;
  left: -120px;
  z-index: -1;
}
.l-page-head__inner:after {
  position: absolute;
  content: "";
  background-image: url("../images/page/pattern_02.png");
  width: 500px;
  height: auto;
  aspect-ratio: 4/3;
  background-size: cover;
  bottom: -380px;
  right: -270px;
  z-index: -1;
}
.l-page-head__title {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (width <= 767px) {
  .l-page-head__title {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.l-page-head__title > .ja {
  position: relative;
  color: #E17580;
  font-size: 50px;
  font-weight: 500;
  line-height: 150%; /* 75px */
  letter-spacing: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 959px) {
  .l-page-head__title > .ja {
    font-size: 40px;
  }
}
@media screen and (width <= 767px) {
  .l-page-head__title > .ja {
    letter-spacing: 2px;
    font-size: 30px;
  }
}
.l-page-head__title > .ja img {
  position: absolute;
  top: -15px;
  right: -65px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .l-page-head__title > .ja img {
    width: 130px;
    right: -25px;
  }
}
.l-page-head__breadcrumb {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 1px;
  border-bottom: 1px dashed #F4D4D4;
}

.l-page-top {
  margin-top: 200px;
  padding-bottom: 200px;
}
@media screen and (width <= 767px) {
  .l-page-top {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}

.g-font-page__title {
  color: #E17580;
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 12px;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (width <= 767px) {
  .g-font-page__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 35px;
  }
}

.g-font-page__text {
  color: #745454;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 182%;
  margin-bottom: 30px;
}
@media screen and (width <= 767px) {
  .g-font-page__text {
    font-size: 14px;
  }
}

.p-no-page__btn .c-btn-main {
  margin: 0 auto;
}

.l-gift-contact .l-form__accept-label a {
  margin-left: 7px !important;
}

@media screen and (width <= 767px) {
  .l-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-service-understand__card {
  overflow: hidden;
}

.l-section {
  width: 100%;
  padding-inline: var(--inline-outer-size, 0);
}
.l-section__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
  width: 90%;
  max-width: 1500px;
}
.l-cta {
  margin-top: 230px;
  border-radius: 25px;
  background: #F6F3EA;
  padding-top: 110px;
  padding-bottom: 120px;
}
@media screen and (width <= 767px) {
  .l-cta {
    margin-top: 200px;
  }
}
.l-cta__link {
  border-radius: 20px;
  background: #D78C94;
  display: block;
  padding: 45px 5% 40px;
  margin-top: -220px;
  height: 220px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-cta__link:hover {
  background: #F8C0C6;
}
@media screen and (width <= 767px) {
  .l-cta__link {
    padding: 16px 25px;
  }
}
.l-cta__link .cta {
  position: absolute;
  right: -70px;
  top: 15px;
}
@media screen and (width <= 767px) {
  .l-cta__link .cta {
    top: unset;
    bottom: -15%;
    width: 150%;
    max-width: none;
  }
}
.l-cta__link:before {
  position: absolute;
  right: 70px;
  content: "";
  width: 47px;
  height: 38px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
@media screen and (width <= 767px) {
  .l-cta__link:before {
    -webkit-transform: unset;
            transform: unset;
    top: 22px;
    width: 24px;
    height: 19px;
    right: 28px;
  }
}
.l-cta__title {
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 20px;
}
@media screen and (width <= 767px) {
  .l-cta__title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.l-cta__text {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  padding-right: 90px;
  position: relative;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .l-cta__text {
    padding: 0;
    font-size: 14px;
    line-height: 1.75;
  }
}
.l-cta__login {
  border-radius: 25px;
  background: #FFF;
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 5%;
  gap: 10%;
}
@media (max-width: 1200px) {
  .l-cta__login {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (width <= 767px) {
  .l-cta__login {
    gap: 0;
    padding: 28px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-cta__login-textarea {
  width: 100%;
}
@media (max-width: 1200px) {
  .l-cta__login-textarea {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.l-cta__login-title {
  color: #745454;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (width <= 959px) {
  .l-cta__login-title {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media screen and (width <= 767px) {
  .l-cta__login-title {
    text-align: center;
  }
}
.l-cta__login-text {
  text-align: left;
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31.5px;
  margin-bottom: 20px;
}
@media screen and (width <= 767px) {
  .l-cta__login-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
  }
}
.l-cta__login-link {
  display: block;
  margin-top: 50px;
  color: #E17580;
  font-size: 20px;
  font-weight: 500;
  line-height: 175%; /* 35px */
  padding-right: 60px;
  position: relative;
  padding-bottom: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-cta__login-link:hover {
  opacity: 0.5;
}
@media screen and (width <= 959px) {
  .l-cta__login-link {
    font-size: 18px;
    padding-right: 40px;
  }
}
@media screen and (width <= 767px) {
  .l-cta__login-link {
    font-size: 14px;
    margin: 20px auto 30px;
  }
}
.l-cta__login-link:before {
  position: absolute;
  right: 0;
  content: "";
  width: 17px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D78C94;
  top: 50%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}
.l-cta__login-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  background-image: -webkit-repeating-linear-gradient(left, #E2CFD1 0, #E2CFD1 8px, transparent 8px, transparent 16px);
  background-image: repeating-linear-gradient(to right, #E2CFD1 0, #E2CFD1 8px, transparent 8px, transparent 16px);
  display: block;
}
.l-cta__login-btnarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (width <= 767px) {
  .l-cta__login-btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.l-cta__login-forget {
  color: #E17580;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 1.6px;
  border-bottom: 1px dashed;
  margin: 24px 0 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-cta__login-forget:hover {
  opacity: 0.5;
}
.l-cta__login form {
  max-width: 550px;
  margin: 0;
  width: 100%;
}
@media screen and (width <= 767px) {
  .l-cta__login form {
    width: 100%;
  }
}
.l-cta__login-input {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #D78C94;
  background: #fff;
  padding: 8px 15px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}
.l-cta__login .c-btn-main {
  margin: 30px 0 0;
  width: 250px;
  min-width: unset;
  cursor: pointer;
}
@media screen and (width <= 767px) {
  .l-cta__login .c-btn-main {
    margin: 25px auto 0;
  }
}
.l-cta__login #login-submit {
  display: none;
}

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

.p-member-head.p-about-head {
  gap: 7.5%;
  margin-bottom: 120px;
}
@media screen and (width <= 959px) {
  .p-member-head.p-about-head {
    gap: 30px;
  }
}
@media screen and (width <= 959px) {
  .p-member-head.p-about-head {
    margin-bottom: 50px;
  }
}
.p-member-head.p-about-head .p-page__heading {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.p-member-pick.p-front-topics {
  width: 100vw;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .p-member-pick.p-front-topics {
    width: 90vw;
  }
}
.p-member-pick.p-front-topics .l-section__inner {
  width: 100%;
  margin: 0 auto;
}
.p-member-pick.p-front-topics .p-front-topics__swiper {
  overflow: unset;
}
.p-member-pick.p-front-topics .c-card__article-link {
  border-radius: 24px;
  border: 5px solid #F6F3EA;
  background: #FFF;
  padding: 30px;
}
@media screen and (width <= 767px) {
  .p-member-pick.p-front-topics .c-card__article-link {
    padding: 20px 5%;
  }
}
.p-member-pick.p-front-topics .c-card__article-view {
  bottom: 30px;
  right: 30px;
  padding: 0;
  border-bottom: 1px dashed #D78C94;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (width <= 767px) {
  .p-member-pick.p-front-topics .c-card__article-view {
    bottom: 0;
    right: 0;
  }
  .p-member-pick.p-front-topics .c-card__article-view svg {
    display: block;
  }
  .p-member-pick.p-front-topics .c-card__article-view:before {
    display: none;
  }
}
.p-member-pick.p-front-topics .swiper-slide {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.p-member-pick.p-front-topics .swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-member-pick.p-front-topics .p-front-salary__progress-wrap {
  margin: 0 auto;
  width: 90%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-member-pick.p-front-topics .l-archive__list {
  margin: 30px 0 20px;
}
@media screen and (width <= 767px) {
  .p-member-pick.p-front-topics .l-archive__list {
    margin-bottom: 0;
  }
}
.p-member-pick.p-front-topics .c-card__article-pick {
  color: #E17580;
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 75px */
  letter-spacing: 4px;
  position: absolute;
  top: -48px;
  right: 30px;
}
@media screen and (width <= 959px) {
  .p-member-pick.p-front-topics .c-card__article-pick {
    font-size: 40px;
    top: -38px;
    right: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-member-pick.p-front-topics .c-card__article-pick {
    font-size: 30px;
    top: -29px;
    right: 5%;
  }
}

@media (max-width: 599px) {
  .p-member-pick.p-front-topics .p-front-topics__swiper .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-member-pick.p-front-topics .p-front-salary__progress-bar, .p-member-pick.p-front-topics .p-front-salary__progress-count, .p-member-pick.p-front-topics .p-front-salary__progress-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-member-pick.p-front-topics .p-front-topics__swiper .swiper-slide {
    margin-bottom: 0;
  }
}
.p-member-topics.p-front-topics {
  width: 90%;
  margin: 0 auto;
  margin-top: 120px;
}
.p-member-topics.p-front-topics .g-front-heading {
  text-align: center;
}
.p-member-topics.p-front-topics .faq {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.5;
  top: -50px;
  width: 500px;
  z-index: -1;
}
.p-member-topics.p-front-topics .l-archive__list {
  margin-top: 100px;
  gap: 80px 8%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 959px) {
  .p-member-topics.p-front-topics .l-archive__list {
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.p-member-topics.p-front-topics .c-card__article {
  width: 46%;
}
@media screen and (width <= 959px) {
  .p-member-topics.p-front-topics .c-card__article {
    width: 100%;
  }
}
.p-member-topics.p-front-topics .c-card__article-view svg {
  display: none;
}
@media screen and (width <= 959px) {
  .p-member-topics.p-front-topics .c-card__article-view:before {
    display: none;
  }
  .p-member-topics.p-front-topics .c-card__article-view {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin-left: auto;
    border-bottom: 1px dashed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .p-member-topics.p-front-topics .c-card__article-view svg {
    display: block;
  }
  .p-member-topics.p-front-topics .c-card__article-title {
    height: auto;
  }
}

@media (max-width: 599px) {
  .p-member-topics.p-front-topics .c-btn-main {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .p-member-topics.p-front-topics .faq {
    display: none;
  }
}
.p-member-pick .c-card__article-view:before {
  display: none;
}

@media (max-width: 389px) {
  .c-card__member-category {
    font-size: 13px;
  }
}
.l-single {
  width: 90%;
  margin: 70px auto 0;
}
@media screen and (width <= 767px) {
  .l-single {
    margin-top: 35px;
  }
}
.l-single__head {
  max-width: 960px;
  margin: 0 auto;
}
.l-single__title {
  color: #745454;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  margin: 22px 0 60px;
}
@media screen and (width <= 959px) {
  .l-single__title {
    font-size: 22px;
    padding-bottom: 12px;
  }
}
@media screen and (width <= 767px) {
  .l-single__title {
    font-size: 20px;
    margin: 15px 0 0px;
  }
}
.l-single__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-single__category {
  font-size: 14px;
  font-weight: 500;
  background: #FFAA36;
  color: #F8F4EF;
  border-radius: 5px;
  padding: 1px 20px;
}
.l-single__date {
  font-weight: 500;
}
.l-single__thumbnail {
  max-width: 750px;
  margin: 70px auto 60px;
}
@media screen and (width <= 959px) {
  .l-single__thumbnail {
    margin: 35px 0 30px;
  }
}
.l-single__thumbnail img {
  width: 100%;
  height: auto;
}
.l-single__content {
  max-width: 960px;
  margin: 0 auto;
}
.l-single__content p {
  margin-bottom: 15px;
}
.l-single__content img {
  display: block;
  max-width: 750px;
}
@media screen and (width <= 959px) {
  .l-single__content img {
    max-width: 100%;
  }
}
.l-single__content h2 {
  margin-top: 60px;
  margin-bottom: 30px;
  border-left: 4px solid #E17580;
  padding-left: 20px;
  color: #745454;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
  border-bottom: 1px dashed #E17580;
}
@media screen and (width <= 959px) {
  .l-single__content h2 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
@media screen and (width <= 767px) {
  .l-single__content h2 {
    font-size: 18px;
    margin-top: 15px;
  }
}
.l-single__content h3 {
  margin-top: 40px;
  margin-bottom: 28px;
  border-left: 4px solid #E17580;
  padding-left: 20px;
  color: #745454;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
}
@media screen and (width <= 959px) {
  .l-single__content h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.l-single__content h4 {
  margin-top: 30px;
  margin-bottom: 24px;
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
  border-bottom: 1px dashed #E17580;
}
@media screen and (width <= 767px) {
  .l-single__content h4 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.l-single__content h5 {
  margin-top: 30px;
  margin-bottom: 24px;
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .l-single__content h5 {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.l-single__content p {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}
@media screen and (width <= 767px) {
  .l-single__content p {
    font-size: 14px;
  }
}
.l-single__content .c-btn-main {
  margin: 50px auto 0;
}
.l-single__content strong {
  font-weight: bold;
}
.l-single__content p a {
  color: #2271b1;
  text-decoration: underline;
}
.l-single__new {
  margin-top: 150px;
  margin-bottom: 80px;
}
.l-single .c-btn__detail {
  margin: 60px auto;
}
@media screen and (width <= 959px) {
  .l-single .c-btn__detail {
    margin: 30px auto;
    bottom: 0;
  }
}

/* ---------- map area (CSS Grid, scales as one unit) ---------- */
.map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: var(--gap);
  grid-template-areas: ".      oki     .     .     hokkaido hokkaido" ".      oki     .     .     hokkaido hokkaido  " ".      .       .     .     tohoku   ." ".      .       .     chubu tohoku   ." "kyushu chugoku kinki chubu kanto    ." "kyushu shikoku kinki chubu kanto    .";
  width: 50%;
  aspect-ratio: 5/3;
  margin: 0 auto;
  margin-left: 0;
  gap: 20px 10px;
}
@media screen and (width <= 959px) {
  .map {
    width: 70%;
    margin: 0 auto 0% 10%;
  }
}
@media screen and (width <= 767px) {
  .map {
    width: 85%;
    margin: 0 auto 0% 0%;
  }
}
@media (max-width: 500px) {
  .map {
    aspect-ratio: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 0;
    border-radius: 8px;
    border: 2px solid rgba(225, 117, 128, 0);
    -webkit-transition: 0s;
    transition: 0s;
  }
}

.region-btn {
  position: relative;
  border: 3px solid #D78C94;
  -webkit-transform: skew(-10deg, -10deg) rotate(10deg);
          transform: skew(-10deg, -10deg) rotate(10deg);
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  padding: 4px;
  -webkit-transition: background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 500px) {
  .region-btn {
    left: 0 !important;
    top: 0 !important;
    -webkit-transform: unset !important;
            transform: unset !important;
    border: none;
    padding: 10px 30px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .region-btn:before {
    content: "";
    position: absolute;
    width: 98%;
    height: 1px;
    background: #E0DDD2;
    bottom: 0;
    left: 1%;
  }
}
.region-btn:hover {
  background: #F6EAEA;
}
.region-btn.active {
  background: #D78C94;
}
@media (max-width: 500px) {
  .region-btn.active {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    border-radius: 8px;
    border: 2px solid #E17580;
    background: #FFF;
    width: calc(100% + 3.5px);
    left: -2px !important;
    top: -2px !important;
  }
  .region-btn.active:after {
    position: absolute;
    content: "";
    width: 31px;
    height: 31px;
    right: 19px;
    background-image: url(../images/company/arrow.svg);
  }
}
.region-btn.active span {
  color: #fff;
}
@media (max-width: 500px) {
  .region-btn.active span {
    color: #745454;
  }
}
.region-btn span {
  -webkit-transform: skew(10deg, 10deg) rotate(-10deg);
          transform: skew(10deg, 10deg) rotate(-10deg);
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 30px */
  letter-spacing: 1.4px;
  position: relative;
}
@media (max-width: 500px) {
  .region-btn span {
    -webkit-transform: unset;
            transform: unset;
  }
}

@media (max-width: 500px) {
  .region-btn {
    display: none;
  }
  .region-btn.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .map.open {
    border-radius: 8px;
    border: 2px solid #E17580;
    background: #FFF;
  }
  .map.open .region-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.region-btn:focus-visible {
  outline: 3px solid #CC5B6B;
  outline-offset: 2px;
}

.region-btn.selected {
  background: var(--card-selected-bg);
  border-color: var(--card-selected-border);
  color: #7A2E3A;
}

#hokkaido {
  grid-area: hokkaido;
  left: calc(10px + 40%);
}

#tohoku {
  grid-area: tohoku;
  left: calc(10px + 40%);
}

#kanto {
  grid-area: kanto;
  left: 5px;
}

#chubu {
  grid-area: chubu;
  left: calc(15px + 5%);
  top: -20px;
}

#kinki {
  grid-area: kinki;
}

#chugoku {
  grid-area: chugoku;
  left: 15px;
  top: -10px;
}

#shikoku {
  grid-area: shikoku;
  left: -7px;
  top: -15px;
}

#kyushu {
  grid-area: kyushu;
}

#okinawa {
  width: 75%;
  height: 75%;
  grid-area: oki;
}
#okinawa span:before {
  position: absolute;
  content: "";
  width: 130.684px;
  height: 127.378px;
  background-image: url(../images/company/sep-oki.png);
  background-size: cover;
}
@media (max-width: 500px) {
  #okinawa {
    width: 100%;
    height: auto;
  }
  #okinawa span:before {
    display: none;
  }
}

.l-company-top {
  position: relative;
}
.l-company-top .l-section__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 959px) {
  .l-company-top .l-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }
}
.l-company-top__textarea {
  width: 35%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 959px) {
  .l-company-top__textarea {
    width: 100%;
  }
}
.l-company-top__title {
  color: #E17580;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 3px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .l-company-top__title {
    font-size: 25px;
  }
}
@media screen and (width <= 959px) {
  .l-company-top__title br {
    display: none;
  }
}
.l-company-top_text {
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 31.5px */
}

.l-company-panels {
  margin-top: 100px;
}
.l-company-panels__panel {
  display: none;
  width: 100%;
}
.l-company-panels__panel.is-active {
  display: block;
}
.l-company-panels__empty {
  padding: 40px 0;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.c-org-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 6%;
}
@media screen and (width <= 959px) {
  .c-org-card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.c-org-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media (max-width: 480px) {
  .c-org-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-org-card__thumb {
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  width: 33%;
  height: auto;
  background-color: #d9d9d9;
}
@media (max-width: 480px) {
  .c-org-card__thumb {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.c-org-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.c-org-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 10px;
}
.c-org-card__tag {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #D78C94;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  padding: 1px 10px;
  white-space: nowrap;
}
.c-org-card__title {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  margin-bottom: 10px;
}
.c-org-card__note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin: 0 0 12px;
  color: #D78C94;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.c-org-card__note-icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 13px;
  height: 13px;
  background-image: url(../images/company/tag.svg);
  background-size: cover;
  top: 2px;
  position: relative;
}
.c-org-card__link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  align-items: center;
  color: #D78C94;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}
.c-org-card__link:hover {
  text-decoration: underline;
}
.c-org-card__link-icon {
  width: 50px;
  height: 50px;
  background: #F6F3EA;
  border-radius: 50px;
  position: relative;
}
.c-org-card__link-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  background-image: url(../images/company/home.svg);
  background-size: cover;
}

.is-provider-youtube iframe {
  width: 90%;
  height: auto;
  aspect-ratio: 5/3;
  display: block;
  margin: 0 auto 25px;
}
@media screen and (width <= 767px) {
  .is-provider-youtube iframe {
    width: 100%;
    margin: 0 auto 15px;
  }
}

.wp-block-buttons {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-block-buttons .wp-block-button__link {
  border-radius: 32.5px;
  background: #D78C94;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  padding: 10px 25px;
  margin-bottom: 20px;
  border: 1px solid #D78C94;
}
@media screen and (width <= 767px) {
  .wp-block-buttons .wp-block-button__link {
    font-size: 16px;
    padding: 7.5px 20px;
    margin-bottom: 15px;
  }
}
.wp-block-buttons .wp-block-button__link:hover {
  background: #FFF;
  color: #D78C94;
}

@media (max-width: 768px) {
  .l-gift-contact .l-form__file-row {
    overflow: hidden;
  }
}
.p-topics {
  margin-bottom: 150px;
}

.l-archive {
  margin-top: 75px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width <= 959px) {
  .l-archive {
    gap: 5%;
  }
}
@media screen and (width <= 767px) {
  .l-archive {
    margin-top: 30px;
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-archive__head .g-font-middle {
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.75em;
}
@media screen and (width <= 767px) {
  .l-archive__head .g-font-middle {
    text-align: left;
  }
}
.l-archive__head .g-font-small {
  max-width: 984px;
  width: 100%;
  margin: 0 auto;
}
.l-archive__category {
  width: 35%;
  max-width: 465px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media screen and (width <= 959px) {
  .l-archive__category {
    padding: 20px !important;
  }
}
@media screen and (width <= 767px) {
  .l-archive__category {
    width: 100% !important;
    top: unset;
  }
}
.l-archive__category-title {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px; /* 155% */
  margin-bottom: 20px;
}
.l-archive__category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px 30px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 959px) {
  .l-archive__category-list {
    gap: 20px 30px;
  }
}
.l-archive__category-list-item {
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  position: relative;
  padding-left: 36px;
}
@media screen and (width <= 959px) {
  .l-archive__category-list-item {
    font-size: 16px;
    padding-left: 28px;
  }
}
.l-archive__category-list-item:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50px;
  left: 0;
  top: 3px;
}
@media screen and (width <= 959px) {
  .l-archive__category-list-item:before {
    width: 20px;
    height: 20px;
  }
}
.l-archive__category-list-item:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #D78C94;
  border-radius: 50px;
  left: 5px;
  top: 8px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 959px) {
  .l-archive__category-list-item:after {
    width: 12px;
    height: 12px;
    left: 4px;
    top: 7px;
  }
}
.l-archive__category-list-item:hover:after {
  opacity: 1;
}
.l-archive__category-list-item.active:after {
  opacity: 1;
}
.l-archive__category-option {
  margin-top: 11px;
  color: #E17580;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  display: block;
}
.l-archive__main {
  width: 100%;
}
.l-archive__main .l-archive__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 0;
}
.l-archive__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 45px 0 70px;
  list-style: none;
  padding: 0;
  gap: 0;
}
@media screen and (width <= 767px) {
  .l-archive__list {
    margin-bottom: 20px;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 20px;
}
.c-pagination__page {
  width: 51px;
  height: 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  border-radius: 50px;
  color: #E17580;
}
.c-pagination__page--now {
  background: #E17580;
  color: #fff;
}
.c-pagination__page:hover {
  background: #E17580;
  color: #fff;
}
.c-pagination__page--dot {
  font-size: 20px;
  color: #E17580;
}

.l-form {
  margin-top: 90px;
}
.l-form__step {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
.l-form__explanation {
  max-width: 450px;
  margin: 35px auto 0;
  width: 100%;
  font-weight: 500;
}
.l-form__body {
  max-width: 725px;
  margin: 70px auto 0;
}
.l-form-input__field {
  margin-top: 42px;
}
.l-form-input__field:first-child {
  margin-top: 0;
}
.l-form-input__field.-sub {
  margin-top: 20px;
  border-top: 1px solid rgba(49, 33, 2, 0.25);
}
.l-form-input__field.-sub .c-form-label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
}
.l-form-input__field.-sub .l-form-input__field-lbl {
  margin-bottom: 10px;
}
.l-form-input__field-lbl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9.6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}

.c-form-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  counter-reset: cnt 0;
}
@media screen and (width <= 767px) {
  .c-form-step {
    gap: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-form-step__item {
  padding-top: 105px;
  position: relative;
  width: 100px;
  text-align: center;
  color: rgba(49, 33, 2, 0.3);
  counter-increment: cnt;
}
@media screen and (width <= 767px) {
  .c-form-step__item {
    padding-top: 65px;
    width: 60px;
  }
}
.c-form-step__item::before {
  position: absolute;
  top: 0;
  font-size: 33px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: rgba(211, 160, 94, 0.3);
  aspect-ratio: 1;
  width: 100px;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  content: counter(cnt, decimal-leading);
  border-radius: 50%;
  background-color: #F8F4EF;
  grid-area: number;
}
@media screen and (width <= 767px) {
  .c-form-step__item::before {
    font-size: 23px;
    width: 60px;
  }
}
.c-form-step__item::after {
  width: 40px;
  height: 0;
  position: absolute;
  content: "";
  border-top: 1px solid #D3A05E;
  right: -40px;
  top: 50px;
}
@media screen and (width <= 767px) {
  .c-form-step__item::after {
    width: 30px;
    right: -30px;
    top: 30px;
  }
}
.c-form-step__item.active {
  color: #312102;
}
.c-form-step__item.active::before {
  color: #F8F4EF;
  background-color: #D3A05E;
}
.c-form-step__item:last-child::after {
  display: none;
}

.c-form-tag {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 15px;
  background: rgba(49, 33, 2, 0.25);
  color: #F8F4EF;
  border-radius: 5px;
}
.c-form-tag.-req {
  background: #D3A05E;
  color: #F8F4EF;
}
.c-form-label {
  font-size: 18px;
  font-weight: 500;
}
.c-form-field-accept, .c-form-field-checkbox, .c-form-field-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 8px 72px;
}
.c-form-field-accept__item, .c-form-field-checkbox__item, .c-form-field-radio__item {
  display: grid;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: repeat(2, auto);
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.c-form-field-accept__item-input, .c-form-field-checkbox__item-input, .c-form-field-radio__item-input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #D3A05E;
  background-color: #ffffff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.c-form-field-accept__item-input:hover, .c-form-field-checkbox__item-input:hover, .c-form-field-radio__item-input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-accept__item-input::before, .c-form-field-checkbox__item-input::before, .c-form-field-radio__item-input::before {
  aspect-ratio: 1.3;
  position: absolute;
  inset: 50%;
  display: block;
  width: 60%;
  content: none;
  translate: -10% -45%;
  rotate: -45deg;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: 3.5px solid #D3A05E;
  border-left: 3.5px solid #D3A05E;
}
.c-form-field-accept__item-input:checked::before, .c-form-field-checkbox__item-input:checked::before, .c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-accept__item-label, .c-form-field-checkbox__item-label, .c-form-field-radio__item-label {
  font-weight: 500;
  line-height: 1.75em;
  cursor: pointer;
}
.c-form-field-accept, .c-form-field-file, .c-form-field-checkbox, .c-form-field-radio, .c-form-field-select2, .c-form-field-select, .c-form-field-textarea, .c-form-field-text {
  font-weight: 500;
  line-height: 1.75em;
  color: #222222;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}
.c-form-field-file__wrp, .c-form-field-select2__input, .c-form-field-select__input, .c-form-field-textarea__input, .c-form-field-text__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  font-size: inherit;
  font-weight: inherit;
  -webkit-font-smoothing: antialiased;
  line-height: inherit;
  color: inherit;
  font-family: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  padding: 0.5em 1.25em;
  border: none;
  border: 1px solid #F8F4EF;
  outline-offset: 0;
  background-color: #ffffff;
  border-radius: 10px;
}
.c-form-field-file__wrp:hover, .c-form-field-select2__input:hover, .c-form-field-select__input:hover, .c-form-field-textarea__input:hover, .c-form-field-text__input:hover {
  border-color: #D3A05E;
  outline: 1px solid #D3A05E;
}
.c-form-field-radio__item-input {
  border-radius: 50px;
}
.c-form-field-radio__item-input::before {
  position: absolute;
  width: 60%;
  height: 60%;
  background: #D3A05E;
  border-radius: 50px;
  content: none;
  translate: -50% -50%;
  rotate: none;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  border-bottom: none;
  border-left: none;
}
.c-form-field-radio__item-input:checked::before {
  content: "";
}
.c-form-field-file__input {
  display: none;
}
.c-form-field-file-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  background: #F8F4EF;
  border-radius: 10px;
  width: 100%;
  height: 50px;
  padding: 0.5em calc(25px + 1.25em) 0.5em 0.5em;
  position: relative;
}
.c-form-field-file-wrapper-btn {
  height: 40px;
  padding: 0px 23px;
  border-radius: 5px;
  background: #D3A05E;
  color: #F8F4EF;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
.c-form-field-file-wrapper-btn:before {
  position: relative;
  content: url("../images/icon/file.svg");
  top: 5px;
}
.c-form-field-file-wrapper-text {
  font-size: 16px;
  font-weight: 500;
}
.c-form-field-file-wrapper-remove {
  display: none;
  position: absolute;
  content: url("../images/icon/batu.svg");
  cursor: pointer;
  right: 1.25em;
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (width <= 767px) {
  .c-breadcrumb {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.c-breadcrumb__item {
  color: #E17580;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 2.88px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (width <= 767px) {
  .c-breadcrumb__item {
    font-size: 14px;
    gap: 15px;
  }
}
.c-breadcrumb__item > a {
  color: #E17580;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 2.88px;
}
@media screen and (width <= 767px) {
  .c-breadcrumb__item > a {
    font-size: 14px;
  }
}
.c-breadcrumb__item > a:hover {
  opacity: 0.5;
}
.c-breadcrumb__item::after {
  display: inline-block;
  content: url("../images/common/arrow_bread.svg");
}
.c-breadcrumb__item:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-orient: vertical;
  text-decoration: none;
  -webkit-line-clamp: 1;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-btn-main {
  background: #fff;
  position: relative;
  border-radius: 50px;
  padding: 15px 35px;
  padding-right: 75px;
  color: #E17580;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #D78C94;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  min-width: 315px;
}
@media screen and (width <= 767px) {
  .c-btn-main {
    font-size: 16px;
    min-width: unset;
    width: 100%;
    max-width: 300px;
    line-height: 1.3;
  }
}
.c-btn-main:before {
  position: absolute;
  right: 25px;
  content: "";
  width: 17px;
  height: 14px;
  -webkit-mask-image: url(../images/common/arrow.svg);
          mask-image: url(../images/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D78C94;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn-main:hover {
  background: #E17580;
  color: #fff;
}
.c-btn-main:hover:before {
  background-color: #fff;
}
.c-btn-main.-contact {
  color: #FEFEFE;
  background: #D78C94;
  font-size: 16px;
  min-width: unset;
  padding: 9px 17px;
  padding-right: 75px;
}
.c-btn-main.-contact:before {
  background-color: #FEFEFE;
  width: 10px;
  height: 8px;
  right: 17px;
}
.c-btn-main.-contact:hover {
  background: #fff;
  color: #E17580;
}
.c-btn-main.-contact:hover:before {
  background-color: #E17580;
}
.c-btn-main.-plus {
  cursor: pointer;
}
.c-btn-main.-plus:before {
  width: 18px;
  height: 18px;
  -webkit-mask-image: url(../images/common/plus.svg);
          mask-image: url(../images/common/plus.svg);
}
.c-btn-main.-regist {
  color: #FEFEFE;
  background: #D78C94;
}
.c-btn-main.-regist:before {
  background-color: #FEFEFE;
}
.c-btn-main.-regist:hover {
  background: #fff;
  color: #E17580;
}
.c-btn-main.-regist:hover:before {
  background-color: #E17580;
}

.c-btn-special {
  position: absolute;
  z-index: 1;
  bottom: 120px;
  right: 3%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 13px;
  border: 2px solid #FFB4BD;
  background: #FFF;
  padding: 20px 25px;
  padding-right: 60px;
  gap: 20px;
  max-width: 530px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 1250px) {
  .c-btn-special {
    padding: 10px 15px;
    padding-right: 40px;
    max-width: 400px;
  }
}
@media screen and (width <= 767px) {
  .c-btn-special {
    padding: 20px 30px 20px 15px;
  }
}
.c-btn-special__title {
  color: #E17580;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (width <= 1250px) {
  .c-btn-special__title {
    font-size: 18px;
  }
}
@media screen and (width <= 767px) {
  .c-btn-special__title {
    font-size: 16px;
    display: none;
  }
}
.c-btn-special__text {
  color: #7A7A7A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}
@media screen and (width <= 1250px) {
  .c-btn-special__text {
    font-size: 14px;
  }
}
.c-btn-special__icon {
  width: 50px;
}
@media screen and (width <= 1250px) {
  .c-btn-special__icon {
    width: 50px;
  }
}
.c-btn-special__head {
  position: absolute;
  padding: 1px 20px;
  border-radius: 11px;
  background: #D78C94;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  left: 0;
  top: -12.5px;
}
@media screen and (width <= 767px) {
  .c-btn-special__head {
    font-size: 14px;
  }
}
.c-btn-special:before {
  position: absolute;
  right: -31px;
  content: "";
  width: 62px;
  height: 62px;
  background-image: url(../images/common/arrow_large.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (width <= 1250px) {
  .c-btn-special:before {
    width: 50px;
    height: 50px;
    right: -25px;
  }
}
.c-btn-special figure {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-btn-special figure .c-btn-special__title {
  display: none;
}
@media screen and (width <= 767px) {
  .c-btn-special figure .c-btn-special__title {
    display: block;
    margin: 0;
  }
}
.c-btn-special:hover {
  background: #E17580;
}
.c-btn-special:hover .c-btn-special__title {
  color: #FFF;
}
.c-btn-special:hover .c-btn-special__text {
  color: #FFF;
}
.c-btn-special:hover:before {
  background-image: url(../images/common/arrow_large_sp.svg);
}

.c-btn-card {
  border-radius: 13px;
  border: 1px solid #D78C94;
  background: #FFFDF6;
  padding: 25px 15px;
  padding-right: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (width <= 1250px) {
  .c-btn-card {
    padding: 10px 15px;
    padding-right: 40px;
  }
}
@media screen and (width <= 767px) {
  .c-btn-card {
    padding: 11px;
    padding-right: 45px;
    gap: 10px;
  }
}
.c-btn-card:before {
  position: absolute;
  right: -31px;
  content: "";
  width: 62px;
  height: 62px;
  background-image: url(../images/common/arrow_large.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (width <= 1250px) {
  .c-btn-card:before {
    width: 50px;
    height: 50px;
    right: -25px;
  }
}
@media screen and (width <= 1450px) {
  .c-btn-card img {
    width: 80px;
  }
}
@media screen and (width <= 767px) {
  .c-btn-card img {
    width: 44px;
  }
}
.c-btn-card .g-font-text {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (width <= 1450px) {
  .c-btn-card .g-font-text {
    font-size: 18px;
  }
}
@media screen and (width <= 1300px) {
  .c-btn-card .g-font-text br {
    display: none;
  }
}
@media screen and (width <= 767px) {
  .c-btn-card .g-font-text {
    font-size: 16px;
  }
}
.c-btn-card:hover {
  background: #E17580;
}
.c-btn-card:hover .g-font-text {
  color: #FFF;
}
.c-btn-card:hover:before {
  background-image: url(../images/common/arrow_large_sp.svg);
}

.c-btn-card2 {
  border-radius: 13px;
  border: 2px solid #E17580;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 27px 15px 21px;
  height: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.c-btn-card2__icon {
  width: 60%;
}
.c-btn-card2 .g-font-mtext {
  margin: 20px auto 55px;
}
@media screen and (width <= 767px) {
  .c-btn-card2 .g-font-mtext {
    margin: 20px auto 40px;
  }
}
.c-btn-card2__more {
  color: #E17580;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  position: absolute;
  bottom: 20px;
  right: 30px;
  border-bottom: 2px #F4D4D4 dashed;
}
.c-btn-card2:hover {
  opacity: 0.5;
}

.reset-btn {
  color: #D78C94;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  display: block;
  margin-left: auto;
  border-radius: 32.5px;
  border: 2px solid #D78C94;
  background: #FFF;
  padding: 11px 25px;
  margin-top: 30px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reset-btn:hover {
  background: #D78C94;
  color: #fff;
}
@media screen and (width <= 767px) {
  .reset-btn {
    margin: 0 auto;
    font-size: 14px;
    padding: 9px 35px;
    display: none;
  }
}

@media screen and (width <= 767px) {
  .-add {
    margin-top: 20px !important;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  border-radius: 40px;
  background: #FFF;
  padding: 10px 50px;
}
.c-pagination__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: clamp(14px, 1rem, 16px);
     -moz-column-gap: clamp(14px, 1rem, 16px);
          column-gap: clamp(14px, 1rem, 16px);
}
.c-pagination__card {
  font-size: clamp(12px, 3.7333333333vw, 16px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1em;
  color: #0068b7;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(30px, 10.6666666667vw, 40px);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border: 1px solid #E17580;
  background-color: #ffffff;
}
.c-pagination__card:focus-visible {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #ffffff;
  background-color: rgb(0, 132.9836065574, 234);
}
@media (any-hover: hover) {
  .c-pagination__card:hover {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #ffffff;
    background-color: rgb(0, 132.9836065574, 234);
  }
}
.c-pagination__card.is-active {
  pointer-events: none;
  color: #ffffff;
  border-color: #E17580;
  background-color: #E17580;
}
.c-pagination__dot {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: #0068b7;
}
.c-pagination--rev .c-pagination__card {
  color: #ffffff;
  border-color: #E17580;
  background-color: #0068b7;
}
.c-pagination--rev .c-pagination__card:focus-visible {
  color: #0068b7;
  background-color: rgb(229.5, 229.5, 229.5);
}
@media (any-hover: hover) {
  .c-pagination--rev .c-pagination__card:hover {
    color: #0068b7;
    background-color: rgb(229.5, 229.5, 229.5);
  }
}
.c-pagination--rev .c-pagination__card.is-active {
  color: #0068b7;
  border-color: #E17580;
  background-color: #E17580;
}
.c-pagination--rev .c-pagination__dot {
  color: #ffffff;
}

.c-card__article {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-card__article-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (width <= 767px) {
  .c-card__article-link {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.c-card__article-thumbnail {
  aspect-ratio: 1;
  border-radius: 23px;
  border: 1px solid #D78C94;
  background: #FFF;
  overflow: hidden;
  width: 38%;
  aspect-ratio: 1;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin: 0;
}
@media screen and (width <= 767px) {
  .c-card__article-thumbnail {
    width: 28%;
    border-radius: 7px;
  }
}
.c-card__article-thumbnail img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.c-card__article-textarea {
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (width <= 767px) {
  .c-card__article-textarea {
    margin: 0;
  }
}
.c-card__article-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 14px;
}
@media screen and (width <= 767px) {
  .c-card__article-info {
    margin-bottom: 5px;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-card__article-date {
  color: #8FAEA0;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (width <= 767px) {
  .c-card__article-date {
    font-size: 14px;
  }
}
.c-card__article-category {
  color: #FFFFFF;
  padding: 1px 15px;
  border-radius: 11.5px;
  background: #D78C94;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (width <= 767px) {
  .c-card__article-category {
    font-size: 14px;
  }
}
.c-card__article-title {
  font-weight: 500;
  font-size: 20px;
  color: #745454;
  line-height: 1.5;
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  word-break: break-all;
}
@media screen and (width <= 767px) {
  .c-card__article-title {
    font-size: 16px;
  }
}
.c-card__article-view {
  position: absolute;
  bottom: 20px;
  right: 0;
  color: #D78C94;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  text-align: right;
  padding-right: 73px;
}
@media screen and (width <= 767px) {
  .c-card__article-view {
    position: relative;
    bottom: unset;
    margin-top: 10px;
    font-size: 16px;
  }
}
.c-card__article-view:before {
  position: absolute;
  right: 0;
  content: "";
  width: 62px;
  height: 62px;
  background-image: url(../images/common/arrow_large.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (width <= 1250px) {
  .c-card__article-view:before {
    width: 50px;
    height: 50px;
    right: 0;
  }
}
.c-card__article:hover .c-card__article-view:before {
  background-image: url(../images/common/arrow_large_sp.svg);
}

main {
  overflow: clip;
}

.p-front-fv .pattern__01 {
  position: absolute;
  top: -650px;
  left: -850px;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front-fv .pattern__01 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    top: -350px;
    left: -450px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .pattern__01 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    top: -180px;
    left: -180px;
  }
}
.p-front-fv .pattern__02 {
  position: absolute;
  top: -350px;
  right: -175px;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front-fv .pattern__02 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .pattern__02 {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    top: -220px;
    right: -135px;
  }
}
.p-front-fv .pattern__03 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-45%, -45%);
          transform: translate(-45%, -45%);
  z-index: -2;
  width: 20vw;
}
@media screen and (width <= 1500px) {
  .p-front-fv .pattern__03 {
    -webkit-transform: translate(-45%, -55%);
            transform: translate(-45%, -55%);
  }
}
@media screen and (width <= 1250px) {
  .p-front-fv .pattern__03 {
    width: 25vw;
  }
}
@media screen and (width <= 959px) {
  .p-front-fv .pattern__03 {
    width: 20vw;
    -webkit-transform: translate(-45%, -75%);
            transform: translate(-45%, -75%);
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .pattern__03 {
    width: 30vw;
    top: 35%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.p-front-fv .pattern__04 {
  position: absolute;
  bottom: 65px;
  right: -300px;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front-fv .pattern__04 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .pattern__04 {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: -150px;
    bottom: -125px;
  }
}

.p-front-section1 .pattern__05 {
  position: absolute;
  top: -55px;
  right: -180px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front-section1 .pattern__05 {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    right: unset;
    left: 135px;
    top: -70px;
  }
}
.p-front-section1 .pattern__06 {
  position: absolute;
  top: 40%;
  right: -160px;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front-section1 .pattern__06 {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@media screen and (width <= 767px) {
  .p-front-section1 .pattern__06 {
    display: none;
  }
}

.p-front-section2 .pattern__07 {
  position: absolute;
  bottom: -185px;
  left: -225px;
  z-index: -1;
}
.p-front-section2 .pattern__08 {
  position: absolute;
  bottom: -200px;
  right: -230px;
  z-index: -1;
}

.p-front-experience .pattern__09 {
  position: absolute;
  bottom: 120px;
  left: -225px;
  z-index: -1;
}
.p-front-experience .pattern__10 {
  position: absolute;
  bottom: -370px;
  right: -230px;
  z-index: -1;
}

.p-front-topics .pattern__11 {
  position: absolute;
  top: -65px;
  width: 240px;
  left: -140px;
  z-index: -1;
}
.p-front-topics .pattern__14 {
  position: absolute;
  top: -30px;
  width: 410px;
  right: -140px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front-topics .pattern__14 {
    width: 300px;
  }
}

.p-front-faq .pattern__12 {
  position: absolute;
  top: -40px;
  left: -225px;
  z-index: -1;
  width: 450px;
}
.p-front-faq .pattern__13 {
  position: absolute;
  top: 250px;
  width: 370px;
  right: -180px;
  z-index: -1;
}

.p-front-fv {
  position: relative;
  height: 100vh;
  margin-bottom: 60px;
  max-height: 60vw;
}
@media screen and (width <= 959px) {
  .p-front-fv {
    aspect-ratio: 16/12;
    height: auto;
    margin: 0;
    max-height: unset;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv {
    height: auto;
    aspect-ratio: 2/3;
    margin-bottom: 60px;
  }
  .p-front-fv picture {
    position: absolute;
  }
}
.p-front-fv__inner {
  height: 100%;
}
@media screen and (width <= 767px) {
  .p-front-fv__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-front-fv .fv {
  width: 100vw;
  max-width: none;
  position: absolute;
  left: 0;
  top: 20%;
  z-index: -1;
}
@media screen and (width <= 959px) {
  .p-front-fv .fv {
    top: 120px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .fv {
    position: relative;
    top: 0;
    -webkit-transform: translate(-50%, -25%);
            transform: translate(-50%, -25%);
    left: 50%;
    width: 100vw;
    margin: 0;
  }
}
.p-front-fv__copy {
  height: 100%;
  z-index: 0;
  position: relative;
  padding: 35px 51px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 1300px) {
  .p-front-fv__copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__copy {
    padding: 0 5%;
    margin-top: 50px;
    margin-bottom: 0;
  }
}
.p-front-fv__copy .g-font-title {
  margin-bottom: 35px;
}
@media screen and (width <= 767px) {
  .p-front-fv__copy .g-font-title {
    margin-bottom: 20px;
    font-size: 23px;
  }
  .p-front-fv__copy .g-font-title br {
    display: none;
  }
}
@media screen and (width <= 374px) {
  .p-front-fv__copy .g-font-title {
    font-size: 19px;
  }
}
.p-front-fv__copy-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (width <= 1300px) {
  .p-front-fv__copy-text {
    margin-bottom: 11%;
    font-size: 20px;
  }
}
@media screen and (width <= 959px) {
  .p-front-fv__copy-text {
    margin-bottom: 20%;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__copy-text {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .p-front-fv__copy-text br {
    display: none;
  }
}
.p-front-fv__scroll {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10vw;
}
@media screen and (width <= 959px) {
  .p-front-fv__scroll {
    -webkit-transform: unset;
            transform: unset;
    right: 5%;
    left: unset;
    -webkit-writing-mode: sideways-rl;
        -ms-writing-mode: sideways-rl;
            writing-mode: sideways-rl;
    bottom: 255px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__scroll {
    bottom: 215px;
    font-size: 14px;
  }
}
.p-front-fv__scroll:before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  border-left: 1px solid #D78C94;
  top: 35px;
  left: 49%;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
  -webkit-transform-origin: top;
          transform-origin: top;
}
@media screen and (width <= 959px) {
  .p-front-fv__scroll:before {
    height: 90px;
    top: 90px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv__scroll:before {
    top: 80px;
  }
}
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scaleY(1);
            transform: translateX(-50%) scaleY(1);
    opacity: 0;
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scaleY(1);
            transform: translateX(-50%) scaleY(1);
    opacity: 0;
  }
}
@media screen and (width <= 959px) {
  .p-front-fv .c-btn-special {
    bottom: 75px;
  }
}
@media screen and (width <= 767px) {
  .p-front-fv .c-btn-special {
    position: relative;
    bottom: unset;
    width: calc(90% - 30px);
    margin: 0 auto;
    right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 20px 30px 20px 15px;
  }
  .p-front-fv .c-btn-special figure {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
  }
}

.p-front-section1 {
  position: relative;
  margin-bottom: 165px;
}
@media screen and (width <= 959px) {
  .p-front-section1 {
    margin-bottom: 125px;
  }
}
@media screen and (width <= 767px) {
  .p-front-section1 {
    margin-bottom: 0;
  }
}
.p-front-section1__copy {
  z-index: 0;
  position: relative;
}
.p-front-section1__copy .g-font-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (width <= 767px) {
  .p-front-section1__copy .g-font-title {
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  .p-front-section1__copy .g-font-title br {
    display: none;
  }
}
@media screen and (width <= 374px) {
  .p-front-section1__copy .g-font-title {
    font-size: 20px;
  }
}
.p-front-section1__copy .g-font-text {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front-section1__copy .g-font-text {
    display: block;
    font-size: 16px;
  }
}
.p-front-section1__copy .g-font-ltext {
  width: 50%;
}
@media screen and (width <= 1300px) {
  .p-front-section1__copy .g-font-ltext {
    width: 75%;
  }
}
@media screen and (width <= 1300px) {
  .p-front-section1__copy .g-font-ltext {
    width: 75%;
  }
}
@media screen and (width <= 767px) {
  .p-front-section1__copy .g-font-ltext {
    display: none;
  }
}
.p-front-section1 .section1 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 670px;
  width: 50%;
}
@media screen and (width <= 1300px) {
  .p-front-section1 .section1 {
    z-index: -1;
    -webkit-transform: unset;
            transform: unset;
    top: -15%;
  }
}
@media screen and (width <= 959px) {
  .p-front-section1 .section1 {
    top: -5%;
    width: 55%;
    left: 45%;
  }
}
@media screen and (width <= 767px) {
  .p-front-section1 .section1 {
    position: relative;
    width: 80vw;
    max-width: none;
    right: 0;
    left: unset;
    top: unset;
    margin: 15px auto;
  }
}

.p-front-section2 {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (width <= 959px) {
  .p-front-section2 {
    margin-bottom: 80px;
  }
}
.p-front-section2__copy {
  z-index: 0;
  position: relative;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-front-section2__copy .g-font-ltext {
  margin-bottom: 90px;
  width: 50%;
  margin-left: auto;
}
@media screen and (width <= 959px) {
  .p-front-section2__copy .g-font-ltext {
    width: 55%;
  }
}
@media screen and (width <= 767px) {
  .p-front-section2__copy .g-font-ltext {
    width: 100%;
  }
}
.p-front-section2__copy .c-btn-main {
  margin: 100px auto 0;
}
@media screen and (width <= 767px) {
  .p-front-section2__copy .c-btn-main {
    display: none;
  }
}
.p-front-section2 .section2 {
  position: absolute;
  z-index: -1;
  top: calc(50% - 90px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50%;
  left: unset;
  right: 55%;
  max-width: 600px;
}
@media screen and (width <= 1300px) {
  .p-front-section2 .section2 {
    right: 50%;
  }
}
@media screen and (width <= 959px) {
  .p-front-section2 .section2 {
    width: 45%;
    right: 55%;
  }
}
@media screen and (width <= 767px) {
  .p-front-section2 .section2 {
    right: unset;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
    margin: 0 auto;
    width: 65vw;
    position: relative;
  }
}
.p-front-section2 .g-font-text {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front-section2 .g-font-text {
    display: block;
    font-size: 16px;
  }
}
@media screen and (width <= 767px) {
  .p-front-section2 .g-font-ltext {
    display: none;
  }
}
.p-front-section2 > .c-btn-main {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front-section2 > .c-btn-main {
    display: block;
    width: 89%;
    margin: 60px auto 0;
  }
}

.p-front-experience {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (width <= 959px) {
  .p-front-experience {
    margin-bottom: 80px;
  }
}
.p-front-experience__inner {
  border-radius: 13px;
  border: 5px solid #EBE6D7;
  background: #F6F3EA;
  padding: 21px;
}
@media screen and (width <= 767px) {
  .p-front-experience__inner {
    padding: 12px;
  }
}
.p-front-experience__content {
  border-radius: 11px;
  border: 3px solid #FFB4BD;
  padding: 50px 4%;
}
@media screen and (width <= 767px) {
  .p-front-experience__content {
    padding: 25px 12px 40px;
  }
}
.p-front-experience__content > .g-font-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-front-experience .g-front-heading {
  margin-bottom: 20px;
}
.p-front-experience .g-front-heading br {
  display: none;
}
@media screen and (width <= 767px) {
  .p-front-experience .g-front-heading {
    margin-bottom: 20px;
  }
  .p-front-experience .g-front-heading br {
    display: block;
  }
}
.p-front-experience__list {
  list-style: none;
  padding: 0;
  margin: 60px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 35px 60px;
}
@media screen and (width <= 767px) {
  .p-front-experience__list {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 10px;
  }
}
.p-front-experience__item {
  width: calc((100% - 60px) / 2);
}
@media screen and (width <= 959px) {
  .p-front-experience__item {
    width: 100%;
  }
}
@media screen and (width <= 767px) {
  .p-front-experience__item {
    width: calc(100% - 25px);
  }
}
.p-front-experience .c-btn-main {
  padding-right: 90px;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .p-front-experience .c-btn-main {
    padding-right: 50px;
  }
}

.p-front-experience2__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  gap: 28px;
  margin: 65px 0;
}
@media screen and (width <= 959px) {
  .p-front-experience2__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 500px;
    margin-inline: auto;
  }
  .p-front-experience2__list .c-btn-card2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding: 20px;
  }
  .p-front-experience2__list .c-btn-card2__icon {
    width: 90px;
  }
  .p-front-experience2__list .c-btn-card2 .g-font-mtext {
    text-align: left;
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (width <= 767px) {
  .p-front-experience2__list {
    grid-template-columns: repeat(1, 1fr);
    margin: 30px 0;
  }
  .p-front-experience2__list .c-btn-card2 {
    padding: 15px 5%;
    gap: 0;
  }
  .p-front-experience2__list .c-btn-card2__icon {
    width: 60px;
    margin-right: 10px;
  }
  .p-front-experience2__list .c-btn-card2 .g-font-mtext {
    font-size: 15px;
  }
  .p-front-experience2__list .c-btn-card2 .g-font-mtext br {
    display: none;
  }
  .p-front-experience2__list .c-btn-card2__more {
    border: none;
    position: relative;
    right: -1%;
    bottom: unset;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-left: auto;
  }
  .p-front-experience2__list .c-btn-card2__more span {
    display: none;
  }
}
.p-front-experience2__list .c-btn-card2__more span {
  color: #E17580;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}

.p-front-topics {
  position: relative;
  max-width: 1520px;
  margin: 0 auto 180px;
}
@media screen and (width <= 1660px) {
  .p-front-topics {
    margin-left: 5vw;
    width: 94vw;
  }
}
@media screen and (width <= 959px) {
  .p-front-topics {
    margin-bottom: 80px;
  }
}
@media screen and (width <= 767px) {
  .p-front-topics {
    width: 90vw;
  }
}
.p-front-topics .l-section__inner {
  width: 100%;
  margin: 0;
}
.p-front-topics .g-front-heading {
  text-align: left;
}
.p-front-topics .c-btn-main {
  margin: 0 auto;
}
.p-front-topics__swiper {
  overflow: hidden;
}
@media (max-width: 599px) {
  .p-front-topics .p-front-salary__progress-bar, .p-front-topics .p-front-salary__progress-count, .p-front-topics .p-front-salary__progress-flex {
    display: none;
  }
  .p-front-topics .p-front-topics__swiper .swiper-wrapper {
    display: block;
  }
  .p-front-topics .p-front-topics__swiper .swiper-slide {
    width: 100% !important;
    margin-bottom: 24px;
  }
  .p-front-topics .c-card__article:nth-child(5), .p-front-topics .c-card__article:nth-child(6) {
    display: none;
  }
  .p-front-topics .c-btn-main {
    margin-top: 30px;
  }
}

.p-front-salary__progress-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-right: 0;
}
@media screen and (width <= 1660px) {
  .p-front-salary__progress-wrap {
    margin-right: 5vw;
  }
}
@media screen and (width <= 959px) {
  .p-front-salary__progress-wrap {
    gap: 25px;
  }
}
@media screen and (width <= 767px) {
  .p-front-salary__progress-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 0;
  }
}

.p-front-salary__progress-flex {
  padding-right: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (width <= 959px) {
  .p-front-salary__progress-flex {
    padding-right: 0;
  }
}

@media screen and (width <= 959px) {
  .p-front-salary__arrow svg {
    width: 65px;
  }
}
@media screen and (width <= 767px) {
  .p-front-salary__arrow svg {
    width: 50px;
  }
}

.p-front-salary__progress-bar {
  -webkit-box-flex: 1;
  max-width: 790px;
  height: 2px;
  -webkit-flex: 1 1 0%;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  border-radius: 1px;
  overflow: hidden;
  background: #E0DDD3;
}

.p-front-salary__progress-fill {
  height: 100%;
  width: 0%;
  background: #D78C94;
  border-radius: 1px;
  -webkit-transition: width 0.4s;
  transition: width 0.4s;
}

.p-front-salary__arrow {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.p-front-salary__arrow:hover ellipse {
  fill: #efbcc2;
}
.p-front-salary__arrow:hover ellipse:nth-child(2) {
  fill: #d78c94;
}
.p-front-salary__arrow:hover path {
  fill: #fff;
}

.p-front-salary__progress-count {
  display: none;
}

.p-front-faq {
  position: relative;
}
.p-front-faq__list {
  list-style: none;
  padding: 0;
  margin: 80px 0 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (width <= 767px) {
  .p-front-faq__list {
    margin: 40px 0;
  }
}
.p-front-faq__item {
  border-radius: 8px;
  border: 1px solid #D78C94;
  background: #FFF;
  padding: 25px 40px 30px;
}
.p-front-faq__item:hover .p-front-faq__question {
  opacity: 0.5;
}
@media screen and (width <= 767px) {
  .p-front-faq__item {
    padding: 16px 15px;
  }
}
.p-front-faq__item.is-open .p-front-faq__question:before {
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}
.p-front-faq__question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  cursor: pointer;
  padding-right: 38px;
}
@media screen and (width <= 767px) {
  .p-front-faq__question {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.p-front-faq__question-head {
  color: #D78C94;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .p-front-faq__question-head {
    line-height: 1.2;
  }
}
.p-front-faq__question-title {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .p-front-faq__question-title {
    font-size: 16px;
  }
}
.p-front-faq__question:before {
  position: absolute;
  right: 0;
  content: "";
  width: 28px;
  height: 14px;
  -webkit-mask-image: url(../images/faq/arrow.svg);
          mask-image: url(../images/faq/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #D78C94;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.p-front-faq__answer {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  padding-right: 38px;
}
.p-front-faq__answer-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 60px;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (width <= 767px) {
  .p-front-faq__answer-heading {
    padding-top: 40px;
    gap: 12px;
  }
}
.p-front-faq__answer-heading:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background-image: -webkit-repeating-linear-gradient(left, #E2CFD1 0, #E2CFD1 8px, transparent 8px, transparent 16px);
  background-image: repeating-linear-gradient(to right, #E2CFD1 0, #E2CFD1 8px, transparent 8px, transparent 16px);
  display: block;
  top: 8px;
}
@media screen and (width <= 767px) {
  .p-front-faq__answer-heading:before {
    margin: 12px 0;
  }
}
.p-front-faq__answer-head {
  color: #D78C94;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .p-front-faq__answer-head {
    line-height: 1.2;
  }
}
.p-front-faq__answer-title {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .p-front-faq__answer-title {
    font-size: 16px;
  }
}
.p-front-faq__answer .g-font-text {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}
@media screen and (width <= 767px) {
  .p-front-faq__answer .g-font-text {
    font-size: 16px;
  }
}
@media screen and (width <= 767px) {
  .p-front-faq__answer .g-font-text {
    padding-left: 0;
  }
}
.p-front-faq .c-btn-main {
  margin: 0 auto;
}
.p-front-faq .faq {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0.5;
  top: -50px;
  width: 500px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front-faq .faq {
    top: 0;
    width: 50%;
    right: -10%;
  }
}
.p-front-faq .faq2 {
  width: 420px;
  position: absolute;
  left: 0;
  bottom: -170px;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-front-faq .faq2 {
    width: 50%;
    left: -10%;
    bottom: -120px;
  }
}
.p-front-faq .p-front-faq__answer-text a {
  color: #E17581;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
  text-decoration: underline;
}
@media screen and (width <= 767px) {
  .p-front-faq .p-front-faq__answer-text a {
    font-size: 16px;
  }
}
.p-front-faq .p-front-faq__answer-text a:hover {
  opacity: 0.5;
}

/* 5件目以降は最初は非表示 */
.p-front-faq__list .p-front-faq__item:nth-child(n+5) {
  display: none;
}

.c-btn-special.-off {
  pointer-events: none;
}
.c-btn-special.-off:before {
  background-image: url(../images/common/arrow_large-off.svg);
}
.c-btn-special.-off .c-btn-special__title {
  color: #E6E6E6;
}

.p-about-head {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 165px;
  gap: 5%;
}
@media screen and (width <= 1100px) {
  .p-about-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-about-head {
    margin-bottom: 80px;
  }
}
@media screen and (width <= 1350px) {
  .p-about-head .p-page__heading {
    font-size: 20px;
  }
}
@media screen and (width <= 1100px) {
  .p-about-head .p-page__heading br {
    display: none;
  }
}
@media screen and (width <= 1350px) {
  .p-about-head .p-page__text {
    font-size: 16px;
  }
}
@media screen and (width <= 1100px) {
  .p-about-head .p-page__text .l {
    display: none;
  }
}
@media screen and (width <= 768px) {
  .p-about-head .p-page__text {
    font-size: 15px;
  }
}

.p-section__heading {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 60px */
  letter-spacing: 4px;
  color: #E17580;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
@media screen and (width <= 959px) {
  .p-section__heading {
    font-size: 30px;
  }
}
@media screen and (width <= 767px) {
  .p-section__heading {
    font-size: 26px;
  }
}
.p-section__heading.-left {
  margin-left: 0;
}
.p-section__heading::after {
  position: absolute;
  content: "";
  right: -70px;
  width: 128px;
  height: 57.528px;
  background: url("../images/page/heading.svg") no-repeat center/contain;
  z-index: -1;
}
@media screen and (width <= 767px) {
  .p-section__heading::after {
    right: -60px;
    width: 100px;
    height: 45.528px;
  }
}
.p-section__heading.-search::after {
  position: absolute;
  content: "";
  top: 0;
  right: -40px;
  width: 115.981px;
  height: 122.821px;
  background: url("../images/page/search.svg") no-repeat center/contain;
}
.p-section__heading.-genetic::after {
  position: absolute;
  content: "";
  top: 0;
  right: -55px;
  width: 108.887px;
  height: 115.727px;
  background: url("../images/page/genetic.svg") no-repeat center/contain;
}

.p-about-issues {
  border-radius: 12px;
  border: 1px solid #D78C94;
  background: #FFF;
  padding: 40px 6% 70px;
}
@media screen and (width <= 767px) {
  .p-about-issues {
    padding: 30px 5% 40px;
  }
}
.p-about-issues__head {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (width <= 767px) {
  .p-about-issues__head {
    margin-bottom: 30px;
  }
}
.p-about-issues__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 5%;
}
@media screen and (width <= 767px) {
  .p-about-issues__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-about-issues__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 14px;
}
.p-about-issues__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #F4D4D4;
  color: #E17580;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 33px */
}
@media screen and (width <= 767px) {
  .p-about-issues__number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.p-about-issues__text {
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 31.5px */
}
@media screen and (width <= 767px) {
  .p-about-issues__text {
    font-size: 16px;
  }
}

.p-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0;
}
@media screen and (width <= 767px) {
  .p-arrow {
    padding: 30px 0;
  }
  .p-arrow svg {
    width: 65px;
  }
}
.p-arrow__icon {
  display: block;
}

.p-about-goal {
  margin-top: 40px;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-about-goal {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.p-about-goal__back {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-about-goal__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
}
.p-about-goal__left {
  width: 50%;
}
@media screen and (width <= 959px) {
  .p-about-goal__left {
    width: 100%;
  }
}
.p-about-goal__left .p-about-goal__img {
  display: none;
}
@media screen and (width <= 959px) {
  .p-about-goal__left .p-about-goal__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    display: block;
  }
}
.p-about-goal .p-page__heading {
  margin-block: 35px;
}
.p-about-goal__images {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 45%;
}
@media screen and (width <= 959px) {
  .p-about-goal__images {
    display: none;
  }
}
.p-about-goal__img {
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .p-issues__grid {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 16px;
  }
  .p-goal__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-goal__images {
    width: 100%;
    height: 220px;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .p-goal__img.-top {
    width: 65%;
    height: 160px;
  }
  .p-goal__img.-bottom {
    width: 50%;
    height: 120px;
  }
}
.p-activities {
  border-radius: 13px;
  border: 5px solid #EBE6D7;
  background: #F6F3EA;
  padding: 35px;
  margin-bottom: 120px;
}
.p-activities__content {
  border-radius: 11px;
  border: 3px solid #FFB4BD;
  padding: 50px 5%;
}
.p-activities__head {
  text-align: center;
}
.p-activities__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-top: 95px;
}
@media screen and (width <= 767px) {
  .p-activities__item {
    margin-top: 45px;
  }
}
.p-activities__item .p-page__heading {
  margin: 0px 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 28px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 959px) {
  .p-activities__item .p-page__heading {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    line-height: 1.5;
  }
}
@media screen and (width <= 767px) {
  .p-activities__item .p-page__heading {
    font-size: 18px !important;
    gap: 10px;
  }
}
.p-activities__item:last-child {
  margin-bottom: 0;
}
.p-activities__item.-img-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-activities__item.-img-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-activities__img-wrap {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 37%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (width <= 959px) {
  .p-activities__img-wrap {
    display: none;
  }
}
.p-activities__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.p-activities__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (width <= 959px) {
  .p-activities__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width <= 767px) {
  .p-activities__body .p-about-issues__number {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
.p-activities__body-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: none;
}
@media screen and (width <= 959px) {
  .p-activities__body-head {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 15px;
  }
}
.p-activities__body-head .p-activities__img {
  display: none;
}
@media screen and (width <= 959px) {
  .p-activities__body-head .p-activities__img {
    display: block;
    width: 100%;
    max-width: 500px;
  }
}
.p-activities__number {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #d4768a;
  color: #d4768a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.p-activities__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0 0 14px;
  line-height: 1.5;
}
.p-activities__text {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .p-activities {
    padding: 32px 20px 48px;
    border-radius: 12px;
  }
  .p-activities__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 20px;
    margin-bottom: 40px;
  }
  .p-activities__img-wrap {
    width: 100%;
  }
}
.p-about-domains {
  margin-bottom: 110px;
}
@media screen and (width <= 959px) {
  .p-about-domains {
    margin-bottom: 55px;
  }
}
.p-about-domains__head {
  text-align: center;
  margin-bottom: 60px;
}
.p-about-domains__figure {
  margin: 0;
  text-align: center;
}
.p-about-domains__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.p-about-support {
  margin-bottom: 250px;
}
@media screen and (width <= 959px) {
  .p-about-support {
    margin-bottom: 150px;
  }
}
@media screen and (width <= 767px) {
  .p-about-support {
    margin-bottom: 75px;
  }
}
.p-about-support__head {
  text-align: center;
  margin-bottom: 40px;
}
.p-about-support__content {
  border-radius: 25px;
  background: #F6F3EA;
  position: relative;
  padding: 50px 0 60px;
}
@media screen and (width <= 959px) {
  .p-about-support__content {
    padding: 30px 0;
  }
}
@media screen and (width <= 767px) {
  .p-about-support__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 0;
    overflow: hidden;
  }
}
.p-about-support__content:before {
  position: absolute;
  content: "";
  width: 25vw;
  height: 100%;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #F6F3EA), to(rgba(246, 243, 234, 0)));
  background: -webkit-linear-gradient(left, #F6F3EA 35%, rgba(246, 243, 234, 0) 100%);
  background: linear-gradient(90deg, #F6F3EA 35%, rgba(246, 243, 234, 0) 100%);
}
@media screen and (width <= 959px) {
  .p-about-support__content:before {
    width: 50vw;
    height: 100%;
    left: 75%;
  }
}
@media screen and (width <= 767px) {
  .p-about-support__content:before {
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-transform: unset;
            transform: unset;
    height: 25vw;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #F6F3EA), to(rgba(246, 243, 234, 0)));
    background: -webkit-linear-gradient(bottom, #F6F3EA 35%, rgba(246, 243, 234, 0) 100%);
    background: linear-gradient(0deg, #F6F3EA 35%, rgba(246, 243, 234, 0) 100%);
    top: 24vw;
  }
}
.p-about-support__inner {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-about-support__body {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 959px) {
  .p-about-support__body {
    width: 75%;
  }
}
@media screen and (width <= 767px) {
  .p-about-support__body {
    padding: 20px 0 0;
    width: 100%;
  }
}
.p-about-support__body .p-page__text {
  margin: 30px 0 50px;
}
@media screen and (width <= 959px) {
  .p-about-support__body .p-page__text {
    margin: 15px 0 20px;
  }
}
.p-about-support__benefits {
  border-radius: 18px;
  background: #FFF;
  padding: 10px 24px 24px;
}
@media screen and (width <= 959px) {
  .p-about-support__benefits {
    width: 90%;
  }
}
@media screen and (width <= 767px) {
  .p-about-support__benefits {
    width: 100%;
    padding: 10px 5%;
  }
}
.p-about-support__benefits-label {
  color: #E17580;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 28px */
  margin-bottom: 5px;
}
.p-about-support__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px 15px;
}
.p-about-support__benefits-item {
  color: #745454;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 28px */
  position: relative;
  padding-left: 1em;
  margin-left: 10px;
}
.p-about-support__benefits-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #d4768a;
}
@media screen and (width <= 767px) {
  .p-about-support__benefits-item {
    font-size: 14px;
  }
}
.p-about-support__img-wrap {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 46%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
@media screen and (width <= 767px) {
  .p-about-support__img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2.5/1;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.p-about-support__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

@media (max-width: 768px) {
  .p-about-support__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about-support__benefits-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}
.p-history {
  margin-bottom: 150px;
}
@media screen and (width <= 959px) {
  .p-history {
    margin-bottom: 100px;
  }
}
@media screen and (width <= 767px) {
  .p-history {
    margin-bottom: 75px;
  }
}
.p-history__content {
  position: relative;
}
.p-history__head {
  text-align: center;
  margin-bottom: 40px;
}
.p-history__box {
  padding: 50px 5% 0;
  position: relative;
  border-radius: 20px;
  border: 1px solid #D78C94;
  background: #FFF;
  overflow: hidden;
}
.p-history__deco {
  position: absolute;
  right: 0;
  top: 100px;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .p-history__deco {
    opacity: 0.5;
  }
}
.p-history__deco img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.85;
}
.p-history__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.p-history__timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  width: 6px;
  height: calc(100% + 50px);
  background-color: #E17580;
}
.p-history__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 50px;
}
.p-history__item:not(:last-child) {
  border-bottom: none;
}
.p-history__dot {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background-color: #fff;
  border: 17px solid #F6F3EA;
  width: 74px;
  height: 74px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-history__dot.-off {
  width: 40px;
  height: 40px;
  margin: 0 17px;
}
.p-history__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #E17580;
}
.p-history__year {
  width: auto;
  color: #E17580;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin-left: 60px;
  background: #fff;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3px;
  padding: 0 60px 0 14px;
}
.p-history__year.-off {
  opacity: 0;
}
.p-history__year span {
  color: #E17580;
  font-size: 16px;
  font-weight: 400;
}
.p-history__month {
  color: #E17580;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3px;
  z-index: 1;
  margin-right: 7.5%;
  width: 40px;
}
.p-history__month span {
  color: #E17580;
  font-size: 16px;
  font-weight: 400;
}
.p-history__month::before {
  content: "";
  position: absolute;
  left: -242px;
  top: 50%;
  width: 226px;
  height: 3px;
  background-color: #E17580;
}
.p-history__desc {
  color: #745454;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 31.5px */
}
.p-history__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -33px;
}
.p-history__more-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  padding: 15px 25px;
  gap: 100px;
  border: 1px solid #E17580;
  border-radius: 999px;
  color: #E17580;
  text-decoration: none;
  letter-spacing: 0.08em;
  background-color: #fff;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  cursor: pointer;
}
.p-history__more-btn:hover {
  background-color: #E17580;
  color: #fff;
}
.p-history__more-btn:hover .p-history__more-icon {
  color: #fff;
}
.p-history__more-icon {
  font-size: 18px;
  line-height: 1;
  color: #E17580;
}

@media (max-width: 768px) {
  .p-history__box {
    padding: 20px 5%;
  }
  .p-history .p-history__timeline::before {
    left: 23px;
    width: 4px;
  }
  .p-history__deco {
    display: none;
  }
  .p-history__item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .p-history .p-history__dot {
    width: 50px;
    height: 50px;
    border: 11px solid #F6F3EA;
  }
  .p-history .p-history__dot::after {
    width: 14px;
    height: 14px;
  }
  .p-history__year {
    padding: 0;
    margin-left: 50px;
    font-size: 18px;
    margin-top: 16px;
  }
  .p-history__year span {
    font-size: 14px;
  }
  .p-history__month {
    margin-top: 16px;
    font-size: 18px;
    margin-left: 15px;
  }
  .p-history__month span {
    font-size: 14px;
  }
  .p-history__month::before {
    left: -145px;
    top: 45%;
    width: 70px;
    height: 3px;
  }
  .p-history__desc {
    padding-left: 60px;
    font-size: 14px;
    width: 100%;
  }
  .p-history .p-history__dot.-off {
    width: 36px;
    height: 37px;
    margin: 0 8px;
  }
  .p-history .p-history__month.-off {
    margin-top: 9px;
  }
  .p-history .p-history__month.-off::before {
    left: -145px;
    top: 45%;
    width: 125px;
    height: 3px;
  }
}
.c-card__member {
  border-radius: 12px;
  border: 1px solid #D78C94;
  background: #FFF;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1400px) {
  .c-card__member {
    gap: 20px;
  }
  .c-card__member .c-card__member-thumbnail img {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .c-card__member {
    gap: 15px;
    padding: 15px;
  }
  .c-card__member .c-card__member-thumbnail img {
    width: 80px;
  }
}
.c-card__member-category {
  color: #E17580;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  border-radius: 50px;
  background: #F6F3EA;
  text-align: center;
  padding: 0 17px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1300px) {
  .c-card__member-category {
    font-size: 15px;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  .c-card__member-category {
    font-size: 14px;
  }
}
.c-card__member-company {
  color: #E17580;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 11px 0 5px;
  height: 3em;
}
@media (max-width: 1300px) {
  .c-card__member-company {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-card__member-company {
    font-size: 15px;
    height: auto;
  }
}
.c-card__member-name {
  color: #E17580;
  font-family: "Zen Maru Gothic";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1300px) {
  .c-card__member-name {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .c-card__member-name {
    font-size: 20px;
  }
}
.c-card__member-roma {
  color: #E0DDD2;
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
@media (max-width: 1300px) {
  .c-card__member-roma {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-card__member-roma {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .p-activities__head .p-section__heading {
    font-size: 24px;
    letter-spacing: 1px;
  }
  .p-activities__head .p-section__heading::after {
    right: -40px;
  }
}
@media screen and (width <= 767px) {
  .p-service-inquiry__inner .p-section__heading::after {
    right: 0px;
  }
}
@media (max-width: 599px) {
  .p-about-member.p-front-topics .c-card__article:nth-child(5), .p-about-member.p-front-topics .c-card__article:nth-child(6) {
    display: block;
  }
}
.p-about-head .p-page__heading {
  max-width: 670px;
}

.c-card__member-thumbnail {
  width: 115px;
  aspect-ratio: 1;
  height: auto;
  border-radius: 500px;
  overflow: hidden;
}
.c-card__member-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (max-width: 1400px) {
  .c-card__member-thumbnail {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .c-card__member-thumbnail {
    width: 80px;
  }
}
@media (max-width: 599px) {
  .p-about-member.p-front-topics .p-front-topics__swiper .swiper-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 599px) {
  .p-about-member.p-front-topics .p-front-topics__swiper .swiper-slide {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .p-about-member.p-front-topics .p-front-salary__progress-bar, .p-about-member.p-front-topics .p-front-salary__progress-count, .p-about-member.p-front-topics .p-front-salary__progress-flex {
    display: block;
  }
}
.p-about-member .c-card__article {
  cursor: -webkit-grab;
  cursor: grab;
}

@media (max-width: 768px) {
  .p-front-topics__swiper {
    overflow: unset;
  }
}
.p-history__item:nth-child(n+5) {
  display: none;
}

.p-history__item.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-service-understand {
  text-align: center;
}
.p-service-understand__head {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
}
@media screen and (width <= 767px) {
  .p-service-understand__head {
    margin-bottom: 40px;
  }
  .p-service-understand__head .p-section__heading br {
    display: none;
  }
  .p-service-understand__head .p-section__heading:after {
    top: -20px;
    right: 0px;
    width: 85.981px;
    aspect-ratio: 116/123;
  }
}
.p-service-understand__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}
.p-service-understand__head-deco {
  position: absolute;
  top: -8px;
  right: -56px;
}
.p-service-understand__head-deco img {
  display: block;
}
.p-service-understand__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media screen and (width <= 959px) {
  .p-service-understand__cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (width <= 767px) {
  .p-service-understand__cards {
    margin-bottom: 30px;
  }
}
.p-service-understand__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  border-radius: 10px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 16px 15px 42px;
  text-align: left;
  border-radius: 13px;
  border: 2px solid #E17580;
  background: #FFF;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-service-understand__card {
    padding: 15px;
  }
}
.p-service-understand__card.-hand .p-service-understand__card-img {
  width: 35%;
}
.p-service-understand__card-img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 30%;
}
@media screen and (width <= 767px) {
  .p-service-understand__card-img {
    opacity: 0.5;
    position: absolute;
    top: 15px;
  }
}
.p-service-understand__card-img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-service-understand__card-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service-understand__card-body .p-page__head {
  margin-bottom: 15px;
}
.p-service-understand__note {
  color: #745454;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 35px */
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
@media screen and (width <= 767px) {
  .p-service-understand__note {
    font-size: 16px;
  }
}

.p-service-genetic {
  margin-bottom: 120px;
}
@media screen and (width <= 767px) {
  .p-service-genetic {
    margin-bottom: 60px;
  }
}
@media screen and (width <= 767px) {
  .p-service-genetic .p-service-genetic__chart-arrow {
    margin: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-service-genetic__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10%;
  width: 90%;
  margin: 0 auto;
}
@media screen and (width <= 1265px) {
  .p-service-genetic__inner {
    width: 100%;
    gap: 5%;
  }
}
@media screen and (width <= 1100px) {
  .p-service-genetic__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-service-genetic__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.p-service-genetic__body .p-section__heading {
  margin-left: 0;
  margin-bottom: 35px;
}
.p-service-genetic__chart {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 47px;
}
@media screen and (width <= 767px) {
  .p-service-genetic__chart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.p-service-genetic__chart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
.p-service-genetic__chart-label {
  color: #FFF;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  border-radius: 15px;
  background: #E17580;
  padding: 5px 19px;
  margin: 0;
  white-space: nowrap;
}
@media screen and (width <= 767px) {
  .p-service-genetic__chart-label {
    font-size: 17px;
  }
}
.p-service-genetic__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-service-genetic__circle {
    width: 150px;
    height: 150px;
  }
}
.p-service-genetic__chart-arrow {
  margin-top: 35px;
}
.p-service-genetic__chart-caption {
  color: #E17580;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 164%; /* 32.8px */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}
@media screen and (width <= 767px) {
  .p-service-genetic__chart-caption {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .p-understand__cards {
    grid-template-columns: 1fr;
  }
  .p-understand__title {
    font-size: 20px;
  }
  .p-understand__head-deco {
    right: -32px;
    width: 40px;
  }
  .p-understand__head-deco img {
    width: 40px;
  }
  .p-genetic__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .p-genetic__title {
    font-size: 20px;
  }
  .p-genetic__chart {
    gap: 16px;
  }
}
.p-service-pmgt {
  border-radius: 20px;
  border: 5px solid #EBE6D7;
  background: #F6F3EA;
  padding: 50px 3% 70px;
}
@media screen and (width <= 959px) {
  .p-service-pmgt {
    padding-bottom: 40px;
  }
}
@media screen and (width <= 767px) {
  .p-service-pmgt {
    padding: 30px 5%;
  }
}
.p-service-pmgt__hero {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (width <= 767px) {
  .p-service-pmgt__hero {
    margin-bottom: 30px;
  }
}
.p-service-pmgt__hero .p-page__heading {
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .p-service-pmgt__hero .p-page__heading {
    font-size: 22px;
  }
}
@media screen and (width <= 767px) {
  .p-service-pmgt__hero .p-page__heading {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.p-service-pmgt__hero-sub {
  color: #745454;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 31.5px */
  margin-bottom: 12px;
}
@media screen and (width <= 767px) {
  .p-service-pmgt__hero-sub {
    font-size: 16px;
  }
}
.p-service-pmgt__hero-lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
  margin: 0 0 32px;
}
.p-service-pmgt__hero-border {
  width: 100%;
  height: 39px;
  overflow: hidden;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-service-pmgt__hero-border {
    height: 30px;
  }
}
.p-service-pmgt__hero-border svg {
  position: absolute;
  width: 1294px;
  max-width: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width <= 767px) {
  .p-service-pmgt__hero-border svg {
    width: auto;
    height: 30px;
  }
}
.p-service-pmgt__purpose {
  text-align: center;
  margin-bottom: 40px;
}
.p-service-pmgt__purpose .p-section__heading {
  margin-bottom: 32px;
}
.p-service-pmgt__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  text-align: left;
  width: 100%;
  margin: 0 auto;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-service-pmgt__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 30px;
  padding-bottom: 28px;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-service-pmgt__card {
    gap: 10px;
  }
}
.p-service-pmgt__card .p-page__heading {
  font-size: 20px;
  line-height: 150%;
  padding-right: 0;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__card .p-page__heading {
    font-size: 20px !important;
  }
}
@media screen and (width <= 767px) {
  .p-service-pmgt__card .p-page__heading {
    padding: 0;
    font-size: 18px !important;
  }
}
.p-service-pmgt__card-illust {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  aspect-ratio: 5/3;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: auto;
  width: 300px;
  left: 0;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__card-illust {
    margin: 0 auto;
  }
}
@media screen and (width <= 767px) {
  .p-service-pmgt__card-illust {
    height: auto;
    top: unset;
    bottom: 0;
    display: none;
  }
}
.p-service-pmgt__card-illust img {
  width: 70%;
  display: block;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0;
}
.p-service-pmgt__card-illust img.illust2 {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.p-service-pmgt__card-body {
  padding: 0 5% 20px 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (width <= 767px) {
  .p-service-pmgt__card-body {
    padding: 0 5%;
    gap: 13px;
  }
}
.p-service-pmgt__card-number {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #d4768a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-service-pmgt .p-page__text {
  padding: 0 5% 0 200px;
}
@media screen and (width <= 767px) {
  .p-service-pmgt .p-page__text {
    padding: 0 5%;
  }
}
.p-service-pmgt__cases {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
  padding: 12px 42px;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__cases {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 5%;
  }
}
.p-service-pmgt__cases-label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: 2px;
  color: #d4768a;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 41px;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__cases-label {
    padding: 0;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1.5px dashed #e8c8cc;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-service-pmgt__cases-label br {
    display: none;
  }
}
.p-service-pmgt__cases-list {
  border-left: 1.5px dashed #e8c8cc;
  list-style: none;
  padding: 12px 0 12px 40px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
@media screen and (width <= 959px) {
  .p-service-pmgt__cases-list {
    border: none;
    width: 100%;
    padding: 0;
  }
}
@media screen and (width <= 767px) {
  .p-service-pmgt__cases-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.p-service-pmgt__cases-item {
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 31.5px */
  padding-left: 16px;
  position: relative;
}
.p-service-pmgt__cases-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #745454;
}

@media (max-width: 768px) {
  .p-pmgt__hero-lead {
    font-size: 18px;
  }
  .p-pmgt__hero-border {
    width: 90%;
  }
  .p-pmgt__cards {
    grid-template-columns: 1fr;
  }
  .p-pmgt__cases {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-pmgt__cases-label {
    border-right: none;
    border-bottom: 1.5px dashed #e8c8cc;
    width: 100%;
    padding: 14px 20px;
  }
  .p-pmgt__cases-list {
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }
}
.p-service-inquiry {
  position: relative;
}
.p-service-inquiry .p-section__heading {
  margin-bottom: 35px;
}
.p-service-inquiry .p-page__text {
  width: 100%;
  margin: 0 auto;
  font-size: 20px;
  position: relative;
  max-width: 845px;
}
.p-service-inquiry__img-01 {
  position: absolute;
  left: calc(50% - 400px - 328px - 60px);
  width: auto;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1300px) {
  .p-service-inquiry__img-01 {
    left: -100px;
    opacity: 0.3;
  }
}
@media screen and (width <= 767px) {
  .p-service-inquiry__img-01 {
    display: none;
  }
}
.p-service-inquiry__img-02 {
  position: absolute;
  right: calc(50% - 400px - 328px - 60px);
  width: auto;
  height: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1300px) {
  .p-service-inquiry__img-02 {
    right: -100px;
    opacity: 0.3;
  }
}
@media screen and (width <= 767px) {
  .p-service-inquiry__img-02 {
    display: none;
  }
}

@media screen and (width <= 959px) {
  .p-service-understand__note .sp-none {
    display: none;
  }
}
.p-service-add__inner {
  margin-top: 50px;
  border-radius: 25px;
  background: #F6F3EA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .p-service-add__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 5%;
    gap: 25px;
  }
}
@media screen and (width <= 767px) {
  .p-service-add__inner {
    padding: 20px 5%;
    margin-top: 30px;
  }
}
.p-service-add .p-service-genetic__chart-caption {
  margin: 0;
  font-size: 24px;
}
@media screen and (width <= 959px) {
  .p-service-add .p-service-genetic__chart-caption {
    font-size: 20px;
  }
  .p-service-add .p-service-genetic__chart-caption br {
    display: none;
  }
}
@media screen and (width <= 767px) {
  .p-service-add .p-service-genetic__chart-caption {
    font-size: 18px;
  }
}
.p-service-add .p-service-genetic__chart-caption {
  letter-spacing: 2px;
}
@media screen and (width <= 767px) {
  .p-service-add .p-service-genetic__chart-arrow {
    margin: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.p-service-add .p-service-understand__note {
  margin: 15px 0 0;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (width <= 767px) {
  .p-service-add .p-service-understand__note {
    font-size: 16px;
  }
}

.c-org-card__thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-archive__category {
  border-radius: 20px;
  border: 5px solid #EBE6D7;
  background: #F6F3EA;
  padding: 30px 40px;
  width: 35%;
  max-width: 465px;
}

.c-org-card-list {
  margin-bottom: 80px;
}

.l-company-panels {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-company-top__title {
  font-size: 28px;
}

.p-page__heading {
  color: #E17580;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 52.5px */
  letter-spacing: 3px;
}
@media screen and (width <= 959px) {
  .p-page__heading {
    font-size: 26px !important;
  }
}
@media screen and (width <= 767px) {
  .p-page__heading {
    font-size: 20px !important;
  }
}

.p-page__head {
  color: #E17580;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: 2px;
}
@media screen and (width <= 767px) {
  .p-page__head {
    font-size: 18px;
  }
}

.p-page__text {
  color: #745454;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (width <= 767px) {
  .p-page__text {
    font-size: 15px !important;
  }
}
.p-page__text.-wide {
  line-height: 180% !important;
}

.l-gift-contact .l-form__input[type=password] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e3ddce;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.l-form__label {
  color: #E17580;
}

.l-cta__login-error {
  color: #f00;
  margin-bottom: 10px;
  font-size: 14px;
}

.region-btn.off {
  display: none;
}

@media screen and (width > 767px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */