@charset "UTF-8";
/*============================
drawer
============================*/
#js-contents-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: auto;
  right: auto;
  width: 375px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9000;
}
@media screen and (max-width: 960px) {
  #js-contents-wrapper {
    width: 100%;
  }
}

.menu-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  height: 60px;
  padding: 0;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
.menu-button.focus-visible {
  background-color: rgba(0, 0, 0, 0.05);
}
@media (hover) {
  .menu-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
}

.menu-button__icon {
  bottom: 0;
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 18px;
}
.menu-button__icon::before, .menu-button__icon::after {
  background-color: #707070;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.menu-button__icon[data-type=open] {
  background-color: #707070;
}
.menu-button__icon[data-type=open]::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.menu-button__icon[data-type=open]::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.menu-button__icon[data-type=close]::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu-button__icon[data-type=close]::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-menu {
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  overflow: hidden;
  position: fixed;
  width: 375px;
  z-index: 9050;
}
@media screen and (max-width: 960px) {
  .drawer-menu {
    width: 100%;
  }
}

.drawer-menu__container {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-color: #ffb9ae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 375px;
}
@media screen and (max-width: 960px) {
  .drawer-menu__container {
    width: 100%;
  }
}
.drawer-menu[inert] .drawer-menu__container {
  -webkit-animation-name: menu-container-leaved;
          animation-name: menu-container-leaved;
}
.drawer-menu:not([inert]) .drawer-menu__container {
  -webkit-animation-name: menu-container-appeared;
          animation-name: menu-container-appeared;
}

@-webkit-keyframes menu-container-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-container-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes menu-container-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes menu-container-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.drawer-menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  padding: 0;
}

.drawer-menu__item {
  padding: 1em 2.5em 1em 2em;
}
.drawer-menu__item > ul {
  list-style: none;
  padding-left: 10px;
}
.drawer-menu__item > ul li {
  margin-top: 15px;
}
.drawer-menu__item > ul li a {
  color: #707070;
  display: block;
  text-decoration: none;
  font-family: "Noto Serif JP", sans-serif;
}
@media (hover) {
  .drawer-menu__item > ul li a:hover {
    color: #fff;
  }
}

@media (hover) {
  .drawer-menu__itemProducts span:hover {
    color: #707070;
  }
}

.drawer-menu__link {
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: block;
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
  font-family: "Noto Serif JP", sans-serif;
}

.drawer-menu__linkImg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover) {
  .drawer-menu__linkImg:hover {
    opacity: 0.7;
  }
}

.drawer-menu__img {
  width: 200px;
  display: block;
}

.drawer-menu__jp-label {
  color: #707070;
  display: block;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
  font-family: "Noto Serif JP", sans-serif;
}
@media (hover) {
  .drawer-menu__jp-label:hover {
    color: #fff;
  }
}

.drawer-menu__insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (hover) {
  .drawer-menu__insta:hover {
    color: #fff;
  }
}

.drawer-menu__close-button {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  text-align: right;
}

.global-header {
  background-color: #ffb0a5;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.global-header__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.logo {
  padding-left: 15px;
}
.logo a {
  display: block;
  width: 70%;
}
.logo a img {
  display: block;
  width: 100%;
}

[inert] {
  cursor: default;
  pointer-events: none;
}

[inert],
[inert] * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.u-visually-hidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

html {
  scroll-padding-top: 60px;
}

/*============================
m-only
============================*/
.m-only--sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .m-only--sp {
    display: block;
  }
}
.m-only--pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .m-only--pc {
    display: none;
  }
}

/*============================
font
============================*/
.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

/*============================
header
============================*/
.l-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    max-width: 1366px;
    margin: 0 auto;
  }
  .l-wrapper::before {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    content: "";
    height: 100vh;
    width: 100vw;
    display: block;
    background: #f3c2b0;
  }
}

.l-block {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-block {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 375px;
    position: relative;
    z-index: 10;
  }
}

.l-main {
  background: #fff;
  color: #464646;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.05em;
}

