@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #333333;
  background: #E5E5E0;
  position: relative;
}
body.is-drawerActive {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body {
    background-color: rgba(212, 212, 207, .3);
  }
}

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

main {
  padding-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 5.3125rem;
    background-color: rgba(212, 212, 207, .3);
  }
}

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

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

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

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

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

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

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

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

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

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-bread {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-bread {
    margin-bottom: 1.125rem;
    max-width: 46.875rem;
    padding-right: 1.6875rem;
    padding-left: 1.6875rem;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1400px;
  padding-right: 9.375rem;
  padding-left: 9.375rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 46.875rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.l-sec4 {
  max-width: 93.75rem;
  margin: 0 auto;
}

.c-btn__animation {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-btn__animation:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.js-fadein-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
.js-fadein-up.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fadein--delay {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.js-fadein--first {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.js-fadein--first.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-icon {
  display: inline-block;
  font-size: 50px;
  -webkit-animation: floatUpDown 2s ease-in-out infinite;
          animation: floatUpDown 2s ease-in-out infinite;
}

@-webkit-keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.c-ac__item {
  background: white;
  padding: 2.8125rem 3.3125rem 3rem;
  border-radius: 20px;
}
.c-ac__item:not(:first-child) {
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .c-ac__item:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-ac__item {
    padding: 1.125rem 1.4375rem 1rem;
  }
}

.c-ac__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-ac__icon {
  min-width: 3.1875rem;
  height: 2.625rem;
  text-align: center;
  line-height: 2.625rem;
  font-size: 2.4375rem;
  color: #A08031;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-ac__icon {
    font-size: 1.25rem;
  }
}

.c-ac__text {
  font-size: 2rem;
  padding-left: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-ac__text {
    font-size: 0.9375rem;
  }
}

.c-ac__A {
  display: none;
}

.c-ac__Acontents {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: solid 1px #818181;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .c-ac__Acontents {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.c-ac__Aicon {
  color: #CF805D;
  font-size: 2.1875rem;
  font-weight: 500;
  min-width: 3.3125rem;
  height: 2.625rem;
  text-align: center;
  line-height: 2.625rem;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-ac__Aicon {
    min-width: 3.1875rem;
    font-size: 1.25rem;
  }
}

.c-ac__Atext {
  font-size: 1.25rem;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-ac__Atext {
    font-size: 0.875rem;
  }
}

.c-ac__btn {
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-ac__btn {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.c-ac__btn.is-open .c-ac-bar2 {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.c-ac-bar1 {
  width: 1.1875rem;
  height: 0.1875rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-ac-bar1 {
    width: 0.9375rem;
    height: 0.125rem;
  }
}

.c-ac-bar2 {
  position: absolute;
  width: 0.1875rem;
  height: 1.1875rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-ac-bar2 {
    width: 0.125rem;
    height: 0.9375rem;
  }
}

.breadcrumb {
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-align: left;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 100%;
    font-size: 0.75rem;
    margin: 1.25rem auto 0;
  }
}

.current-item {
  color: #BE805D; /* 通常のリンク */
  text-decoration: none;
}

.c-btn__base {
  width: 32.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn__base {
    width: 19.9375rem;
  }
}

.c-btnContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 14.6875rem;
}
@media screen and (max-width: 767px) {
  .c-btnContents {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.0625rem;
  }
}

.c-btnContents__btn img {
  width: 31.9375rem;
  height: 13rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-btnContents__btn {
    width: 19.9375rem;
    height: auto;
    margin: 0 auto;
  }
}

.c-commit__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; /* レスポンシブ対策 */
}
@media screen and (max-width: 767px) {
  .c-commit__contents {
    display: block;
  }
}

.c-commit__left {
  position: relative;
  width: 41.4375rem;
  height: 55.6875rem;
  z-index: 1;
  margin-right: -5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-commit__left {
    width: 21rem;
    height: auto;
    margin: 0 auto;
  }
}
.c-commit__left img {
  width: 712px;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  display: block;
}

.c-commit__right {
  max-width: 31.625rem;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .c-commit__right {
    width: 100%;
    margin: 0 auto;
  }
}

.c-commit__rightText1 {
  width: 26.125rem;
}

.c-commit__rightText2 {
  font-size: 1.8125rem;
  line-height: 2.2068965517;
  margin-top: 3.125rem;
}
.c-commit__rightText2 span {
  background-color: #A08031;
  color: #fff;
  border-radius: 0 50px 50px 0;
  padding: 0.1875rem 1.25rem 0.1875rem 1.875rem;
  margin: 0 0.3125rem 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-commit__rightText2 span {
    letter-spacing: 2px;
    margin: 0;
    padding: 0.1875rem 0.9375rem 0.1875rem 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-commit__rightText2 {
    width: 19.9375rem;
    font-size: 1.1875rem;
    margin: 1.875rem auto 0;
  }
}

.c-commit__rightItems {
  margin-top: 3.875rem;
  padding: 2.625rem 1.875rem;
  background: rgba(219, 214, 172, .6);
  border-radius: 30px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-commit__rightItems {
    margin-top: 1.875rem;
    padding: 1.5rem;
    width: 100%;
  }
}

.c-commit__rightItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.0625rem;
     -moz-column-gap: 1.0625rem;
          column-gap: 1.0625rem;
  padding: 1.0625rem 0;
  font-size: 1.25rem;
}
.c-commit__rightItem:not(:last-child) {
  border-bottom: dashed 2px #A08031;
}
.c-commit__rightItem img {
  width: 1.875rem;
  height: auto;
  display: block;
}

.c-commit__contents2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.75rem;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-commit__contents2 {
    margin-top: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
  }
}

.c-commit__contents2text {
  font-size: 2.375rem;
  line-height: 1.8157894737;
}
@media screen and (max-width: 767px) {
  .c-commit__contents2text {
    width: 19.9375rem;
    margin: 0 auto;
  }
}
.c-commit__contents2text span {
  background-color: #A08031;
  color: #fff;
  border-radius: 0 50px 50px 0;
  padding: 0.1875rem 1.25rem 0.1875rem 1.875rem;
  margin: 0 0.3125rem 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-commit__contents2text span {
    letter-spacing: 2px;
    margin: 0;
    padding: 0.1875rem 0.9375rem 0.1875rem 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .c-commit__contents2text {
    font-size: 1.1875rem;
  }
}

.c-commit__contents2Img {
  width: 19.625rem;
}
@media screen and (max-width: 767px) {
  .c-commit__contents2Img {
    width: 13.5rem;
  }
}

.c-commit__rightIcon {
  position: absolute;
  width: 0.75rem;
  bottom: 1.5%;
  left: 45%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-commit__rightIcon {
    width: 0.375rem;
    bottom: -2%;
    left: 50%;
  }
}

.c-commit__contents2text-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-commit__contents2text-mobile {
    display: inline-block;
  }
}

.c-contactBanner {
  background: #CAC59B;
  border-radius: 6.875rem;
  padding: 10.6875rem 0 3.75rem;
  max-width: 68.625rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contactBanner {
    padding: 7.8125rem 0 5.3125rem;
    border-radius: 5.3125rem;
  }
}

.c-contactBanner__food {
  width: 13.4375rem;
  position: absolute;
  left: 50%;
  top: -12%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-contactBanner__food {
    width: 9.75rem;
  }
}

.c-contactBanner__text {
  font-size: 1.25rem;
  max-width: 48.4375rem;
  margin: 0 auto;
}
.c-contactBanner__text span {
  color: #BE805D;
  font-weight: 600;
}
.c-contactBanner__title {
  width: 27.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-contactBanner__title {
    width: 18.375rem;
  }
}

.c-contactBanner__text {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .c-contactBanner__text {
    font-size: 0.9375rem;
    margin-top: 2.1875rem;
    width: 19.75rem;
  }
}

.c-contactBanner__btn {
  margin: 2.5rem auto 0;
  width: 32.5rem;
}
@media screen and (max-width: 767px) {
  .c-contactBanner__btn {
    width: 19.9375rem;
  }
}

.c-fv__slideImg1,
.c-fv__slideImg2 {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1s ease;
  transition: opacity 0.8s ease, -webkit-transform 1s ease;
  transition: opacity 0.8s ease, transform 1s ease;
  transition: opacity 0.8s ease, transform 1s ease, -webkit-transform 1s ease;
  pointer-events: none;
}

.fv-swiper-slide-active .c-fv__slideImg1 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.fv-swiper-slide-active .c-fv__slideImg2 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.c-fv__slideFood {
  position: absolute;
  top: -6%;
  left: 11%;
  width: 30rem;
  z-index: 2;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (max-width: 767px) {
  .c-fv__slideFood {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    width: 13.8125rem;
    top: unset;
    left: unset;
  }
}

.fv-swiper-slide-active .c-fv__slideFood {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-fv__slideImg1 {
  bottom: -0.5625rem;
  left: -2.3125rem;
}
@media screen and (max-width: 1330px) {
  .c-fv__slideImg1 {
    bottom: 9%;
    left: -14%;
  }
}
@media screen and (max-width: 767px) {
  .c-fv__slideImg1 {
    bottom: -7%;
    left: -23%;
  }
}

.c-fv__slideImg2 {
  top: 0.625rem;
  right: -5.3125rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slideImg2 {
    top: -6%;
    right: -14%;
  }
}
@media screen and (max-width: 1330px) {
  .c-fv__slideImg2 {
    right: -12%;
  }
}

.c-fv__slide3food {
  top: -7%;
}
@media screen and (max-width: 767px) {
  .c-fv__slide3food {
    top: unset;
  }
}

.c-fv__slide1-1 {
  width: 15.1875rem;
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
}
@media screen and (max-width: 767px) {
  .c-fv__slide1-1 {
    width: 6.5625rem;
    -webkit-transform: translateY(20) rotate(0deg);
            transform: translateY(20) rotate(0deg);
  }
}

.c-fv__slide1-2 {
  width: 7.375rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slide1-2 {
    width: 3.1875rem;
  }
}

.c-fv__slide2-1 {
  bottom: 12%;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slide2-1 {
    width: 5.125rem;
    bottom: -8%;
    left: -10%;
  }
}

.c-fv__slide2-2 {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slide2-2 {
    width: 3.25rem;
    bottom: -15%;
    right: -19%;
  }
}

.c-fv__slide3-1 {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slide3-1 {
    width: 5rem;
    bottom: -9%;
    left: -16%;
  }
}

.c-fv__slide3-2 {
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-fv__slide3-2 {
    width: 3rem;
    top: -13%;
    right: -17%;
  }
}

.fv-swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 37.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -11%;
  left: -13%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1740px) {
  .fv-swiper-slide {
    left: -17%;
    top: -5%;
  }
}
@media screen and (max-width: 767px) {
  .fv-swiper-slide {
    width: 13.75rem;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: 3%;
    top: -6%;
    overflow: visible;
  }
  .fv-swiper-slide:last-child {
    margin-right: 0;
  }
}

.swiper-android .fv-swiper-slide {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .swiper-android .fv-swiper-slide {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.fv-swiper-slide-next {
  top: -26%;
  left: -19%;
}
@media screen and (max-width: 767px) {
  .fv-swiper-slide-next {
    top: unset;
    left: unset;
  }
}

.fv-swiper-slide-prev {
  top: 0%;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .fv-swiper-slide-prev {
    top: unset;
    left: unset;
  }
}

.c-course__title {
  width: 22.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-course__title {
    width: 12.9375rem;
  }
}

.c-subTitle {
  font-size: 1.5625rem;
  text-align: center;
  letter-spacing: 1;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-subTitle {
    font-size: 1.25rem;
    letter-spacing: 0;
  }
}

.js-pagetop {
  position: fixed;
  width: 4.4375rem;
  bottom: 10.0625rem;
  right: 10%;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .js-pagetop {
    width: 4.0625rem;
    bottom: 3.75rem;
    right: 2%;
  }
}

.c-voice__cardItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.875rem;
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .c-voice__cardItems {
    display: block;
  }
}

.c-voice__cardItem {
  background: #fff;
  border-radius: 27px;
  padding: 0 0.625rem 2.4375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-voice__cardItem {
    min-width: 20rem;
    padding: 0 0.9375rem 1.5rem;
  }
}

.c-voice__img {
  position: relative;
  width: 10.1875rem;
  height: 10.1875rem;
  background: #C1C1C1;
  border-radius: 10px;
  margin: -2.1875rem auto;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
}
@media screen and (max-width: 767px) {
  .c-voice__img {
    width: 6.5625rem;
    height: 6.5625rem;
  }
}

.c-voice__img1 {
  width: 10.375rem;
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
  top: -9px;
  left: -15px;
}
@media screen and (max-width: 767px) {
  .c-voice__img1 {
    width: 7.125rem;
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
    top: -7px;
    left: -15px;
  }
}

.c-voice__PfItems {
  padding-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 1.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-voice__pfName {
  letter-spacing: 1px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-voice__pfName {
    font-size: 1rem;
  }
}

.c-voice__pfGender {
  letter-spacing: 1px;
  margin-left: 0.625rem;
}
.c-voice__pfGender span {
  border-radius: 6px;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-voice__pfGender {
    font-size: 1rem;
  }
}

.is-female {
  border: solid 2px #D74517;
  color: #D74517;
}

.is-male {
  border: solid 2px #2986BD;
  color: #2986BD;
}

.c-voice__pfPurpose {
  margin-left: 0.625rem;
  background: #CECECE;
  border-radius: 4px;
  padding: 0.3125rem 1.0625rem;
}
@media screen and (max-width: 767px) {
  .c-voice__pfPurpose {
    font-size: 1rem;
    letter-spacing: 1px;
  }
}

.c-voice__course {
  margin-top: 0.8125rem;
  font-size: 1.375rem;
  color: #333333;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .c-voice__course {
    font-size: 1rem;
    gap: 0.625rem;
    letter-spacing: 1px;
  }
}

.c-voice__courseSelect {
  background: #DBD6AC;
  padding: 0.375rem 0.5rem;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .c-voice__courseSelect {
    font-size: 0.9375rem;
    padding: 0.25rem 0;
    min-width: 9.1875rem;
    text-align: center;
  }
}

.c-voice__star {
  width: 13.25rem;
  margin: 1.8125rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.c-voice__star img {
  width: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-voice__star img {
    width: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-voice__star {
    width: 9.1875rem;
    margin: 1.25rem auto 0;
  }
}

.c-voiceCardText {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1.875rem;
  max-width: 23.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-voiceCardText {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}
.c-voice__photo_note{
  max-width: 23.1875rem;
    margin: 37px auto 0;
    font-size: 16px;
}

.p-footer {
  margin-top: 22.875rem;
  padding: 11.375rem 0 6.8125rem;
  background-color: #549E67;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 0;
    padding: 6.875rem 1.75rem 2.9375rem 1.625rem;
  }
}

.p-footer__logo {
  width: 14.625rem;
  margin: 0 auto;
  position: absolute;
  top: -20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 10.3125rem;
    top: -8%;
  }
}

.p-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .p-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.6875rem;
    width: 21.25rem;
    margin: 0 auto;
  }
}

.p-footer__leftItem img {
  width: 1.6875rem;
  height: 1.6875rem;
}

.p-footer__left {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1.875rem 3.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 1.0625rem;
  }
}

.p-footer__leftItem {
  font-weight: 500;
  color: #fff;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__leftItem {
    font-size: 1.0625rem;
  }
}
.p-footer__leftItem a {
  gap: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media screen and (max-width: 767px) {
  .p-footer__leftItem a {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__leftItem a img {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

.p-footer__right {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 2.8125rem 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    padding: 1.875rem 1.875rem 1.625rem 1.875rem;
  }
}

.p-footer-title {
  font-weight: 600;
  color: #549E67;
  font-size: 1.1875rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer-title {
    font-size: 1.25rem;
  }
}
.p-footer-title::after {
  content: "";
  position: absolute;
  width: 0.4375rem;
  height: 1.375rem;
  background-color: #549E67;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__right-text {
  font-size: 0.875rem;
  color: #333333;
  letter-spacing: 1px;
}
.p-footer__right-text:not(:first-child) {
  letter-spacing: 0;
  margin-top: 0.8125rem;
}

.p-footer__items {
  margin-top: 5.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__items {
    gap: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 20rem;
    margin: 2.5rem auto 0;
  }
}

.p-footer__item {
  font-weight: 500;
  font-size: 1.0625rem;
  color: #fff;
}
.p-footer__item a {
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__item {
    display: inline-block;
  }
}

.p-footer__copy {
  font-family: "acumin-variable", sans-serif;
  color: #fff;
  font-size: 1.0625rem;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 2.625rem;
}

.p-header {
  position: fixed;
  z-index: 1000000;
  visibility: visible;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header {
    min-height: 6rem;
  }
}
.p-header.is-active {
  z-index: 1000;
}
.p-header.is-active .drawerBtn1 {
  position: absolute;
  top: 45%;
  left: 13%;
  -webkit-transform: rotate(-129deg);
          transform: rotate(-129deg);
}
.p-header.is-active .drawerBtn2 {
  position: absolute;
  top: 45%;
  left: 23%;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.p-header.is-active .p-header__drawer {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 2s ease 0s;
  transition: -webkit-transform 2s ease 0s;
  transition: transform 2s ease 0s;
  transition: transform 2s ease 0s, -webkit-transform 2s ease 0s;
}

.p-headerMain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}
@media screen and (max-width: 767px) {
  .p-headerMain {
    height: 6rem;
  }
}

.p-headerBg {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}

.p-headerBgImg {
  min-height: 12.9375rem;
}
@media screen and (max-width: 767px) {
  .p-headerBgImg {
    min-height: 6rem;
  }
}

.p-headerLogo {
  position: absolute;
  top: 4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 150;
}
.p-headerLogo img {
  width: 25.9375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-headerLogo img {
    width: 13.1875rem;
    top: 6%;
  }
}

.p-header__drawerBtn {
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 250;
}
@media screen and (max-width: 767px) {
  .p-header__drawerBtn {
    right: 6%;
    top: 33%;
  }
}

.p-drawer__circle {
  position: relative;
  width: 8.0625rem;
  height: 8.0625rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__circle {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.drawerBtn1 {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 200;
  width: 5.3125rem;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media screen and (max-width: 767px) {
  .drawerBtn1 {
    width: 2.0625rem;
  }
}

.drawerBtn2 {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 200;
  width: 5.3125rem;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
@media screen and (max-width: 767px) {
  .drawerBtn2 {
    width: 2.0625rem;
  }
}

.p-header__drawer {
  padding: 18.75rem 1.6875rem 11.25rem 1.6875rem;
  background: rgba(207, 128, 93, .9);
  position: fixed;
  top: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  width: 100vw;
  height: 100vh;
  max-height: 67.5rem;
  overflow-y: auto;
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  -webkit-transition: -webkit-transform 2s ease 0s;
  transition: -webkit-transform 2s ease 0s;
  transition: transform 2s ease 0s;
  transition: transform 2s ease 0s, -webkit-transform 2s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    padding: 5rem 1.5625rem 5.625rem 1.5625rem;
    min-height: unset;
  }
}

.p-header__drawerItems {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 0 4.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-header__drawerItems {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
}

.p-header__drawerItem {
  font-size: 1.625rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.7692307692;
  border-bottom: dashed 2px #fff;
  padding: 1.5625rem 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-header__drawerItem:last-child {
    border-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-header__drawerItem {
    font-size: 1.0625rem;
    padding: 0.9375rem 0;
  }
}
.p-header__drawerItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header__drawerItem a {
    gap: 0.9375rem;
  }
}
.p-header__drawerItem img {
  width: 2.3125rem;
  height: 2.3125rem;
}

.p-header__btn {
  padding-top: 7.1875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-header__btn {
    padding-top: 2.5rem;
  }
}

.p-test {
  color: red;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

.p-commit__title {
  width: 38.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-commit__title {
    width: 21.375rem;
  }
}

.p-commit__subTitle {
  margin-top: 1.25rem;
}
.p-commitSec1 {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec1 {
    margin-top: 2.1875rem;
  }
}

.p-commitSec2 {
  margin: 20rem auto 0;
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec2 {
    margin: 4.0625rem auto 0;
  }
}

.p-commitSec2__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-commitSec2__contents {
    gap: 1.875rem;
    width: 23.4375rem;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-commitSec2__text {
  width: 23.375rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec2__text {
    width: 4.5rem;
    margin-left: 1.875rem;
  }
}

.p-commitSec2__img {
  width: 30.25rem;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec2__img {
    margin-top: 2.0625rem;
    width: 15.3125rem;
    margin-left: auto;
  }
}

.p-commitSec2__img2 {
  width: 35.625rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec2__img2 {
    margin-left: auto;
  }
}

.p-commitSec2__text2 {
  font-size: 1.375rem;
  margin-top: 3.4375rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-commitSec2__text2:nth-of-type(2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-commitSec2__text2 {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
    padding: 0 1.5625rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .p-commitSec2__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-commitSec2__img2 {
    width: 21.625rem;
  }
}

.p-commitSec3 {
  margin: 20rem auto;
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec3 {
    margin: 4.0625rem auto 0;
  }
}

.p-commitSec3__mainTitle {
  width: 17.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__mainTitle {
    width: 10.5rem;
  }
}

.p-commitSec3__items {
  margin-top: 6.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 85px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__items {
    width: 20rem;
    row-gap: 2.8125rem;
    margin: 1.875rem auto 0;
    grid-template-columns: 1fr;
  }
}

.p-commitSec3__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__head {
    gap: 2.1875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-commitSec3__numberImg {
  width: 5.875rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__numberImg {
    width: 4.375rem;
  }
}

.p-commitSec3__Img {
  margin-top: 1.875rem;
  width: 33.3125rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__Img {
    margin-top: 1.25rem;
    width: 19.9375rem;
  }
}

.p-commitSec3__title {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__title {
    font-size: 1.375rem;
    letter-spacing: 1px;
  }
}

.p-commitSec3__text {
  margin-top: 1.875rem;
  font-size: 1.375rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__text {
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.p-commitSec3__btn {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-commitSec3__btn {
    margin-top: 3.5rem;
  }
}

.p-company__howBtn {
  width: 31.9375rem;
  margin: 14.75rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-company__howBtn {
    width: 19.9375rem;
    margin: 5.875rem auto 0;
  }
}

.p-company__title {
  width: 28.375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    width: 16.25rem;
  }
}

.p-company__subTitle {
  margin-top: 1.25rem;
}

.p-companySec1 {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-companySec1 {
    margin-top: 2.1875rem;
  }
}

.p-companySec1__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-companySec1__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-companySec1__left {
  width: 33.5625rem;
}
@media screen and (max-width: 767px) {
  .p-companySec1__left {
    width: 19.625rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.p-companySec1__right {
  width: 32.75rem;
}
@media screen and (max-width: 767px) {
  .p-companySec1__right {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-companySec1__right1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-width: 20.375rem;
  }
}

.p-companySec1__rightText1 {
  margin-top: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-companySec1__rightText1 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.p-companySec1__rightText2 {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-companySec1__rightText2 {
    margin-top: 0;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-companySec2 {
  margin-top: 13.125rem;
}
@media screen and (max-width: 767px) {
  .p-companySec2 {
    margin-top: 5.9375rem;
  }
}

.p-companySec3 {
  margin-top: 19.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-companySec3 {
    margin-top: 3.4375rem;
    padding: 0 1.5625rem;
  }
}

.p-companySec3__title {
  width: 40.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-companySec3__title {
    width: 20.3125rem;
  }
}

.p-companySec3__items {
  max-width: 68.75rem;
  margin: 3.75rem auto;
  padding: 3.125rem;
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-companySec3__items {
    max-width: 20rem;
    padding: 1.5625rem 1.0625rem 1.5625rem 1.5625rem;
    margin: 1.5625rem auto;
  }
}

.p-companySec3__img {
  position: absolute;
  bottom: -4.2%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-companySec3__img {
    bottom: -3%;
    width: 0.375rem;
  }
}

.p-companySec3__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 3.125rem;
  font-size: 1.25rem;
}
.p-companySec3__item:not(:first-child) {
  padding-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-companySec3__item:not(:first-child) {
    padding-top: 1.25rem;
  }
}
.p-companySec3__item:not(:last-child) {
  padding-bottom: 1.875rem;
  border-bottom: dashed 2px #A08031;
}
@media screen and (max-width: 767px) {
  .p-companySec3__item:not(:last-child) {
    padding-bottom: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-companySec3__item {
    font-size: 1rem;
    padding-left: 0;
  }
}
.p-companySec3__item img {
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-companySec3__item img {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-companySec3__itemEx {
    font-size: 0.8125rem;
    color: #666666;
    letter-spacing: -0.5px;
  }
}

.p-companySec4 {
  overflow: hidden;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-companySec4 {
    margin-top: 1.875rem;
  }
}

.p-companySec4__img {
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .p-companySec4__img {
    width: 223vw;
    -webkit-transform: translateX(-61.6vw);
            transform: translateX(-61.6vw);
  }
}

.p-companySec5 {
  margin: 0 auto;
  max-width: 73.1875rem;
}
@media screen and (max-width: 767px) {
  .p-companySec5__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-companySec5__img2 {
    margin: 0 auto;
  }
}

.p-companySec6__contents1 {
  max-width: 68.75rem;
  margin: 0 auto;
}

.p-companySec6__contents2 {
  max-width: 68.75rem;
  margin: 10.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-companySec6__contents2 {
    margin: 3.75rem auto 0;
  }
}

.p-companySec6Cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: 3.125rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-companySec6Cards {
    gap: 2.5rem;
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.p-companySec6__title {
  font-size: 2.5rem;
  background: #548567;
  color: #fff;
  border-radius: 50px;
  padding: 0.9375rem 0;
  width: 29.3125rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-companySec6__title {
    font-size: 1.25rem;
    padding: 0.8125rem 0;
    width: 20.375rem;
  }
}

.p-companySec6Card {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
@media screen and (max-width: 767px) {
  .p-companySec6Card {
    position: relative;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-companySec6Card:nth-of-type(even) .p-companySec6Card__number {
    left: unset;
    right: 6%;
    top: 20%;
  }
}

.p-companySec6Card__number {
  width: 5.875rem;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-companySec6Card__number {
    position: absolute;
    top: 14%;
    left: 1%;
    width: 4.4375rem;
    z-index: 0;
  }
}

.p-companySec6Card__title {
  margin: 1.6875rem auto 0;
  font-weight: 700;
  font-size: 1.875rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (max-width: 767px) {
  .p-companySec6Card__title {
    font-size: 1.375rem;
    letter-spacing: 0.5;
  }
}

.p-companySec6Card__text {
  font-size: 1.375rem;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .p-companySec6Card__text {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
    text-align: left;
  }
}

.p-companySec7 {
  max-width: 68.75rem;
  margin: 19.6875rem auto;
}
@media screen and (max-width: 767px) {
  .p-companySec7 {
    margin: 2.8125rem auto 4.6875rem;
    background: rgba(41, 130, 185, .2);
    border-radius: 11.625rem;
    padding: 4.4375rem 0 6.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-companySec7__img {
    position: relative;
    width: 18.75rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .-companySec7__contents {
    position: relative;
  }
}

.p-companySec7__icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-companySec7__icon {
    display: block;
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    left: 45%;
    bottom: -2%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}

.p-companySec8 {
  margin-top: 19.6875rem;
}
@media screen and (max-width: 767px) {
  .p-companySec8 {
    margin-top: 2.8125rem;
  }
}

.p-companySec8__mainTitle {
  width: 32.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-companySec8__mainTitle {
    width: 16.4375rem;
  }
}

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

.p-companySec8__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 68.75rem;
  margin: 0 auto;
  gap: 2.5rem;
  position: relative;
}
.p-companySec8__content:not(:first-child) {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-companySec8__content:not(:first-child) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-companySec8__content {
    max-width: 19.6875rem;
    gap: 0.625rem;
  }
}

.p-companySec8__numberImg {
  width: 7rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-companySec8__numberImg img {
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-companySec8__numberImg {
    width: 3.75rem;
  }
}

.p-companySec8__items {
  position: relative;
  min-width: 60.5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-companySec8__items {
    min-width: 15.4375rem;
  }
}

.p-companySec8__title {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 1;
}
@media screen and (max-width: 767px) {
  .p-companySec8__title {
    font-size: 1.375rem;
  }
}

.p-companySec8__text {
  margin-top: 1.375rem;
  font-size: 1.375rem;
  letter-spacing: 1px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-companySec8__text {
    font-size: 0.875rem;
    margin-top: 1.0625rem;
  }
}

.p-companySec8__rightImg {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-companySec8__rightImg {
    width: 6.9375rem;
    top: 70%;
    left: -30%;
    right: unset;
  }
}

.p-companySec8__img {
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-companySec8__img {
    bottom: -30px;
    width: 0.375rem;
  }
}

.p-companySec8__rightImg2 {
  width: 8.25rem;
  right: 2%;
}
@media screen and (max-width: 767px) {
  .p-companySec8__rightImg2 {
    width: 6.75rem;
  }
}

.p-companySec8__rightImg3 {
  width: 7.625rem;
  right: 2%;
}
@media screen and (max-width: 767px) {
  .p-companySec8__rightImg3 {
    width: 7.3125rem;
  }
}

.p-courseSec1 {
  text-align: center;
  margin: 0 auto;
  max-width: 46.875rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec1 {
    max-width: 20rem;
  }
}

.p-courseSec1__subTitle {
  margin-top: 3.4375rem;
  border-bottom: dashed 2px #A08031;
  display: inline-block;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec1__subTitle {
    margin-top: 1.5625rem;
    padding-bottom: 0.625rem;
  }
}

.p-courseSec1__contents {
  width: 45rem;
  margin: 3.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-courseSec1__contents {
    width: 17.875rem;
    margin: 0.9375rem auto 0;
  }
}

.p-courseSec1__text {
  font-size: 1.125rem;
  text-align: left;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec1__text {
    font-size: 0.75rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-courseSec1__icon {
  width: 4.0625rem;
  height: 4.0625rem;
  margin: 4.0625rem auto;
}
@media screen and (max-width: 767px) {
  .p-courseSec1__icon {
    width: 2rem;
    height: 2rem;
    margin: 1.25rem auto 0;
  }
}

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

.p-courseSec2__item {
  padding: 8.125rem 0;
  border-radius: 14.1875rem 14.1875rem 1.5625rem 1.5625rem;
  scroll-margin-top: 200px;
}
.p-courseSec2__item:nth-of-type(odd) {
  background: rgba(84, 133, 103, .3);
}
@media screen and (max-width: 767px) {
  .p-courseSec2__item:nth-of-type(even) {
    margin-top: 2.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-courseSec2__item {
    padding: 0 0 2.8125rem;
    border-radius: 9.875rem 9.875rem 1.25rem 1.25rem;
  }
}

.p-courseSec2__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-courseSec2__contents {
    display: block;
  }
}

.p-courseSec2__contents2 {
  max-width: 68.75rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-courseSec2__left {
  width: 33.4375rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec2__left {
    width: 16.4375rem;
    margin: 0 auto;
  }
}

.p-courseSec2__right {
  width: 29.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-courseSec2__right {
    width: 19.75rem;
    display: block;
    margin: 1.5625rem auto;
  }
}

.p-courseSec2__btn {
  margin: 4.375rem auto 0;
  width: 32.5rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec2__btn {
    margin-top: 1.875rem;
    width: 20rem;
  }
}

.p-courseSec3 {
  margin-top: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-courseSec3 {
    margin-top: 3.75rem;
  }
}

.p-dr__title {
  width: 23.3125rem;
  margin: 0 auto 0;
}
@media screen and (max-width: 767px) {
  .p-dr__title {
    width: 13.8125rem;
  }
}

.p-dr__btnContents {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-dr__btnContents {
    margin-top: 3.75rem;
  }
}

.drSec1 {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .drSec1 {
    margin-top: 7.375rem;
  }
}

.p-deSec1__item1 {
  border-radius: 227px 227px 30px 30px;
  background: rgba(202, 197, 155, .8);
  padding: 7.1875rem 0 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-deSec1__item1 {
    padding: 0 0 9.5rem;
    border-radius: 9.875rem 9.875rem 1.25rem 1.25rem;
  }
}

.p-drSec1__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 45.9375rem;
  margin: -10px auto;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-drSec1__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-drSec1__left {
  width: 20.1875rem;
}
@media screen and (max-width: 767px) {
  .p-drSec1__left {
    width: 13.125rem;
    margin-top: -5rem;
  }
}

.p-drSec1__name {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .p-drSec1__name {
    width: 8.3125rem;
    margin: 0 auto;
  }
}

.p-drSec1__text {
  margin-top: 1.4375rem;
  font-size: 1.375rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-drSec1__text {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

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

@media screen and (max-width: 767px) {
  .p-drSec__contents2 {
    margin: 2.0625rem auto 0;
    width: 20rem;
  }
}

.p-drSec1__cement {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-drSec1__cement {
    width: 20.75rem;
    margin: 1.25rem auto -255px;
  }
}

.p-deSec1__item2 {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .p-deSec1__item2 {
    margin-top: 0;
    padding-top: 15rem;
  }
}

.p-drSec1__cement2 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-drSec1__cement2 {
    width: 20.75rem;
    margin: 2.0625rem auto;
  }
}

.p-drSec1__btn {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-drSec1__btn {
    margin: 2.5rem auto 0;
  }
}

.p-fv {
  overflow: hidden;
  padding: 3.125rem 2.5rem 5.0625rem 0;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding: 0 1.875rem 0;
  }
}

.p-fvContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-fvContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-fv__left {
  position: relative;
  width: 62.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 13.875rem;
    margin-top: 3.125rem;
    overflow: visible;
  }
}

.p-fv__baseImg {
  position: relative;
  max-width: 31.875rem;
  margin: 0 auto;
}

.p-fv__icon {
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 0.375rem;
  z-index: 50;
}

.p-fv_baseText {
  position: absolute;
  width: 12.75rem;
  z-index: 400;
  top: -16%;
  left: -4%;
}
@media screen and (max-width: 767px) {
  .p-fv_baseText {
    width: 5.5625rem;
    top: -7%;
  }
}

.p-fv__right {
  width: 47.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv__right {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__right1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 18.9375rem;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__right2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 20.4375rem;
    margin: 0 auto;
  }
}

.p-fv__rightBtn {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-fv__rightBtn {
    width: 19.9375rem;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 0.875rem;
  }
}

.fv-swiper {
  overflow: unset;
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(306deg);
          transform: rotate(306deg);
  top: -20%;
  left: 10.4%;
}
@media screen and (max-width: 767px) {
  .fv-swiper {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    left: 0;
  }
}

.swiper-backface-hidden .fv-swiper-slide {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .swiper-backface-hidden .fv-swiper-slide {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.swiper-android .fv-swiper-slide {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .swiper-android .fv-swiper-slide {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.p-sec1 {
  position: relative;
  padding: 3.75rem 0 11.5rem;
  background: #DBD6AC;
  border-radius: 0 0 277px 277px;
}
@media screen and (max-width: 767px) {
  .p-sec1 {
    padding: 3.9375rem 0 7.9375rem;
    border-radius: 136px;
    margin-top: 3.9375rem;
  }
}

.p-sec1__food {
  width: 15.625rem;
  position: absolute;
  bottom: -11%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .p-sec1__food {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 8.6875rem;
    bottom: -8%;
  }
}

@-webkit-keyframes infinity-scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes infinity-scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-lunchbox {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-lunchbox {
    margin-top: -8.125rem;
  }
}

.p-lunchbox-wrap {
  width: 200%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  -webkit-animation: infinity-scroll-left 40s infinite linear;
          animation: infinity-scroll-left 40s infinite linear;
}
@media screen and (max-width: 767px) {
  .p-lunchbox-wrap {
    -webkit-animation: infinity-scroll-left 10s infinite linear;
            animation: infinity-scroll-left 10s infinite linear;
  }
}

.p-lunchboxImg {
  height: 100%;
}
.p-lunchboxImg img {
  width: auto;
  max-width: none;
  height: 11.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-sec1__contents {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents {
    display: block;
  }
}

.p-sec1__contents__left-pc {
  width: 33.8125rem;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents__left-pc {
    display: none;
  }
}

.p-sec1__contents__left-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents__left-sp {
    display: block;
    width: 10.625rem;
    margin: 0 auto;
  }
}

.p-sec1__contents__right {
  padding: 0 2rem;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.9;
}
.p-sec1__contents__right span {
  color: #A08031;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents__right {
    margin-top: 1.75rem;
    font-size: 1rem;
  }
}
.p-sec1__contents__right p:nth-of-type(2) {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents__right p:nth-of-type(2) {
    margin-top: 1.6875rem;
  }
}
.p-sec1__contents__right p:nth-of-type(3) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-sec1__contents__right p:nth-of-type(3) {
    margin-top: 1.6875rem;
  }
}

.p-sec2 {
  padding: 12.3125rem 0;
}
@media screen and (max-width: 767px) {
  .p-sec2 {
    padding: 4.6875rem 0;
  }
}

.p-sec2__subTitle {
  font-size: 1.5625rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  text-align: center;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-sec2__subTitle {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

.p-sec2__contents {
  margin: 6.25rem auto 0;
}
.p-sec2__contents ul:not(first-child) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-sec2__contents ul:not(first-child) {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sec2__contents {
    margin: 1.9375rem auto 0;
  }
}

.p-sec2__contentsItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.125rem;
     -moz-column-gap: 3.125rem;
          column-gap: 3.125rem;
  row-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-sec2__contentsItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 1.25rem;
    margin-top: 10000px;
  }
}
.p-sec2__contentsItem li {
  width: 20.8125rem;
}
.p-sec2__contentsItem li img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-sec2__contentsItem li {
    width: 19.9375rem;
    margin: 0 auto;
  }
}

.p-sec2__btn {
  margin: 8.4375rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-sec2__btn {
    margin: 2.5rem auto 0;
  }
}

.p-sec3__btnItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.4375rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-sec3__btnItems {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.9375rem;
  }
}

.p-sec4 {
  margin-top: 18.75rem;
  padding: 9.6875rem 6.875rem;
  background-color: #DBD6AC;
  border-radius: 70px;
}
@media screen and (max-width: 767px) {
  .p-sec4 {
    margin-top: 4.375rem;
    padding: 3.4375rem 0;
  }
}

.p-sec4__title {
  width: 18.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sec4__title {
    width: 10.875rem;
  }
}

.p-sec4__subTitle {
  font-size: 1.5625rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec4__subTitle {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-sec4__btn {
  margin: 0 auto;
  width: 32.5rem;
}
@media screen and (max-width: 1496px) {
  .p-sec4__btn {
    margin: 2.5rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-sec4__btn {
    width: 19.9375rem;
    margin: 1.875rem auto 0;
  }
}
.p-sec4__btn img {
  width: 100%;
  height: auto;
  display: block;
}

.slick-slide {
  min-height: inherit;
}

.p-sec4__cardItem {
  min-height: 41.375rem;
}
@media screen and (max-width: 1496px) {
  .p-sec4__cardItem:nth-child(1) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-sec4__cardItem {
    margin-top: 4.6875rem;
    min-height: 25rem !important;
  }
  .p-sec4__cardItem:nth-child(1) {
    display: block;
  }
  .p-sec4__cardItem:last-child {
    margin-right: 0;
  }
}

.p-sec4-wrapper {
  padding: 13rem 0 7.1875rem;
  gap: 3.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sec4-wrapper {
    padding: 0 1.5625rem 1.875rem;
    gap: 0;
  }
}

.slick-prev,
.slick-next {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 2rem !important;
}
.slick-prev img,
.slick-next img {
  width: 2rem;
  height: 2rem;
}

.slick-next {
  width: 2rem;
  right: 0 !important;
}

.slick-prev {
  width: 2rem;
  left: 0 !important;
}

.slick-next:before,
.slick-prev:before {
  content: "";
  opacity: 0 !important;
}

.p-sec4__swiperBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-sec4__swiperBtn {
    display: block;
    width: 6.25rem;
    height: 3.125rem;
    margin: -2.1875rem auto 0;
    position: relative;
  }
}

.p-sec5 {
  margin-top: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-sec5 {
    margin-top: 3.75rem;
  }
}

.p-sec6 {
  padding-top: 14.375rem;
}
@media screen and (max-width: 767px) {
  .p-sec6 {
    padding-top: 4.375rem;
    padding-bottom: 11.25rem;
  }
}

.p-sec6__title {
  width: 29.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-sec6__title {
    width: 16.5625rem;
  }
}

.p-sec6__subTitle {
  font-size: 1.5625rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-sec6__subTitle {
    font-size: 0.875rem;
    margin-top: 1.125rem;
  }
}

.p-sec6__qaItems {
  margin: 5.625rem auto 0;
  max-width: 68.75rem;
}
@media screen and (max-width: 767px) {
  .p-sec6__qaItems {
    margin: 2.3125rem auto;
  }
}

.p-how__title {
  width: 23.8125rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-how__title {
    width: 13.1875rem;
  }
}

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

.p-how__BtnItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-how__BtnItems {
    margin-top: 2.1875rem;
    gap: 0.75rem;
  }
}

.p-how__Btn {
  width: 21.5625rem;
}

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

.p-howSec1__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  font-size: 1.5625rem;
  letter-spacing: 1px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-howSec1__title img {
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-howSec1__title img {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-howSec1__title {
    font-size: 1.25rem;
  }
}

.p-howSec1__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  margin-top: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-howSec1__flex {
    display: block;
    margin-top: 1.25rem;
  }
}

.p-howSec1__text {
  font-size: 1.375rem;
  letter-spacing: 0.5px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-howSec1__text {
    letter-spacing: 0.6px;
    font-size: 0.875rem;
  }
}

.p-howSec1__img {
  width: 29.4375rem;
}
@media screen and (max-width: 767px) {
  .p-howSec1__img {
    width: 18.75rem;
    margin: 1.875rem auto 0;
  }
}

.p-howSec1__item2 {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-howSec1__item2 {
    margin-top: 4.0625rem;
  }
}

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

.p-howSec1__title2 {
  font-size: 1.5625rem;
  max-width: 33.375rem;
  letter-spacing: 1px;
  padding: 1.4375rem 0;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-howSec1__title2 {
    padding: 0.3125rem 0;
    font-size: 1.25rem;
    max-width: 20.375rem;
  }
}

.p-how-items2Txt2 {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-how-items2Txt2 {
    margin-top: 1.125rem;
  }
}

.p-howSec1__pay {
  background: #CF805D;
}

.p-howSec1__leftImg {
  max-width: 33.25rem;
  margin-top: 1.25rem;
}

.p-howSec1__Item2left-text {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-howSec1__Item2left-text {
    margin-top: 1.4375rem;
  }
}

.p-howSec1__leftText2Items {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-howSec1__leftText2Items {
    margin-top: 1.4375rem;
  }
}

.p-howSec1__leftText2 {
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .p-howSec1__leftText2 {
    line-height: 2;
    font-size: 0.75rem;
  }
}

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

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

.p-howSec1__item3Title2 {
  background: #A08031;
}

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

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

.p-howSec1__item3Right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-howSec1__item3Right {
    width: 100%;
    margin-top: 3.125rem;
  }
}

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

.p-howSec1__courseBtnContents {
  margin-top: 8.125rem;
  text-align: center;
}
.p-howSec1__courseBtnContents img {
  width: 31.9375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-howSec1__courseBtnContents img {
    width: 19.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-howSec1__courseBtnContents {
    margin-top: 3.75rem;
  }
}

.p-voice__title {
  width: 16.9375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    width: 10.9375rem;
  }
}

.p-voice-btnContents {
  margin-top: 2.5rem;
}

.p-voicePagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7.1875rem;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .p-voicePagination {
    margin-top: 2.6875rem;
  }
}

.p-voicePagination__item a {
  display: inline-block;
  position: relative;
  width: 3.1875rem;
  height: 3.1875rem;
  font-size: 1rem;
}
.p-voicePagination__item a.is-active {
  font-size: 1.5625rem;
  width: 4.875rem;
  height: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-voicePagination__item a.is-active {
    width: 3.125rem;
    height: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voicePagination__item a {
    width: 2rem;
    height: 2rem;
  }
}

.p-voicePagination__item img {
  width: 100%;
  height: auto;
  display: block;
}

.p-voicePagination__item span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

.p-voiceSec1 {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-voiceSec1 {
    margin-top: 2.1875rem;
  }
}

.p-voiceSec1__cardItems {
  margin-top: 7.5rem;
  display: grid;
  gap: 6.5625rem 1.875rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-voiceSec1__cardItems {
    margin-top: 4.0625rem;
    gap: 5.625rem 0;
    grid-template-columns: 1fr;
  }
}

.p-voiceSec1__cardItem {
  min-height: 46.875rem;
}
@media screen and (max-width: 767px) {
  .p-voiceSec1__cardItem {
    min-height: 27.5rem;
    width: 20rem;
    margin: 0 auto;
  }
}

.p-voiceSec1Tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-voiceSec1Tag {
    gap: 0.9375rem;
  }
}

.p-voice__tag {
  width: 33.375rem;
}
@media screen and (max-width: 767px) {
  .p-voice__tag {
    width: 9.5rem;
  }
}

.u-font-acimin {
  font-family: "acumin-variable", sans-serif;
}

.u-bgGoldText {
  background-color: #A08031;
  color: #fff;
  border-radius: 0 50px 50px 0;
}

.u-goldText {
  color: #A08031;
}

.u-BgGole {
  background-color: #A08031;
}

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

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

.u-mobile-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*# sourceMappingURL=styles.css.map */
