@charset "UTF-8";
/* CSS Document */
:root {
  --text-color: #343434;
  --sc-width: 92%;
}
header {
  width: 100%;
  max-width: 500px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(102, 102, 102, 1) 100%);
  position: fixed;
  z-index: 100;
}
header nav ul {
  height: 5.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header nav ul li:first-child {
  width: 10rem;
  /* margin-left: 2rem; */
}
header nav ul li:last-child a img {
  width: 20rem;
}
main {
  padding-top: 5.4rem;
}
.mvArea {
  position: relative;
}
.mvArea .mvBtn {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 3rem;
  width: 85%;
}
@media screen and (min-width:500px) {
  .mvArea .mvBtn {
    bottom: 5rem;
  }
}
.worriesArea {
  position: relative;
  background: #FFF;
}
.worriesArea .before {
  width: 14rem;
  position: absolute;
  top: -2.2rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width:500px) {
  .worriesArea .before {
    width: 20rem;
    top: -3.2rem;
  }
}
.worriesArea .movieBox {
  width: 100%;
  margin: 0 auto 0;
  padding: 1rem 0 0;
  background-image: url("movieBg.webp");
}
.worriesArea .movieBox .movieTop{
  width: 85%;
  margin: 1rem auto 0;
}
.worriesArea .movieBox .movieBottom {
  margin-top: 1rem;
}
/* .ctaArea {
  position: relative;
  padding-top: 6rem;
  background-color: #3E3A39;
} */
/* .aboutArea .ctaArea a {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: auto;
} */
.aboutArea  .movieBox{
  width: 100%;
  margin: 0 auto 0;
  background-color: #E8E9EB;
}
.aboutArea  .movieBox .moviePoint{
  width: 90%;
  height: auto;
  position: relative;
  margin: 0 auto ;
  aspect-ratio: 672/384;
  overflow: hidden;
}
.aboutArea  .movieBox .moviePoint video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 中央を切り抜いて表示 */
}