.l-section__inner {
  padding-left: 25px;
  padding-right: 25px;
}

.m-buy-button {
  background: #f0f0f0;
  text-decoration: none;
  width: 80%;
  margin: 30px auto;
  display: block;
  text-align: center;
  padding: 10px;
  color: #707070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Noto Serif JP", sans-serif;
}
@media (hover: hover) and (pointer: fine) {
  .m-buy-button:hover {
    opacity: 0.5;
  }
}

/*============================
pc NAV
============================*/
.l-pcNav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pcNav {
    display: block;
    display: block;
    position: fixed;
    top: 70px;
    left: 50px;
  }
}

.l-pcNav__img {
  width: 275px;
  display: block;
}

.l-pcNav__list {
  list-style: none;
}

.l-pcNav__item {
  margin-top: 30px;
}
.l-pcNav__item:nth-child(1) {
  margin-bottom: 50px;
}
.l-pcNav__itemProducts {
  text-decoration: none;
  font-size: 22px;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  color: #707070;
}
.l-pcNav__item ul {
  list-style: none;
  padding-left: 15px;
}
.l-pcNav__item ul li {
  margin-top: 20px;
}
.l-pcNav__item ul li:nth-child(1) {
  margin-bottom: 0;
}
.l-pcNav__item ul li a {
  font-size: 18px;
}

.js-toggle-contents {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .js-toggle:hover {
    cursor: pointer;
  }
}

.l-pcNav__itemLink {
  text-decoration: none;
  font-size: 22px;
  font-family: "Noto Serif JP", sans-serif;
  color: #707070;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pcNav__itemLink:hover {
  color: #fff;
}

.l-pcNav-menu__insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  opacity: 0;
}

.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #ffb9ae;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*============================
mv
============================*/
.l-main__mv {
  position: relative;
}

