@font-face {
  font-family: "A-OTF Maru Folk Pro";
  src: url("../fonts/A-OTF Maru Folk Pro M.otf");
}
/**
* @file _reset.scss
**/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 1px;
}

*::-moz-selection {
  background: #826F34;
  color: white;
}

*::selection {
  background: #826F34;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-bottom: 0;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

table td,
table th {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  line-height: 0;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

input:focus {
  outline: 0;
}

td,
th,
tr {
  vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  resize: vertical;
}

fieldset,
legend {
  padding: 0;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #E6E6E6;
  border-radius: 5px;
}

/* Zoom In #1 */
.anim_zin img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.anim_zin:hover img {
  transform: scale(1.3);
}

/* Zoom In #2 */
.anim_zin2 img {
  width: 300px;
  height: auto;
  transition: 0.3s ease-in-out;
}

.anim_zin2:hover img {
  width: 350px;
}

/* Zoom Out #1 */
.anim_zout img {
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
}

.anim_zout:hover img {
  transform: scale(1);
}

/* Zoom Out #2 */
.anim_zout2 img {
  width: 400px;
  height: auto;
  transition: 0.3s ease-in-out;
}

.anim_zout2:hover img {
  width: 300px;
}

/* Slide */
.anim_slide img {
  margin-left: 30px;
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
}

.anim_slide:hover img {
  margin-left: 0;
}

/* Rotate */
.anim_rot img {
  transform: rotate(15deg) scale(1.4);
  transition: 0.3s ease-in-out;
}

.anim_rot:hover img {
  transform: rotate(0) scale(1);
}

/* Blur */
.anim_blur img {
  filter: blur(3px);
  transition: 0.3s ease-in-out;
}

.anim_blur:hover img {
  filter: blur(0);
}

/* Gray Scale */
.anim_gray img {
  filter: grayscale(100%);
  transition: 0.3s ease-in-out;
}

.anim_gray:hover img {
  filter: grayscale(0);
}

/* Sepia */
.anim_sepia img {
  filter: sepia(100%);
  transition: 0.3s ease-in-out;
}

.anim_sepia:hover img {
  filter: sepia(0);
}

/* Blur + Gray Scale */
.anim_blur_gray img {
  filter: grayscale(0) blur(0);
  transition: 0.3s ease-in-out;
}

.anim_blur_gray:hover img {
  filter: grayscale(100%) blur(3px);
}

/* Opacity #1 */
.anim_opa img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.anim_opa:hover img {
  opacity: 0.5;
}

/* Opacity #2 */
.anim_opa2 {
  background: #1abc9c;
}

.anim_opa2 img {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.anim_opa2:hover img {
  opacity: 0.5;
}

/* Flashing */
.anim_flash:hover img {
  opacity: 1;
  animation: flash 1.5s;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
/* Shine */
.anim_shine {
  position: relative;
  overflow: hidden;
}

.anim_shine::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.anim_shine:hover::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* Circle */
.anim_circle {
  position: relative;
  overflow: hidden;
}

.anim_circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.anim_circle:hover::before {
  animation: circle 0.75s;
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
/**
* @file _common.scss
**/
.is-pc {
  display: block;
}
@media screen and (max-width: 798px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .is-sp {
    display: block !important;
  }
}

.pc-only {
  display: flex;
}
@media screen and (max-width: 798px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .sp-only {
    display: flex !important;
  }
}

.rel {
  position: relative;
}

.drop-shadow {
  filter: drop-shadow(10px 10px 3px rgba(119, 138, 156, 0.747));
}
@media screen and (max-width: 798px) {
  .drop-shadow {
    filter: unset;
  }
}

.shadow {
  filter: drop-shadow(3px 3px 3px rgba(119, 138, 156, 0.747));
}

@font-face {
  font-family: "A-OTF Maru Folk Pro";
  src: url("../fonts/A-OTF Maru Folk Pro M.otf");
}
/**
* @file _reset.scss
**/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-size: 1px;
}

*::-moz-selection {
  background: #826F34;
  color: white;
}

*::selection {
  background: #826F34;
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin-bottom: 0;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  cursor: pointer;
  border: 0;
  outline: none;
}

table td,
table th {
  padding: 0;
  border: 0;
}

img {
  max-width: 100%;
  line-height: 0;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

input:focus {
  outline: 0;
}

td,
th,
tr {
  vertical-align: middle;
}

*,
dd,
dl,
dt,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ol,
picture,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

textarea {
  resize: vertical;
}

fieldset,
legend {
  padding: 0;
}

figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #E6E6E6;
  border-radius: 5px;
}

/**
* @file _common.scss
**/
.is-pc {
  display: block;
}
@media screen and (max-width: 798px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .is-sp {
    display: block !important;
  }
}

.pc-only {
  display: flex;
}
@media screen and (max-width: 798px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 798px) {
  .sp-only {
    display: flex !important;
  }
}

.rel {
  position: relative;
}

.drop-shadow {
  filter: drop-shadow(10px 10px 3px rgba(119, 138, 156, 0.747));
}
@media screen and (max-width: 798px) {
  .drop-shadow {
    filter: unset;
  }
}

.shadow {
  filter: drop-shadow(3px 3px 3px rgba(119, 138, 156, 0.747));
}

.c-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #FFF;
}
.c-header__container {
  display: flex;
  align-items: center;
  max-width: 1440px;
  height: 72px;
  margin: 0 auto;
  padding: 0 19px;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 798px) {
  .c-header__container {
    padding: 0;
  }
}
.c-header__logo {
  cursor: pointer;
}
.c-header__logo img {
  height: 70px;
}

.c-footer {
  background-color: #FFFFFF;
}
.c-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  height: 74px;
  margin: 0 auto;
}
.c-footer__container .__copyright {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #64615B;
}

.section.section__fv {
  position: relative;
  -webkit-clip-path: ellipse(85% 100% at top);
          clip-path: ellipse(85% 100% at top);
}
@media screen and (max-width: 1279px) {
  .section.section__fv {
    -webkit-clip-path: ellipse(100% 100% at top);
            clip-path: ellipse(100% 100% at top);
  }
}
@media screen and (max-width: 998px) {
  .section.section__fv {
    -webkit-clip-path: ellipse(180% 100% at top);
            clip-path: ellipse(180% 100% at top);
  }
}
.section .__fv-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media screen and (max-width: 998px) {
  .section .__fv-mask {
    display: none;
  }
}
.section .p-fv {
  position: absolute;
  top: 117px;
  left: 655px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .section .p-fv {
    left: unset;
    top: 90px;
    right: 20px;
  }
}
@media screen and (max-width: 998px) {
  .section .p-fv {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    background-color: white;
  }
}
.section .p-fv::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 60px;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 6.67%, #FFFFFF 100%);
  display: none;
}
@media screen and (max-width: 998px) {
  .section .p-fv::after {
    display: block;
  }
}
.section .p-fv .__banner {
  width: 100%;
  max-width: 614px;
  min-height: 99.46px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .section .p-fv .__banner {
    max-width: 520px;
  }
}
@media screen and (max-width: 998px) {
  .section .p-fv .__banner {
    max-width: 420px;
    margin-top: -3px;
  }
}
@media screen and (max-width: 450px) {
  .section .p-fv .__banner {
    max-width: 278px;
    min-height: 100px;
  }
}
.section .p-fv .__text {
  margin: -30px 0 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 70px;
  letter-spacing: 0.06em;
  color: #64615B;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .section .p-fv .__text {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 998px) {
  .section .p-fv .__text {
    margin: -15px 0 8px;
  }
}
@media screen and (max-width: 798px) {
  .section .p-fv .__text {
    font-size: 20px;
    line-height: 30px;
  }
}
.section .p-fv .__text .__em {
  font-size: 44px;
  line-height: 62px;
}
@media screen and (max-width: 1279px) {
  .section .p-fv .__text .__em {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 798px) {
  .section .p-fv .__text .__em {
    font-size: 18px;
    line-height: 27px;
  }
}
.section .p-fv .__logo {
  height: 140px;
}
@media screen and (max-width: 1279px) {
  .section .p-fv .__logo {
    height: 100px;
  }
}
@media screen and (max-width: 998px) {
  .section .p-fv .__logo {
    margin-top: -25px;
    transform: translateY(25px);
  }
}
@media screen and (max-width: 798px) {
  .section .p-fv .__logo {
    height: 57px;
    margin-top: -14px;
    transform: translateY(14px);
  }
}
.section .p-fv .__logo.animated {
  animation-fill-mode: unset;
  -webkit-animation-fill-mode: unset;
}
.section .p-fv .__text-info {
  margin-top: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0em;
  color: #C4A761;
}
@media screen and (max-width: 1279px) {
  .section .p-fv .__text-info {
    font-size: 12px;
    line-height: 12px;
  }
}
@media screen and (max-width: 998px) {
  .section .p-fv .__text-info {
    display: none;
  }
}

.section.section__about {
  padding: 0 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 798px) {
  .section.section__about {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.section .p-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section .p-about__ttl {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  height: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-about__ttl img {
  height: 40px;
}
.section .p-about__ttl-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-about__ttl-desc .em {
  display: block;
  height: 27px;
  padding: 5px 12px 6px;
  border: 1px solid #64615B;
  border-radius: 100px;
  line-height: 16px;
}
.section .p-about__ttl-desc--part {
  margin-top: -14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-about__wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-top: 36px;
}
@media screen and (max-width: 998px) {
  .section .p-about__wrap {
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 16px;
  }
}
.section .p-about__text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-about__text--wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 998px) {
  .section .p-about__text--wrap {
    max-width: 538px;
  }
}
.section .p-about__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 538px;
  margin: 0 auto;
}

.section.section__usage {
  padding: 120px 50px 169px;
  margin-bottom: 120px;
  background-color: white;
  -webkit-clip-path: ellipse(63% 50%);
          clip-path: ellipse(63% 50%);
}
@media screen and (max-width: 998px) {
  .section.section__usage {
    -webkit-clip-path: ellipse(70% 50%);
            clip-path: ellipse(70% 50%);
  }
}
@media screen and (max-width: 798px) {
  .section.section__usage {
    padding: 80px 20px;
    margin-bottom: 60px;
    -webkit-clip-path: ellipse(100% 50%);
            clip-path: ellipse(100% 50%);
  }
}
@media screen and (max-width: 450px) {
  .section.section__usage {
    -webkit-clip-path: ellipse(400% 50%);
            clip-path: ellipse(400% 50%);
  }
}
.section .p-usage__ttl {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 60px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: #64615B;
}
@media screen and (max-width: 798px) {
  .section .p-usage__ttl {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    font-size: 30px;
    line-height: 30px;
  }
}
.section .p-usage__ttl .em {
  font-family: "A-OTF Maru Folk Pro";
  font-weight: 500;
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C4A761;
}
.section .p-usage__items {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 30px;
}
@media screen and (max-width: 798px) {
  .section .p-usage__items {
    flex-direction: column;
    align-items: center;
  }
}
.section .p-usage__item {
  width: 100%;
  max-width: 280px;
  color: #64615B;
}
.section .p-usage__item--img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24.67px;
}
.section .p-usage__item--ttl {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-align: center;
}
.section .p-usage__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.section.section__benefit {
  padding: 0 50px;
  margin-bottom: 120px;
}
@media screen and (max-width: 798px) {
  .section.section__benefit {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
.section .p-benefit {
  margin-bottom: 40px;
}
@media screen and (max-width: 798px) {
  .section .p-benefit {
    margin-bottom: 62px;
  }
}
.section .p-benefit__ttl {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: #64615B;
}
@media screen and (max-width: 798px) {
  .section .p-benefit__ttl {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.section .p-benefit__ttl .__em {
  font-family: "A-OTF Maru Folk Pro";
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C4A761;
}
.section .p-benefit__ttl .__wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.section .p-benefit__items {
  display: flex;
  justify-content: center;
  gap: 23px;
}
@media screen and (max-width: 798px) {
  .section .p-benefit__items {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.section .p-benefit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 385px;
}
.section .p-benefit__item--img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .p-benefit__item--text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #64615B;
}
.section .p-benefit__item--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #C4A761;
  border-radius: 50%;
}
.section .p-benefit__item--btn svg {
  margin-bottom: 1px;
}
.section .p-benefit__item.__item-02 {
  margin-top: 30px;
}
@media screen and (max-width: 798px) {
  .section .p-benefit__item.__item-02 {
    margin-top: 0;
  }
}
.section .p-benefit__item.__item-03 {
  margin-top: 60px;
}
@media screen and (max-width: 798px) {
  .section .p-benefit__item.__item-03 {
    margin-top: 0;
  }
}
.section .p-point__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.section .p-point__item {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 80px;
  background-color: white;
  border-radius: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item {
    padding: 70px 20px 20px;
  }
}
.section .p-point__item .__badge {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 141px;
  height: 40px;
  background-color: #C4A761;
  border-radius: 20px 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: white;
}
.section .p-point__item .__banner {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 30px 30px 30px 40px;
  background-color: #F9F8F3;
  border-radius: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item .__banner {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
}
.section .p-point__item .__banner--ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item .__banner--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item--ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 38.4px;
  letter-spacing: 0em;
  color: #64615B;
}
@media screen and (max-width: 798px) {
  .section .p-point__item--ttl {
    font-size: 20px;
    line-height: 30px;
  }
}
.section .p-point__item--text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section .p-point__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item--inner {
  margin: 0 -22px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item--inner {
    margin: 0;
  }
}
.section .p-point__item--img-wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item--img-wrap {
    flex-direction: column;
    gap: 10.38px;
  }
}
.section .p-point__item--img {
  max-width: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .p-point__item.__item-01 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-01 {
    gap: 20.3px;
  }
}
.section .p-point__item.__item-01 .__neuro-cond--wrap {
  display: flex;
  align-items: start;
  gap: 45px;
}
@media screen and (max-width: 1279px) {
  .section .p-point__item.__item-01 .__neuro-cond--wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.section .p-point__item.__item-01 .__neuro-cond--content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-01 .__neuro-cond--content {
    gap: 15px;
  }
}
.section .p-point__item.__item-01 .__neuro-cond--img {
  width: 100%;
}
.section .p-point__item.__item-01 .__banner--photo {
  max-width: 140px;
  min-width: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section .p-point__item.__item-01 .__banner--badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  width: 236px;
  height: 28px;
  border: 1px solid #394C74;
  border-radius: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0em;
  color: #394C74;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-01 .__banner--badge {
    margin: 0 auto 15px;
  }
}
.section .p-point__item.__item-01 .__banner--ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-01 .__banner--ttl {
    font-size: 20px;
    line-height: 32px;
  }
}
.section .p-point__item.__item-01 .__banner--text {
  margin-bottom: 10px;
}
.section .p-point__item.__item-01 .__banner--bio-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item.__item-01 .__banner--bio-text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item.__item-02 {
  padding-bottom: 60px;
}
.section .p-point__item.__item-02 .__items {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 36px;
  margin: 0 -22px;
}
@media screen and (max-width: 998px) {
  .section .p-point__item.__item-02 .__items {
    flex-direction: column;
    align-items: center;
    margin: 0;
    gap: 30px;
  }
}
.section .p-point__item.__item-02 .__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 330px;
}
.section .p-point__item.__item-02 .__item.--item-03 {
  max-width: 336px;
}
.section .p-point__item.__item-02 .__item--img {
  width: 100%;
  max-width: 330px;
  z-index: -1;
}
@media screen and (max-width: 450px) {
  .section .p-point__item.__item-02 .__item--img {
    height: 206px;
  }
}
.section .p-point__item.__item-02 .__item--no {
  margin-top: -15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #64615B;
}
@media screen and (max-width: 998px) {
  .section .p-point__item.__item-02 .__item--no {
    margin-top: -6px;
  }
}
.section .p-point__item.__item-02 .__item--ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0em;
  color: #64615B;
  text-align: center;
}
.section .p-point__item.__item-02 .__item--text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item.__item-03 {
  padding-bottom: 60px;
}
.section .p-point__item.__item-03 .p-point__item--inner {
  margin-top: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .p-point__item--inner {
    margin-bottom: 10.41px;
  }
}
.section .p-point__item.__item-03 .__desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 41px 0 26px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__desc {
    gap: 20px;
    margin: 15px 0 20px;
  }
}
.section .p-point__item.__item-03 .__desc dl {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__desc dl {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.section .p-point__item.__item-03 .__desc dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 110px;
  height: 28px;
  border: 1px solid #C4A761;
  border-radius: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0em;
  color: #C4A761;
}
.section .p-point__item.__item-03 .__desc dd {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #64615B;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__banner {
    padding-top: 30px;
  }
}
.section .p-point__item.__item-03 .__banner--inner {
  max-width: 508px;
}
.section .p-point__item.__item-03 .__banner--photo {
  display: flex;
  align-items: start;
  gap: 10.44px;
}
@media screen and (max-width: 1279px) {
  .section .p-point__item.__item-03 .__banner--photo {
    flex-direction: column;
    align-items: center;
    gap: 9.91px;
  }
}
.section .p-point__item.__item-03 .__banner--photo .--photo1 {
  max-width: 258.25px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__banner--photo .--photo1 {
    max-width: 270px;
  }
}
.section .p-point__item.__item-03 .__banner--photo .--photo2 {
  max-width: 173.71px;
  min-height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__banner--photo .--photo2 {
    max-width: 180px;
  }
}
@media screen and (max-width: 450px) {
  .section .p-point__item.__item-03 .__banner--photo .--photo2 {
    height: 240px;
  }
}
.section .p-point__item.__item-03 .__banner--ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-03 .__banner--ttl {
    font-size: 20px;
    line-height: 30px;
  }
}
.section .p-point__item.__item-04 {
  padding-bottom: 60px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 {
    padding-bottom: 20px;
  }
}
.section .p-point__item.__item-04 .p-point__item--ttl {
  margin-bottom: 41px;
  font-size: 24px;
  line-height: 38.4px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .p-point__item--ttl {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
  }
}
.section .p-point__item.__item-04 .p-point__item--text {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 19.6px;
}
.section .p-point__item.__item-04 .p-point__item--pub {
  display: flex;
  justify-content: flex-end;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item.__item-04 .__desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__desc {
    gap: 20px;
    margin-bottom: 15px;
  }
}
.section .p-point__item.__item-04 .__desc dl {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__desc dl {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.section .p-point__item.__item-04 .__desc dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  min-width: 110px;
  height: 28px;
  border: 1px solid #C4A761;
  border-radius: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0em;
  color: #C4A761;
}
.section .p-point__item.__item-04 .__desc dd {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #64615B;
}
.section .p-point__item.__item-04 .__items {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 60px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__items {
    flex-direction: column;
    align-items: center;
    gap: 29px;
    margin-bottom: 55px;
  }
}
.section .p-point__item.__item-04 .__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 330px;
}
.section .p-point__item.__item-04 .__item--img {
  max-width: 330px;
}
.section .p-point__item.__item-04 .__item--ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  padding: 0 30px;
  height: 30px;
  background-color: #394C74;
  border-radius: 0 0 100px 100px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--ttl {
    padding: 0 28px;
    margin-bottom: 10.3px;
    height: 28px;
    font-size: 13.15px;
    line-height: 13.15px;
  }
}
.section .p-point__item.__item-04 .__item--ttl-sub {
  margin-bottom: 18px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.02em;
  color: #394C74;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--ttl-sub {
    margin-bottom: 17.18px;
    font-size: 11.27px;
    line-height: 11.27px;
  }
}
.section .p-point__item.__item-04 .__item--rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.section .p-point__item.__item-04 .__item--rank-proc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border: 1px solid #64615B;
  border-radius: 4px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-proc {
    height: 28px;
  }
}
.section .p-point__item.__item-04 .__item--rank-proc dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  background-color: #64615B;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-proc dt {
    padding: 0 28px;
    font-size: 13.15px;
    line-height: 13.15px;
  }
}
.section .p-point__item.__item-04 .__item--rank-proc dd {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  background-color: white;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #64615B;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-proc dd {
    padding: 0 28px;
    font-size: 13.15px;
    line-height: 13.15px;
  }
}
.section .p-point__item.__item-04 .__item--rank-unproc {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border: 1px solid #FF0066;
  border-radius: 4px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-unproc {
    height: 28px;
  }
}
.section .p-point__item.__item-04 .__item--rank-unproc dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  background-color: #FF0066;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-unproc dt {
    padding: 0 28px;
    font-size: 13.15px;
    line-height: 13.15px;
  }
}
.section .p-point__item.__item-04 .__item--rank-unproc dd {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 30px;
  background-color: white;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #FF0066;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--rank-unproc dd {
    padding: 0 28px;
    font-size: 13.15px;
    line-height: 13.15px;
  }
}
.section .p-point__item.__item-04 .__item--percent {
  display: flex;
  align-items: end;
  gap: 10px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #FF0066;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--percent {
    font-size: 18.79px;
    line-height: 18.79px;
  }
}
.section .p-point__item.__item-04 .__item--percent .__text {
  display: flex;
  align-items: baseline;
}
.section .p-point__item.__item-04 .__item--percent .__2em {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 40px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--percent .__2em {
    font-size: 37.59px;
    line-height: 37.59px;
  }
}
.section .p-point__item.__item-04 .__item--percent .__em {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
}
@media screen and (max-width: 798px) {
  .section .p-point__item.__item-04 .__item--percent .__em {
    font-size: 26.3px;
    line-height: 26.3px;
  }
}