@media screen and (min-width:500px) {
  .aboutArea .ctaArea a {
    top: -4rem;
  }
}
.aboutArea p {
  color: #BBBBBB;
  font-size: 1rem;
  width: var(--sc-width);
  margin: 0 auto;
}
.aboutArea a {
  width: 95%;
  margin: 2rem auto 0.5rem;
}
.kcalArea .programBox {
  width: var(--sc-width);
  margin: auto;
  border: 2px solid var(--text-color);
  padding-bottom: 6rem;
}
.kcalArea .programBox .programBoxInner {
  width: 90%;
  margin: 0 auto;
}
.kcalArea .programBox .programBoxInner div {
  margin-top: 3rem;
}
.kcalArea .programBox .programBoxInner div h3 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width:500px) {
  .kcalArea .programBox .programBoxInner div h3 {
    font-size: 2rem;
  }
}
.kcalArea .programBox .programBoxInner div p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
@media screen and (min-width:500px) {
  .kcalArea .programBox .programBoxInner div p {
    font-size: 1.6rem;
  }
}
.kcalArea .box {
  position: relative;
}
.kcalArea .box a {
  position: absolute;
  bottom: 1.5rem;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
}
.kcalArea .kcalCloseBox {
  position: relative;
}
.kcalArea .kcalCloseBox .title {
  position: absolute;
  top: -6rem;
}
.kcalArea .kcalCloseBox .detail {
  padding-top: 7.3rem;
}
@media screen and (min-width:500px) {
  .kcalArea .kcalCloseBox .detail {
    padding-top: 11.5rem;
  }
}
.voiceArea {
  /* background: #E8E9EB; */
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.voiceArea ul {
  width: 85%;
  margin: 0 auto;
}
.voiceArea ul li {
  margin-top: 1rem;
}
.voiceArea ul li:first-child {
  margin-top: 3rem;
}
.voiceArea ul li p {
  background: #333333;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  border-radius: 0 0 10px 10px;
}
.voiceArea p.note {
  width: 85%;
  margin: 0 auto;
  text-align: right;
  font-size: 1.2rem;
  color: #333;
}
/* .ctaArea {
  padding-top: 4rem;
}
.ctaArea .emptyHanded {
  margin-top: 1.5rem;
}
@media screen and (min-width:500px) {
  .ctaArea .emptyHanded {
    margin-top: 3.5rem;
  }
} */
.faqArea {
  padding-top: 4rem;
}
.faqArea .faqBox {
  width: var(--sc-width);
  margin: 4rem auto 0;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox {
    margin-top: 6rem;
  }
}
.faqArea .faqBox dl {
  position: relative;
  margin-top: 2.5rem;
}
.faqArea .faqBox dl dt {
  position: absolute;
  top: -1.5rem;
  background: #F2FF00;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 90%;
}
.faqArea .faqBox dl dt img {
  width: 4rem;
  margin-right: 1rem;
  border-right: 2px solid #FFF;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox dl dt img {
    width: 6rem;
  }
}
.faqArea .faqBox dl dt p {
  font-size: 1.4rem;
  padding-right: 2rem;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox dl dt p {
    font-size: 2rem;
  }
}
.faqArea .faqBox dl dd {
  background: #FFFDE1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 6rem 2rem 2rem 1.3rem;
  justify-content: space-between;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox dl dd {
    padding-top: 11rem;
    padding-left: 1.7rem;
  }
}
.faqArea .faqBox dl dd img {
  width: 1.3rem;
  margin-top: 0.5rem;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox dl dd img {
    width: 2rem;
  }
}
.faqArea .faqBox dl dd p {
  font-size: 1.4rem;
  text-align: justify;
  line-height: 2.5rem;
  width: 90%;
  margin-right: 0.5rem;
}
@media screen and (min-width:500px) {
  .faqArea .faqBox dl dd p {
    font-size: 2rem;
    line-height: 3.5rem;
    width: 85%;
    margin-right: 2rem;
  }
}
.faqArea .ctaArea,.aboutArea .ctaArea{
  background-color: #fff;
}
.priceArea .ctaArea,.voiceArea .ctaArea{
  background-color: #E8E9EB;
}
.endArea {
  margin-top: 3rem;
}
@media screen and (min-width:500px) {
  .endArea {
    margin-top: 4rem;
  }
}
.shopArea {
  margin-top: 5rem;
}
.shopArea .contents {
  width: var(--sc-width);
  margin: 0 auto;
}
.shopArea .studioBox {
  position: relative;
  margin-top: 3rem;
}
.shopArea .studioBox .attention {
  width: 90%;
  margin: auto;
  z-index: 1;
  position: relative;
  top: 1rem;
}
.shopArea .studioBox .box {
  border: 2px solid var(--text-color);
}
.shopArea .studioBox .box ul {
  padding: 2rem 2rem 0;
}
.shopArea .studioBox .box ul li {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
@media screen and (min-width:500px) {
  .shopArea .studioBox .box ul li {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
}
.shopArea .studioBox .box ul li:first-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0;
}
.shopArea .studioBox .box ul li .logo {
  width: 6rem;
}
@media screen and (min-width:500px) {
  .shopArea .studioBox .box ul li .logo {
    width: 9rem;
  }
}
.shopArea .studioBox .box ul li:last-child {
  font-size: 1.2rem;
}
@media screen and (min-width:500px) {
  .shopArea .studioBox .box ul li:last-child  {
    font-size: 1.8rem;
  }
}
.shopArea .studioBox .box a {
  padding: 2rem 1rem 1rem;
}
.shopArea h2 {
  font-size: 3.36rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  margin-top: 2rem;
}
.shopArea h2 span {
  font-size: 1.5rem;
}
.shopArea h2 span span {
  color: #FF7232;
  font-size: 1.8rem;
}
.shopArea .studiolistBox {
  background: #F5F2F2;
  margin-top: 2rem;
}
.shopArea .studiolistBox ul {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:500px) {
  .shopArea .studiolistBox ul {
    width: 80%;
    margin: 0 auto;
  }
}
.shopArea .studiolistBox ul li {
  font-size: 1.5rem;
  line-height: 1.8em;
}
@media screen and (min-width:500px) {
  .shopArea .studiolistBox ul li {
    font-size: 1.8rem;
  }
}
.shopArea .studiolistBox ul li.line {
  border-left: 1px solid #6a6a6a;
  height: 1.5rem;
  margin: 0 1rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.floating-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 32%;
}
.floating-banner img {
  max-width: 100%; /* 画像サイズを調整 */
  height: auto;
}

.floating-banner a {
  display: block;
  text-decoration: none;
}
@media screen and (min-width:500px) {
  .floating-banner{
    width: 20%;
  }
  .floating-banner img {
  max-width: 220px; /* 画像サイズを調整 */
 
}
}
.media {
  width: 89%;
  font-family: "noto sans jp", sans-serif;
  font-weight: 500;
  margin: 0 auto;
  border-bottom: 1px solid #DDDDDD;
}
.media:first-child{
  border-top:  1px solid #DDDDDD;
}
.media dt{
  padding: 20px 22px 8px;
  font-size: 16px;
  color: #8D8D8D;
  font-weight: 500;
}
.media dd{
  padding: 0px 22px 24px;
  font-size: 18px;
  color: #504949;
}
.media dd a{
  display: inline;
  color: #5782D4;
  border-bottom: 1px solid #5782D4;
}