.l-main__snsLink {
  text-decoration: none;
  color: #707070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: fixed;
  top: 30%;
  z-index: 9999;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-main__snsLink {
    right: auto;
    margin-left: 21.3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-main__snsLink:hover {
    opacity: 0.5;
  }
}

.l-main__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-main__sns p {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  display: inline-block;
}

/*============================
concept
============================*/
.l-concept-wrap {
  background: url("../img/concept/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0 80px;
}

.l-concept-intro {
  margin-bottom: 60px;
}
.l-concept-intro__title {
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: normal;
}
.l-concept-intro__text {
  font-size: 16px;
  line-height: 1.8;
}
.l-concept-intro__text + .l-concept-intro__text {
  margin-top: 1em;
}

.l-concept-block01 {
  background: #fff7f6;
  padding: 80px 0 500px;
  border-radius: 500px 500px 0 0;
  margin-top: 50px;
  width: auto;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-concept-block01 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-concept-block01-img {
  margin-top: 50px;
  width: 100%;
}
.l-concept-block01__title {
  text-align: center;
}
.l-concept-block01__titleImg {
  text-align: center;
  margin: 0 auto 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-concept-block01__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-concept-block01__img {
  margin: 40px auto;
}
.l-concept-block01__imgItem {
  text-align: center;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-concept-block01__imgText {
  text-align: right;
  font-size: 10px;
  line-height: 1.8;
}
.l-concept-block01__text {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 2.5;
}

.l-concept-block02 {
  background: #fae8e5;
  padding: 80px 0 500px;
  margin-top: -120%;
  border-radius: 500px 500px 0 0;
  width: auto;
  color: #707070;
}
@media screen and (max-width: 960px) {
  .l-concept-block02 {
    border-radius: 50vw 50vw 0 0;
    margin-top: -110%;
  }
}
.l-concept-block02__title {
  text-align: center;
}
.l-concept-block02__titleText {
  color: #707070;
  font-size: 20px;
}
.l-concept-block02__titleText span {
  font-size: 32px;
  display: block;
  margin-top: 10px;
}
.l-concept-block02__main {
  margin-top: 50px;
}
.l-concept-block02__mainTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: normal;
}
.l-concept-block02__img {
  margin: 10px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-concept-block02__mainText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 2.5;
}

.l-concept-block03 {
  background: #f5dad6;
  padding: 80px 0 50px;
  margin-top: -120%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-concept-block03 {
    border-radius: 50vw 50vw 0 0;
    margin-top: -110%;
  }
}
.l-concept-block03__title {
  text-align: center;
}
.l-concept-block03__titleImg {
  text-align: center;
  margin: 0 auto 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-concept-block03__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-concept-block03__img {
  margin: 40px auto 0;
}
.l-concept-block03__imgItem {
  text-align: center;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*============================
products
============================*/
.l-products {
  padding: 50px 0 0;
}

.l-products-intro__catch {
  margin-left: -20px;
}

.l-products-intro__title {
  font-size: 16px;
  margin-top: 30px;
  color: #707070;
  letter-spacing: 0.1em;
  line-height: 2;
}
.l-products-intro__title span {
  font-size: 10px;
  vertical-align: text-top;
}

.l-products-main01 {
  padding-top: 200px;
}
.l-products-main01 .l-products-main__item {
  background: #fffaf8;
}
.l-products-main01 .l-products-main__itemBg {
  position: absolute;
  top: -130px;
  right: -25px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.l-products-main01-2 {
  padding-top: 60px;
}
.l-products-main01-2 .l-products-main__itemImg {
  -webkit-transform: none;
          transform: none;
}
.l-products-main01-2 ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.l-products-main01-2 ul li {
  list-style: none;
  font-size: 12px;
  line-height: 2;
}

.l-products-main02-01 {
  padding-top: 150px;
  margin-top: 80px;
}
.l-products-main02-01 .l-products-main__item {
  background: #fffaf8;
}
.l-products-main02-01 .l-products-main__itemBg {
  position: absolute;
  top: -130px;
  left: -25px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.l-products-main__item {
  position: relative;
}
.l-products-main__itemMini {
  position: absolute;
  top: 120px;
  right: 20px;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #464646;
}
.l-products-main__itemImg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
.l-products-main__itemImg02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
}
.l-products-main__itemImg03 {
  -webkit-padding-after: 30px;
          padding-block-end: 30px;
}
.l-products-main__itemText {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: -80px;
  padding-bottom: 30px;
  color: #707070;
}
.l-products-main__itemText p:nth-child(1) {
  font-size: 12px;
  margin-bottom: 5px;
}
.l-products-main__itemText p:nth-child(2) {
  font-size: 14px;
  margin-bottom: 20px;
}
.l-products-main__itemText p:nth-child(3) {
  font-size: 14px;
  line-height: 2;
}
.l-products-main__itemText02 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 30px;
  padding-bottom: 50px;
  color: #707070;
}
.l-products-main__itemText02 p:nth-child(1) {
  font-size: 14px;
  margin-bottom: 10px;
}
.l-products-main__itemText02 p:nth-child(2) {
  font-size: 14px;
  margin-bottom: 20px;
}

/*============================
point
============================*/
.js-accordion {
  display: none;
}

.btn-more {
  width: 100%;
  background: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-more::before {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  margin-top: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-more:hover {
    cursor: pointer;
  }
}
.btn-more.close::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.l-point-intro {
  margin-top: 60px;
}

.l-point-block01 {
  background: #fff7f6;
  padding: 80px 0 300px;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block01 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block01__title {
  text-align: center;
}
.l-point-block01__title p {
  text-align: center;
}
.l-point-block01__title p:nth-child(1) {
  font-size: 24px;
}
.l-point-block01__title p:nth-child(2) {
  font-size: 30px;
}
.l-point-block01__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block01__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-point-block01__decoTitle {
  position: relative;
  padding: 0 17%;
  text-align: center;
  margin: 0 auto 20px;
}
.l-point-block01__decoTitle::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #707070;
}
.l-point-block01__decoTitle p {
  position: relative;
  padding: 0 1em;
  background: #fff7f6;
  font-size: 18px;
}
.l-point-block01__decoTitle p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block01__main {
  margin-bottom: 30px;
}
.l-point-block01__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-point-block01__flexText {
  width: calc(100% - 126px);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.l-point-block02 {
  background: #f6eae9;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block02 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block02__title {
  text-align: center;
}
.l-point-block02__title > p {
  text-align: center;
}
.l-point-block02__title > p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block02__title > p:nth-child(1) {
  font-size: 24px;
}
.l-point-block02__title > p:nth-child(2) {
  font-size: 30px;
}
.l-point-block02__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block02__titleImgSub {
  font-size: 12px;
  text-align: right;
  margin-top: 5px;
}
.l-point-block02__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-point-block02__decoTitle {
  position: relative;
  padding: 0 17%;
  text-align: center;
  margin: 0 auto 20px;
}
.l-point-block02__decoTitle::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #707070;
}
.l-point-block02__decoTitle p {
  position: relative;
  padding: 0 1em;
  background: #f6eae9;
  font-size: 18px;
}
.l-point-block02__decoTitle p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block02__main {
  margin-bottom: 30px;
}
.l-point-block02__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-point-block02__flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-point-block02__flexImg {
  width: 111px;
}
.l-point-block02__flexText {
  width: calc(100% - 126px);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.l-point-block03 {
  background: #ffdbd3;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block03 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block03__title {
  text-align: center;
}
.l-point-block03__title > p {
  text-align: center;
}
.l-point-block03__title > p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block03__title > p:nth-child(1) {
  font-size: 24px;
}
.l-point-block03__title > p:nth-child(2) {
  font-size: 30px;
}
.l-point-block03__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block03__titleImg p {
  font-size: 12px;
  text-align: right;
  margin-top: 5px;
}
.l-point-block03__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-point-block03__decoTitle {
  position: relative;
  padding: 0 6%;
  text-align: center;
  margin: 0 auto 20px;
}
.l-point-block03__decoTitle::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #707070;
}
.l-point-block03__decoTitle p {
  position: relative;
  padding: 0 0.5em;
  background: #ffdbd3;
  font-size: 18px;
}
.l-point-block03__decoTitle p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block03__main {
  margin-bottom: 30px;
}
.l-point-block03__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-point-block03__flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-point-block03__flexImg {
  width: 111px;
}
.l-point-block03__flexText {
  width: calc(100% - 126px);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
.l-point-block03__flexText span {
  font-size: 9px;
  vertical-align: text-top;
}
.l-point-block03__mainMini {
  margin-top: 5px;
  font-size: 10px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-point-block04 {
  background: #f4cec5;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block04 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block04__title {
  text-align: center;
}
.l-point-block04__title p {
  text-align: center;
}
.l-point-block04__title p:nth-child(1) {
  font-size: 24px;
}
.l-point-block04__title p:nth-child(2) {
  font-size: 30px;
}
.l-point-block04__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block04__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-point-block04__decoTitle {
  position: relative;
  padding: 0 10%;
  text-align: center;
  margin: 0 auto 20px;
}
.l-point-block04__decoTitle::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #707070;
}
.l-point-block04__decoTitle p {
  position: relative;
  padding: 0 1em;
  background: #f4cec5;
  font-size: 18px;
}
.l-point-block04__decoTitle p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-point-block04__main {
  margin-bottom: 30px;
}
.l-point-block04__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: normal;
}
.l-point-block04__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-point-block04__flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-point-block04__flexImg {
  width: 111px;
}
.l-point-block04__flexText {
  width: calc(100% - 126px);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}

.l-point-block05 {
  background: #ffdbd3;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block05 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block05__title {
  text-align: center;
}
.l-point-block05__title p {
  text-align: center;
}
.l-point-block05__title p span {
  font-size: 17px;
  vertical-align: text-top;
}
.l-point-block05__title p:nth-child(1) {
  font-size: 24px;
}
.l-point-block05__title p:nth-child(2) {
  font-size: 30px;
}
.l-point-block05__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block05__main {
  margin-bottom: 50px;
  font-family: "Noto Sans JP", sans-serif;
}
.l-point-block05__mainImg {
  margin-top: 50px;
}

.l-point-block06 {
  background: #f7b0a5;
  padding: 80px 0 40px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-point-block06 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-point-block06__title {
  text-align: center;
}
.l-point-block06__title p {
  text-align: center;
}
.l-point-block06__title p span {
  font-size: 17px;
  vertical-align: text-top;
}
.l-point-block06__title p:nth-child(1) {
  font-size: 24px;
}
.l-point-block06__title p:nth-child(2) {
  font-size: 30px;
}
.l-point-block06__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-point-block06__main {
  margin-bottom: 50px;
  font-family: "Noto Sans JP", sans-serif;
}
.l-point-block06__mainImg {
  margin-top: 50px;
}

/*============================
faq
============================*/
#video-area {
  position: relative;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#video {
  /*天地中央配置*/
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 100vw; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 110vh; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

.l-faq__block {
  position: sticky;
  top: 0px;
  height: 100vh;
  min-height: 600px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  background: url("../img/concept/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.l-faq__blockBarWrap {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  height: 300px;
  content: "";
  width: 2px;
  background: rgba(255, 255, 255, 0.5);
}
.l-faq__blockBar {
  content: "";
  height: 0;
  width: 3px;
  background: #fff;
  position: relative;
}
.l-faq__blockBar__dot {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -3.5px;
  top: 0;
}
.l-faq__blockBar__dot:nth-child(2) {
  top: 33%;
}
.l-faq__blockBar__dot:nth-child(3) {
  top: 65%;
}
.l-faq__blockBar__dot:nth-child(4) {
  top: auto;
  bottom: 0;
}
.l-faq__block .l-faq__blockText {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: auto;
  width: 80%;
  padding-left: 50px;
}
.l-faq__block .l-faq__blockText p {
  line-height: 2;
  font-size: 13px;
  letter-spacing: normal;
}
.l-faq__block .l-faq__blockText p + p {
  margin-top: 20px;
}
.l-faq__block .l-faq__blockText p span {
  margin-bottom: 15px;
  font-weight: 600;
}

.l-faq__blockImg {
  margin-bottom: 50px;
}
.l-faq__blockImg img {
  margin-left: auto;
}

.l-faq__blockTitle {
  position: absolute;
  top: 10%;
  left: 10px;
  width: 150px;
}

/*============================
footer
============================*/
.l-footer {
  background: #f3c2b0;
  padding: 30px 0;
  position: relative;
}
.l-footer .gototop {
  position: absolute;
  right: 20px;
}
.l-footer .gototop a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer .gototop a:hover {
    opacity: 0.7;
  }
}
.l-footer__instagram a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__instagram a:hover {
    opacity: 0.7;
  }
}
.l-footer__nav {
  text-align: center;
  margin: 20px auto;
}
.l-footer__nav a {
  text-decoration: none;
  color: #464646;
  font-size: 14px;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav a:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright p {
  font-size: 14px;
  text-align: center;
  color: #464646;
}

/*============================
2024.04.04追加 lineup
============================*/
.notes {
  font-size: 10px;
  vertical-align: text-top;
}

.l-lineup-block {
  background: #fff;
  padding: 60px 0 0;
  width: auto;
}

.l-lineup-intro {
  margin-bottom: 30px;
}

.l-lineup-section + .l-lineup-section {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}
.l-lineup-section__text {
  color: #f4b1a2;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
}
.l-lineup-section__text.--citrus {
  color: #d38a00;
}
.l-lineup-section__link {
  background: #f0f0f0;
  text-decoration: none;
  width: 100%;
  font-size: 12px;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  display: block;
  text-align: center;
  padding: 10px;
  color: #707070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: normal;
}
@media (hover: hover) and (pointer: fine) {
  .l-lineup-section__link:hover {
    background: #cacaca;
  }
}

.l-lineup-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.l-lineup-grid__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
}
.l-lineup-grid__itemTitle {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 1.5;
  text-align: center;
}
.l-lineup-grid__itemText {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 1.5;
  text-align: center;
}
.l-lineup-grid__itemImg {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-lineup-grid__item01 .l-lineup-grid__itemImg {
  -webkit-margin-start: -20px;
          margin-inline-start: -20px;
}
.l-lineup-grid__item01 .l-lineup-grid__itemImg img {
  inline-size: 100%;
}
.l-lineup-grid__item02 .l-lineup-grid__itemImg {
  inline-size: 70%;
}
.l-lineup-grid__item02-02 .l-lineup-grid__itemImg img {
  inline-size: 105px;
}
.l-lineup-grid__item03 .l-lineup-grid__itemImg {
  -webkit-margin-start: -10px;
          margin-inline-start: -10px;
}
.l-lineup-grid__item03 .l-lineup-grid__itemImg img {
  inline-size: 100%;
}

.l-lineup-flex {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
  -webkit-margin-after: 30px;
          margin-block-end: 30px;
}
.l-lineup-flex__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 6;
  grid-row: span 6;
}
.l-lineup-flex__itemTitle {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 1.5;
  text-align: center;
}
.l-lineup-flex__itemText {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 1.5;
  text-align: center;
}
.l-lineup-flex__itemImg {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  margin-inline: auto;
}
.l-lineup-flex__item:last-child {
  position: relative;
}
.l-lineup-flex__item:last-child:after {
  content: "";
  position: absolute;
  left: -15px;
  background: #f0f0f0;
  height: 100%;
  inline-size: 1px;
}
.l-lineup-flex__item05 .l-lineup-flex__itemImg {
  inline-size: 90%;
}
.l-lineup-flex__item06 .l-lineup-flex__itemImg {
  inline-size: 60%;
}

.l-mist {
  background: #fff7f6;
  padding: 100px 0 80px;
  border-radius: 500px 500px 0 0;
  margin-top: 250px;
  position: relative;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-img {
  position: absolute;
  width: 90%;
  top: -27%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.l-mist__title {
  text-align: center;
}
.l-mist__titleImg {
  text-align: center;
  margin: 0 auto 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-mist__img {
  margin: 40px auto;
}
.l-mist__imgItem {
  text-align: center;
  margin: 0 auto 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist__text {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  line-height: 2.5;
}

/*============================
mist products
============================*/
.l-products-mist {
  padding: 50px 0 0;
}

.l-products-mist-intro__catch {
  margin-left: -20px;
}

.l-products-mist-intro__title {
  font-size: 16px;
  margin-top: 30px;
  color: #707070;
  letter-spacing: 0.1em;
  line-height: 2;
}
.l-products-mist-intro__title span {
  font-size: 10px;
  vertical-align: text-top;
}

.l-products-mist-main01 {
  padding-top: 160px;
}
.l-products-mist-main01 .l-products-mist-main__item {
  background: #fffaf8;
}

.l-products-mist-main__item {
  position: relative;
}
.l-products-mist-main__itemMini {
  position: absolute;
  top: 120px;
  right: 20px;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: #464646;
}
.l-products-mist-main__itemImg {
  position: relative;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}
.l-products-mist-main__itemText {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: -80px;
  padding-bottom: 50px;
  color: #707070;
}
.l-products-mist-main__itemText p:nth-child(1) {
  font-size: 12px;
  margin-bottom: 5px;
}
.l-products-mist-main__itemText p:nth-child(2) {
  font-size: 14px;
  margin-bottom: 20px;
}
.l-products-mist-main__itemText p:nth-child(3) {
  font-size: 14px;
  line-height: 2;
}

/*============================
mist point
============================*/
.js-accordion {
  display: none;
}

.btn-more {
  width: 100%;
  background: #fff;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-more::before {
  -webkit-transform: translateY(-25%) rotate(45deg);
          transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #707070;
  border-right: 1px solid #707070;
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  margin-top: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .btn-more:hover {
    cursor: pointer;
  }
}
.btn-more.close::before {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.l-mist-point-block01 {
  background: #fff7f6;
  padding: 80px 0 300px;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist-point-block01 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-point-block01__title {
  text-align: center;
}
.l-mist-point-block01__title p {
  text-align: center;
}
.l-mist-point-block01__title p:nth-child(1) {
  font-size: 24px;
}
.l-mist-point-block01__title p:nth-child(2) {
  font-size: 26px;
}
.l-mist-point-block01__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist-point-block01__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-mist-point-block01__main {
  margin-bottom: 30px;
}
.l-mist-point-block01__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.l-mist-point-block02 {
  background: #f6eae9;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist-point-block02 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-point-block02__title {
  text-align: center;
}
.l-mist-point-block02__title > p {
  text-align: center;
}
.l-mist-point-block02__title > p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-mist-point-block02__title > p:nth-child(1) {
  font-size: 24px;
}
.l-mist-point-block02__title > p:nth-child(2) {
  font-size: 26px;
}
.l-mist-point-block02__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist-point-block02__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-mist-point-block02__main {
  margin-bottom: 30px;
}
.l-mist-point-block02__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.l-mist-point-block03 {
  background: #ffdbd3;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist-point-block03 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-point-block03__title {
  text-align: center;
}
.l-mist-point-block03__title > p {
  text-align: center;
}
.l-mist-point-block03__title > p span {
  font-size: 12px;
  vertical-align: text-top;
}
.l-mist-point-block03__title > p:nth-child(1) {
  font-size: 24px;
}
.l-mist-point-block03__title > p:nth-child(2) {
  font-size: 26px;
}
.l-mist-point-block03__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist-point-block03__titleImg p {
  font-size: 12px;
  text-align: right;
  margin-top: 5px;
}
.l-mist-point-block03__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-mist-point-block03__main {
  margin-bottom: 30px;
}
.l-mist-point-block03__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.8;
}

.l-mist-point-block04 {
  background: #f4cec5;
  padding: 80px 0 300px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist-point-block04 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-point-block04__title {
  text-align: center;
}
.l-mist-point-block04__title p {
  text-align: center;
}
.l-mist-point-block04__title p:nth-child(1) {
  font-size: 24px;
}
.l-mist-point-block04__title p:nth-child(2) {
  font-size: 26px;
}
.l-mist-point-block04__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist-point-block04__titleText {
  font-family: "Noto Sans JP", sans-serif;
  color: #707070;
  font-size: 18px;
  line-height: 1.8;
}
.l-mist-point-block04__main {
  margin-bottom: 30px;
}
.l-mist-point-block04__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.8;
}

.l-mist-point-block05 {
  background: #ffdbd3;
  padding: 80px 0 80px;
  margin-top: -60%;
  border-radius: 500px 500px 0 0;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-mist-point-block05 {
    border-radius: 50vw 50vw 0 0;
  }
}
.l-mist-point-block05__title {
  text-align: center;
}
.l-mist-point-block05__title p {
  text-align: center;
}
.l-mist-point-block05__title p span {
  font-size: 17px;
  vertical-align: text-top;
}
.l-mist-point-block05__title p:nth-child(1) {
  font-size: 24px;
}
.l-mist-point-block05__title p:nth-child(2) {
  font-size: 30px;
}
.l-mist-point-block05__titleImg {
  text-align: center;
  margin: 40px auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-mist-point-block05__main {
  margin-bottom: 50px;
}
.l-mist-point-block05__main p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: normal;
  line-height: 1.8;
}
.l-mist-point-block05__mainImg {
  margin-top: 50px;
}

.l-mist-use {
  padding: 50px 0 0;
}
.l-mist-use__title {
  margin-bottom: 60px;
}
.l-mist-use__contents {
  margin-bottom: 20px;
}