.section.section__product {
  padding: 120px 50px 195px;
  margin-bottom: 60px;
  background-color: white;
  -webkit-clip-path: ellipse(68% 50%);
          clip-path: ellipse(68% 50%);
}
@media screen and (max-width: 998px) {
  .section.section__product {
    -webkit-clip-path: ellipse(100% 50%);
            clip-path: ellipse(100% 50%);
  }
}
@media screen and (max-width: 798px) {
  .section.section__product {
    padding: 80px 20px 91px;
    margin-bottom: 71px;
    -webkit-clip-path: ellipse(100% 50%);
            clip-path: ellipse(100% 50%);
  }
}
@media screen and (max-width: 450px) {
  .section.section__product {
    -webkit-clip-path: ellipse(400% 50%);
            clip-path: ellipse(400% 50%);
  }
}
.section .p-product__ttl {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 60px;
  font-family: "A-OTF Maru Folk Pro";
  font-weight: 500;
  font-size: 38px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #C4A761;
}
@media screen and (max-width: 798px) {
  .section .p-product__ttl {
    margin-bottom: 30px;
  }
}
.section .p-product__items {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 23px;
}
@media screen and (max-width: 998px) {
  .section .p-product__items {
    flex-direction: column;
    align-items: center;
  }
}
.section .p-product__item {
  width: 100%;
  max-width: 385px;
  color: #64615B;
}
.section .p-product__item.--item-02 {
  margin-top: 30px;
}
@media screen and (max-width: 998px) {
  .section .p-product__item.--item-02 {
    margin-top: 0;
  }
}
.section .p-product__item.--item-03 {
  margin-top: 60px;
}
@media screen and (max-width: 998px) {
  .section .p-product__item.--item-03 {
    margin-top: 0;
  }
}
.section .p-product__item--img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
.section .p-product__item--ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: center;
}
.section .p-product__item--content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 13px 20px 20px;
  width: 100%;
  background-color: #F9F8F3;
  border-radius: 20px;
}
.section .p-product__item--content .__badge {
  position: absolute;
  top: -12.5px;
  left: calc((100% - 132px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 25px;
  background-color: #C4A761;
  border-radius: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0em;
  color: white;
}
.section .p-product__item--content .__badge::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 62px;
  width: 8px;
  height: 8px;
  background-color: #C4A761;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.section .p-product__item--content li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  max-width: 280px;
  border-bottom: 1px dashed #C4A761;
}
.section .p-product__item--content .__no {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #C4A761;
  border-radius: 100%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.02em;
  color: #C4A761;
}
.section .p-product__item--content .__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18.2px;
  letter-spacing: 0.02em;
  color: #C4A761;
}

.section.section__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.section .contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  width: 266px;
  height: 62px;
  background-color: #0071B2;
  border-radius: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0em;
  color: white;
}

html {
  scroll-padding-top: 72px; /* Adjust to your header height */
}

body {
  overflow-x: hidden;
  background-color: #F9F8F3;
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 798px) {
  .section {
    margin-bottom: 60px;
  }
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */