@charset "utf-8";

body.fixed {
  position: fixed;
  right: 0;
  left: 0;
}

.l-main {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .l-main {
    margin-bottom: 0 !important;
  }
}

#header {
  z-index: 2;
}

/* ------------------------------------------- */
/* container */
/* ------------------------------------------- */

.l-container {
  --side-px: calc((100vw -  750px) / 2 / 585);
}

.l-container::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to bottom, #FFF3E1 0%, #FFD295 100%);
}

@media screen and (max-width: 1023px) {
  .l-container .l-side-fixed {
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}

.l-container .l-side-fixed .l-left {
  display: flex;
  align-items: center;
  position: fixed;
  top: 160px;
  bottom: 0;
  left: 0;
  width: calc(605 * var(--side-px));
}

@media screen and (max-width: 1023px) {
  .l-container .l-side-fixed .l-left {
    display: none;
  }
}

.l-container .l-side-fixed .l-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-container .l-side-fixed .l-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 160px;
  bottom: 0;
  right: 0;
  width: calc(585 * var(--side-px));
}

@media screen and (max-width: 1023px) {
  .l-container .l-side-fixed .l-right {
    display: none;
  }
}

.l-container .l-side-fixed .l-right img {
  width: 100%;
  min-height: 0;
  object-fit: contain;
}

.l-container .l-side-fixed .l-right a {
  width: calc(465 * var(--side-px));
  min-height: 0;
  opacity: 1;
  transition: ease 0.2s opacity;
}

@media (hover: hover) and (pointer: fine) {
  .l-container .l-side-fixed .l-right a:hover {
    opacity: 0.7;
  }
}

.l-container .l-side-fixed .l-right a img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 calc(3 * var(--side-px)) calc(20 * var(--side-px)) rgba(0,0,0,0.32));
}

/* ------------------------------------------- */
/* mainvisual */
/* ------------------------------------------- */

.m-mainvisual {
  position: relative;
  z-index: 1;
  width: 100%;
}

.m-mainvisual img {
  width: 100%;
}

/* ------------------------------------------- */
/* common */
/* ------------------------------------------- */

img {
  vertical-align: top;
}

:root {
  --px: 1px;
}

@media screen and (max-width: 767px) {
  :root {
    --px: calc(1 / 750 * 100vw);
  }
}

.u-w750 {
  margin-right: auto;
  margin-left: auto;
  width: 750px;
}

@media screen and (max-width: 767px) {
  .u-w750 {
    width: 100%;
  }
}

.u-fc-red {
  color: #E50012;
}

.u-highlight {
  text-decoration: underline;
  text-decoration-color: #FFDC68;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 1.2em;
  text-underline-offset: -0.95em;
}

.u-note,
.u-supplement {
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: calc(18 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(24 * var(--px));
  text-align: left;
  color: #000;
}

.u-note li,
.u-supplement li {
  position: relative;
  padding-left: 1.5em;
}

.u-note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.u-supplement li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.u-han {
  text-indent: -0.5em;
}

.u-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: calc(75 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(26 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(40 * var(--px));
  text-align: left;
  color: #fff;
  text-decoration: none;
  background-color: var(--color);
  border: solid calc(2 * var(--px)) var(--color);
  border-radius: calc(38 * var(--px));
}

.u-btn:active,
.u-btn:focus {
  color: var(--color);
  text-decoration: none;
  background-color: #fff;
}

.u-btn:hover {
  color: var(--color);
  text-decoration: none;
  background-color: #fff;
}

.u-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: calc(21 * var(--px));
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: calc(10 * var(--px));
  height: calc(10 * var(--px));
  border-top: solid calc(3 * var(--px)) #fff;
  border-right: solid calc(3 * var(--px)) #fff;
  transform: rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .u-btn:hover::before {
    border-color: var(--color);
  }
}

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

@media screen and (min-width: 768px) {
  .u-pcoff {
    display: none !important;
  }
}

/* ------------------------------------------- */
/* m-section-about */
/* ------------------------------------------- */

.m-section-about {
  padding-top: calc(71 * var(--px));
  padding-right: calc(44 * var(--px));
  padding-bottom: calc(48 * var(--px));
  padding-left: calc(44 * var(--px));
  background-color: #fff;
}

.m-area-crocetine {
  padding-right: calc(30 * var(--px));
  padding-bottom: calc(64 * var(--px));
  padding-left: calc(30 * var(--px));
}

.m-area-crocetine .m-title {
  margin-bottom: calc(38 * var(--px));
  width: 100%;
}

.m-area-crocetine .m-title img {
  width: 100%;
  object-fit: contain;
}

.m-area-crocetine .m-pht {
  margin-bottom: calc(28 * var(--px));
  width: 100%;
}

.m-area-crocetine .m-pht img {
  width: 100%;
  object-fit: contain;
}

.m-area-crocetine .m-text {
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(28 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(40 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-support {
  margin-top: calc(52 * var(--px));
  padding-right: calc(30 * var(--px));
  padding-bottom: calc(31 * var(--px));
  padding-left: calc(30 * var(--px));
  background-color: var(--light-color);
}

.m-area-support + .m-area-support {
  margin-top: calc(92 * var(--px));
}

.m-area-support .m-title {
  position: relative;
  top: calc(-52 * var(--px));
  left: calc(-30 * var(--px));
  padding-left: calc(125 * var(--px));
  width: calc(100% + calc(60 * var(--px)));
  height: calc(104 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(48 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(104 * var(--px));
  text-align: left;
  color: #fff;
  background-color: var(--color);
  border-radius: calc(52 * var(--px));
}

.m-area-support .m-title .l-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(104 * var(--px));
  background-color: #fff;
  border: solid calc(6 * var(--px)) var(--color);
  border-radius: 50%;
}

.m-area-support .m-title .l-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-area-support .m-text {
  margin-bottom: calc(28 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(32 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(48 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-support .m-pht {
  margin-bottom: calc(30 * var(--px));
  width: 100%;
}

.m-area-support .m-pht img {
  width: 100%;
}

.m-area-support .m-area-test + .m-area-test {
  margin-top: calc(65 * var(--px));
}

.m-area-support .m-area-test .m-subtitle {
  display: flex;
  align-items: center;
  margin-bottom: calc(15 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(24 * var(--px));
  letter-spacing: 0.05em;
  text-align: left;
  color: #000;
}

.m-area-support .m-area-test .m-subtitle::before,
.m-area-support .m-area-test .m-subtitle::after {
  content: "";
  flex-grow: 1;
  display: block;
  height: calc(2 * var(--px));
  background-color: var(--color);
  border-radius: calc(1 * var(--px));
}

.m-area-support .m-area-test .m-subtitle p {
  flex-shrink: 0;
  display: inline-block;
  margin-right: calc(13 * var(--px));
  margin-left: calc(13 * var(--px));
}

.m-area-support .m-area-test .m-graph {
  margin-bottom: calc(27 * var(--px));
  width: calc(100% + calc(30 * var(--px)));
}

.m-area-support .m-area-test .m-graph img {
  width: 100%;
}

.m-area-support .m-area-test .m-memo {
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: calc(18 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(26 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-eye {
  --color: #F15921;
  --light-color: #FFF2D5;
}

.m-area-sleep {
  --color: #841386;
  --light-color: #F3EAF3;
}

.m-area-last {
  padding-top: calc(55 * var(--px));
}

.m-area-last .m-box {
  text-align: center;
  border: dotted calc(6 * var(--px)) var(--color);
  border-radius: calc(16 * var(--px));
}

.m-area-last .m-box + .m-box {
  margin-top: calc(28 * var(--px));
}

.m-area-last .m-box-purple {
  --color: #841386;
  padding-top: calc(38 * var(--px));
  padding-bottom: calc(38 * var(--px));
}

.m-area-last .m-box-purple .m-text {
  display: inline-block;
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(40 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(54 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-last .m-box-orange {
  --color: #F15921;
  padding-top: calc(32 * var(--px));
  padding-bottom: calc(32 * var(--px));
}

.m-area-last .m-box-orange .m-img {
  margin-bottom: calc(16 * var(--px));
  width: calc(146 * var(--px));
}

.m-area-last .m-box-orange .m-title {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin-bottom: calc(19 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(40 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(39 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-last .m-box-orange .m-title::before {
  content: "";
  margin-top: calc(11 * var(--px));
  width: calc(78 * var(--px));
  height: calc(9 * var(--px));
  background-image: url(../img/04-dot.png);
  background-repeat: repeat-x;
  background-size: contain;
}

.m-area-last .m-box-orange .m-text {
  display: inline-block;
  width: calc(570 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(28 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(38 * var(--px));
  text-align: left;
  color: #000;
}

.m-area-last .m-group-zero {
  display: flex;
  align-items: center;
  padding-top: calc(28 * var(--px));
  padding-left: calc(12 * var(--px));
}

.m-area-last .m-group-zero .m-img {
  flex-shrink: 0;
  margin-right: calc(29 * var(--px));
  width: calc(178 * var(--px));
}

.m-area-last .m-group-zero .u-note {
  flex-grow: 1;
}

/* ------------------------------------------- */
/* m-movie */
/* ------------------------------------------- */

.m-movie {
  padding-top: calc(102 * var(--px));
  padding-right: calc(74 * var(--px));
  padding-bottom: calc(104 * var(--px));
  padding-left: calc(74 * var(--px));
  background-color: #273895;
}

.m-movie .m-title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: calc(24 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(36 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(48 * var(--px));
  text-align: center;
  color: #fff;
}

.m-movie .m-title::before {
  content: "";
  display: block;
  margin-right: calc(17 * var(--px));
  width: calc(60 * var(--px));
  height: calc(54 * var(--px));
  background-image: url(../img/05-deco-1.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.m-movie .m-title::after {
  content: "";
  display: block;
  margin-left: calc(7 * var(--px));
  width: calc(60 * var(--px));
  height: calc(54 * var(--px));
  background-image: url(../img/05-deco-2.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.m-movie img {
  width: 100%;
}

.m-movie #movie_area {
  cursor: pointer;
}

/* ------------------------------------------- */
/* m-section-takuhai */
/* ------------------------------------------- */

.m-section-takuhai {
  padding-top: calc(106 * var(--px));
  padding-right: calc(74 * var(--px));
  padding-bottom: calc(106 * var(--px));
  padding-left: calc(74 * var(--px));
  background-color: #EFF2FE;
}

.m-section-takuhai .m-title {
  margin-bottom: calc(34 * var(--px));
  text-align: center;
}

.m-section-takuhai .m-title-sub {
  display: inline-flex;
  align-items: center;
  margin-bottom: calc(22 * var(--px));
  padding-right: 0.5em;
  padding-left: 0.5em;
  height: calc(57 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(32 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(48 * var(--px));
  text-align: center;
  color: #fff;
  background-color: #273895;
}

.m-section-takuhai .m-title-main {
  margin-right: auto;
  margin-left: auto;
  width: calc(500 * var(--px));
}

.m-section-takuhai .m-title-main img {
  width: 100%;
}

.m-section-takuhai .m-pht {
  margin-bottom: calc(34 * var(--px));
  width: 100%;
  text-align: center;
}

.m-section-takuhai .m-pht img {
  width: calc(319 * var(--px));
}

.m-section-takuhai .m-text {
  margin-bottom: calc(57 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(30 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(46 * var(--px));
  text-align: left;
  color: #000;
}

.m-section-takuhai .m-btn-c-blue {
  --color: #273895;
}

/* ------------------------------------------- */
/* m-section-app */
/* ------------------------------------------- */

.m-section-app {
  padding-top: calc(106 * var(--px));
  padding-right: calc(44 * var(--px));
  padding-left: calc(44 * var(--px));
  background-image: url(../img/07-bg.jpg);
  background-size: cover;
  background-position: center center;
}

.m-section-app .m-box {
  margin-bottom: calc(59 * var(--px));
}

.m-section-app .m-box .m-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(68 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(36 * var(--px));
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  background-color: #005E9D;
  border-top-right-radius: calc(16 * var(--px));
  border-top-left-radius: calc(16 * var(--px));
}

.m-section-app .m-box .m-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(27 * var(--px));
  padding-right: calc(38 * var(--px));
  padding-bottom: calc(39 * var(--px));
  padding-left: calc(30 * var(--px));
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom-right-radius: calc(16 * var(--px));
  border-bottom-left-radius: calc(16 * var(--px));
}

.m-section-app .m-box .m-content .m-text {
  flex-shrink: 0;
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(32 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(58 * var(--px));
  text-align: left;
  color: #000;
  text-decoration: underline;
  text-decoration-color: #589CC9;
  text-decoration-thickness: calc(1 * var(--px));
  text-underline-offset: calc(15 * var(--px));
}

.m-section-app .m-box .m-content .m-img {
  width: calc(248 * var(--px));
}

.m-section-app .m-box .m-content .m-img img {
  width: 100%;
}

.m-section-app .m-area-download {
  text-align: center;
}

.m-section-app .m-area-download .m-subtitle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: calc(28 * var(--px));
  padding-right: 1em;
  padding-left: 1em;
  height: calc(90 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(30 * var(--px));
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  background-color: #005E9D;
  border-radius: calc(45 * var(--px));
}

.m-section-app .m-area-download .m-subtitle::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - calc(3 * var(--px)));
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: calc(18 * var(--px));
  height: calc(9 * var(--px));
  background-color: #005E9D;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.m-section-app .m-area-download .m-group-qr {
  padding-bottom: calc(58 * var(--px));
  text-align: center;
}

html.js-ua-ios .m-section-app .m-area-download .m-group-qr,
html.js-ua-android .m-section-app .m-area-download .m-group-qr {
  display: none;
}

.m-section-app .m-area-download .m-group-qr a {
  display: block;
  margin-right: auto;
  margin-bottom: calc(12 * var(--px));
  margin-left: auto;
  width: calc(242 * var(--px));
  height: calc(242 * var(--px));
}

.m-section-app .m-area-download .m-group-qr a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-section-app .m-area-download .m-group-qr .m-text {
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(28 * var(--px));
  letter-spacing: 0.05em;
  text-align: center;
  color: #000;
}

.m-section-app .m-area-download .m-group-app {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: calc(82 * var(--px));
}

html.js-ua-pc .m-section-app .m-area-download .m-group-app {
  display: none;
}

.m-section-app .m-area-download .m-group-app a {
  display: block;
  height: calc(135 * var(--px));
}

.m-section-app .m-area-download .m-group-app a:not(:first-child) {
  margin-left: calc(36 * var(--px));
}

html.js-ua-ios .m-section-app .m-area-download .m-group-app a.js-android {
  display: none;
}

html.js-ua-android .m-section-app .m-area-download .m-group-app a.js-ios {
  display: none;
}

.m-section-app .m-area-download .m-group-app a img {
  height: 100%;
}

/* ------------------------------------------- */
/* m-section-nutrition */
/* ------------------------------------------- */

.m-section-nutrition {
  padding-top: calc(96 * var(--px));
  padding-right: calc(44 * var(--px));
  padding-bottom: calc(82 * var(--px));
  padding-left: calc(44 * var(--px));
  background-color: #fff;
}

.m-section-nutrition .m-table {
  margin-bottom: calc(43 * var(--px));
  width: 100%;
}

.m-section-nutrition .m-table img {
  width: 100%;
}

.m-section-nutrition .u-note {
  margin-bottom: calc(26 * var(--px));
}

/* ------------------------------------------- */
/* m-section-trial */
/* ------------------------------------------- */

.m-section-trial {
  background-color: #FFEDE5;
  border: solid calc(3 * var(--px)) #E50012;
}

.m-section-trial .m-title {
  width: 100%;
}

.m-section-trial .m-title img {
  width: 100%;
}

.m-section-trial .m-content {
  padding-top: calc(60 * var(--px));
  padding-right: calc(44 * var(--px));
  padding-bottom: calc(60 * var(--px));
  padding-left: calc(44 * var(--px));
}

.m-section-trial .m-content .m-group {
  display: flex;
  align-items: stretch;
  width: calc(100% + calc(44 * var(--px)));
}

.m-section-trial .m-content .m-group + .m-group {
  position: relative;
  margin-top: calc(45 * var(--px));
  padding-top: calc(40 * var(--px));
}

.m-section-trial .m-content .m-group + .m-group::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: calc(44 * var(--px));
  left: 0;
  height: calc(1 * var(--px));
  background-color: #E50012;
}

.m-section-trial .m-content .m-group .m-pht {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: calc(41 * var(--px));
  background-color: #fff;
  border-radius: calc(15 * var(--px));
}

.m-section-trial .m-content .m-group .m-pht img {
  width: calc(173 * var(--px));
}

.m-section-trial .m-content .m-group .m-text-main {
  margin-bottom: calc(21 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(34 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(44 * var(--px));
  text-align: left;
  color: #e50012;
}

.m-section-trial .m-content .m-group .m-text-sub {
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(28 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(40 * var(--px));
  text-align: left;
  color: #000;
}

.m-section-trial .m-content .m-group .m-text-sub-small {
  font-size: calc(24 * var(--px));
  letter-spacing: -0.05em;
  line-height: calc(40 * var(--px));
}

.m-section-trial .m-area-btn {
  /* margin-top: calc(78 * var(--px)); */
}

.m-section-trial .m-area-btn .m-subtitle {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: calc(15 * var(--px));
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: calc(32 * var(--px));
  letter-spacing: 0.05em;
  line-height: calc(41 * var(--px));
  text-align: center;
  color: #000;
}

.m-section-trial .m-area-btn .m-subtitle::before {
  content: "";
  display: block;
  margin-right: calc(6 * var(--px));
  width: calc(22 * var(--px));
  height: calc(18 * var(--px));
  background-image: url(../img/09-deco-1.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.m-section-trial .m-area-btn .m-subtitle::after {
  content: "";
  display: block;
  width: calc(22 * var(--px));
  height: calc(18 * var(--px));
  background-image: url(../img/09-deco-2.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.m-section-trial .m-area-btn .m-btn-c-red {
  --color: #E50012;
}

.m-sp-fixed-btn {
  display: block;
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(161 * var(--px));
}

/* ------------------------------------------- */
/* footer-links */
/* ------------------------------------------- */

.footer-links {
  padding-top: calc(40 / 375 * 100vw);
  padding-bottom: calc(50 / 375 * 100vw);
  background-color: #fff;
}

@media screen and (min-width: 750px) {
  .footer-links {
    padding-top: 80px;
  }
}

@media screen and (min-width: 750px) {
  .footer-links {
    padding-bottom: 100px;
  }
}

.footer-links .footer-links-ttl {
  display: flex;
  color: #49453E;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}

.footer-links .links-ttl {
  font-size: calc(18 / 375 * 100vw);
}

@media screen and (min-width: 750px) {
  .footer-links .links-ttl {
    font-size: 36px;
  }
}

.footer-links .bottom-banner {
  width: calc(335 / 375 * 100vw);
  margin-top: calc(20 / 375 * 100vw);
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

@media screen and (min-width: 750px) {
  .footer-links .bottom-banner {
    width: 670px;
  }
}

@media screen and (min-width: 750px) {
  .footer-links .bottom-banner {
    margin-top: 40px;
  }
}

.footer-links .bottom-banner a {
  display: block;
  width: 100%;
}

.footer-links .bottom-banner a:hover {
  opacity: 0.75;
  transition: opacity 0.3s;
}

.footer-links .bottom-banner a img {
  width: 100%;
}
