@charset "UTF-8";
/* 共通 */
html {
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
}

@font-face {
  src: url("../fonts/NotoSansJP-Black900.woff") format("woff");
  font-family: "Noto Sans JP 900";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Bold700.woff") format("woff");
  font-family: "Noto Sans JP 700";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Medium500.woff") format("woff");
  font-family: "Noto Sans JP 500";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Regular400.woff") format("woff");
  font-family: "Noto Sans JP 400";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/NotoSansJP-Light300.woff") format("woff");
  font-family: "Noto Sans JP 300";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-ExtraBold.woff") format("woff");
  font-family: "RedHatDisplay-ExtraBold";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-Bold.woff") format("woff");
  font-family: "RedHatDisplay-bold";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-Light.woff") format("woff");
  font-family: "RedHatDisplay-Light";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-Medium.woff") format("woff");
  font-family: "RedHatDisplay-Medium";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-BlackItalic.woff") format("woff");
  font-family: "RedHatDisplay-BlackItalic";
  font-style: normal;
  font-display: swap;
}
@font-face {
  src: url("../fonts/RedHatDisplay-Black.woff") format("woff");
  font-family: "RedHatDisplay-Black";
  font-style: normal;
  font-display: swap;
}
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 768px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

/* IE6 */
* html .clearfix, *:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.note {
  color: #333 !important;
  margin-left: 0 !important;
  text-indent: 0 !important;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

.font2 {
  font-family: "Red Hat Display", sans-serif !important;
}

/*  color
---------------------------------------------*/
.c-caution {
  color: #e20c0c;
}

@keyframes animate-panel {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  49% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  50% {
    transform-origin: right top;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: right top;
    transform: scale(0, 1);
  }
}
@keyframes animate-content {
  0% {
    visibility: hidden;
  }
  49% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
  100% {
    visibility: visible;
  }
}
.mask-inner {
  position: relative;
  visibility: hidden;
}
.mask-inner::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: all 0.3s cubic-bezier(0.36, 0.14, 0, 1) 0s;
  visibility: visible;
}
.mask-inner.start {
  animation-name: animate-content;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  backface-visibility: hidden;
}
.mask-inner.start::after {
  animation-name: animate-panel;
  animation-duration: 1.2s;
  animation-timing-function: cubic-bezier(0.36, 0.14, 0, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  backface-visibility: hidden;
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: all 200ms ease;
  animation-duration: 1500ms;
  animation-fill-mode: both;
}
.animate.animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

.effect01 {
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.effect01::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 3;
  animation: effect01-b 0.8s ease-out 0s 1 alternate forwards running;
}
.effect01::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: effect-a 0.8s ease-out 0.6s 1 alternate forwards running;
}

@keyframes effect01-b {
  0% {
    left: -100%;
  }
  40% {
    left: 0;
  }
  60% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes effect-a {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.puyon {
  animation: puyon 2s linear 0s infinite;
}

@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*==================================================================
    #header
===================================================================*/
/*==================================================================
    #spa-trainer
===================================================================*/
#spa-trainer {
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
#spa-trainer .annotation {
  font-size: 1rem;
}
#spa-trainer * {
  box-sizing: border-box !important;
}
#spa-trainer sup {
  top: 0.3em !important;
  font-size: 12px;
}
#spa-trainer h2 sup {
  top: 0.8em !important;
}
#spa-trainer > * {
  box-sizing: border-box;
}

.product-hero {
  width: 100vw;
  height: 40.506329113vw;
}
@media only screen and (max-width: 768px) {
  .product-hero {
    height: 140.350877192vw;
  }
}
.product-hero .inner {
  width: 100%;
  height: 100%;
}

.products_comingsoon {
  border: 1px solid #666;
  border-radius: 3px;
  text-align: center;
  display: block;
  width: 300px;
  height: 60px;
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  color: #484848;
}
@media only screen and (max-width: 768px) {
  .products_comingsoon {
    width: 100%;
  }
}
.products_comingsoon p {
  line-height: 60px;
  text-align: center;
}

.products_annotation {
  margin-top: 1em;
  width: 100%;
  font-size: 12px !important;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .products_annotation {
    text-align: left;
  }
}

.pv {
  margin: 100px auto;
  width: min(95%, 1000px);
}
@media only screen and (max-width: 768px) {
  .pv {
    margin: 2.5vw auto;
  }
}
.pv .mov {
  margin: 0 auto;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
@media only screen and (max-width: 768px) {
  .pv .mov {
    width: 95%;
    padding-bottom: 53.4375%;
  }
}

/*==================================================================
    #spa-trainer
===================================================================*/
#spa-trainer #trouble {
  padding: 40px 15px;
}
#spa-trainer #award {
  background: #fff;
  position: relative;
}
#spa-trainer #award .container {
  padding: 40px 15px;
}

/*==================================================================
    #buy-area
===================================================================*/
.purchase_lead_col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto 30px;
  width: min(100%, 990px);
}
@media only screen and (max-width: 768px) {
  .purchase_lead_col {
    margin: 0 0 30px 0;
  }
}

.perchase-b_lead {
  line-height: 1.3em !important;
}

.purchase-balloon {
  position: absolute;
  top: 30%;
  right: 0;
  transform: translate(-30%, -160%);
  width: min(40%, 200px);
}
@media only screen and (max-width: 950px) {
  .purchase-balloon {
    transform: translate(0, -160%);
  }
}
@media only screen and (max-width: 768px) {
  .purchase-balloon {
    transform: translate(0, -160%);
  }
}

.new-badge {
  width: min(25%, 90px);
}

.perchase-b_lead {
  margin: 0 0 0 0.5em !important;
}
@media only screen and (max-width: 768px) {
  .perchase-b_lead {
    font-size: 4.5vw !important;
  }
}

.perchase-b_list .txt {
  position: relative;
}

@media only screen and (max-width: 768px) {
  .products_info dd {
    padding-bottom: 30px;
  }
}

#buy-area .big3_wrap {
  margin-top: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}
#buy-area .big3_wrap_ttl {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}
#buy-area .big3_wrap_ttl p {
  display: grid;
  align-items: center;
  border-top: 1px solid #484848;
  border-bottom: 1px solid #484848;
  font-weight: 600;
}
#buy-area .big3_wrap_ttl h2 {
  font-size: 24px;
  color: #e18886;
}
#buy-area .big3_wrap .big3_point_list {
  display: grid;
  gap: 20px;
}
#buy-area .big3_wrap .big3_point_list .big3_point_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
}
#buy-area .big3_wrap .big3_point_list .big3_point_item img {
  grid-column: 1/2;
  grid-row: 1/3;
  width: 60px;
  height: 60px;
}
#buy-area .big3_wrap .big3_point_list .big3_point_item h3 {
  grid-column: 2/3;
  grid-row: 1/2;
  color: #e18886;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
#buy-area .big3_wrap .big3_point_list .big3_point_item h3 span {
  color: #333;
  font-size: 14px;
}
#buy-area .big3_wrap .big3_point_list .big3_point_item p {
  grid-column: 2/3;
  grid-row: 2/3;
}

/*==================================================================
    #problems
===================================================================*/
.problems {
  position: relative;
  background: #e8f5f5;
  text-align: center;
}
.problems::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #e8f5f5 transparent transparent transparent;
}
.problems .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: 600px;
  max-width: 1090px !important;
}
@media only screen and (max-width: 768px) {
  .problems .container {
    height: 96vw;
    overflow: hidden;
  }
}
.problems .problem-ill {
  position: relative;
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .problems .problem-ill {
    width: min(40vw, 240px);
  }
}
.problems .problem-ill img {
  display: block;
}
.problems h2 {
  padding-bottom: 0em;
  font-size: min(4.4vw, 5.5rem);
  letter-spacing: 0.1em;
  border-bottom: solid 1px #333;
}
@media only screen and (max-width: 768px) {
  .problems h2 {
    padding-top: 50px;
    font-size: 6vw;
  }
}
.problems .problem-tx {
  width: calc(100% - 240px);
}
@media only screen and (max-width: 768px) {
  .problems .problem-tx {
    margin-left: 5%;
    width: 50%;
  }
}
.problems .problem-tx ul {
  margin-top: 3.5em;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .problems .problem-tx ul {
    margin-top: 0;
  }
}
.problems .problem-tx li {
  margin-top: 1em;
}
@media only screen and (max-width: 768px) {
  .problems .problem-tx li {
    margin-top: 2em;
  }
}
.problems .problem-tx li span {
  display: inline;
  padding-bottom: 0.8em;
  font-size: min(3vw, 2.6rem);
  background: url(../img/spa-trainer/problem_wave.png) left bottom repeat-x;
  background-size: 268px;
}
@media only screen and (max-width: 768px) {
  .problems .problem-tx li span {
    font-size: 3.5vw;
  }
}
.problems .problem-tx li:nth-child(1) {
  transform: translateX(25%);
}
.problems .problem-tx li:nth-child(2) {
  transform: translateX(15%);
}
.problems .problem-tx li:nth-child(3) {
  transform: translateX(30%);
}
.problems .problem-tx li:nth-child(4) {
  transform: translateX(20%);
}
@media only screen and (max-width: 768px) {
  .problems .problem-tx li:nth-child(1) {
    transform: translateX(10%);
  }
  .problems .problem-tx li:nth-child(2) {
    transform: translateX(0%);
  }
  .problems .problem-tx li:nth-child(3) {
    transform: translateX(15%);
  }
  .problems .problem-tx li:nth-child(4) {
    transform: translateX(5%);
  }
}

/*==================================================================
    .foryou
===================================================================*/
.foryou .container {
  margin: 0 auto;
  padding: 50px 0 100px;
  max-width: 1200px;
}
@media only screen and (max-width: 768px) {
  .foryou .container {
    padding: 50px 0;
  }
}
.foryou h2 {
  font-size: min(6vw, 3.5rem);
  line-height: 2;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .foryou h2 {
    margin-bottom: 30px;
  }
}
.foryou h2 em {
  display: inline-block;
  padding: 3px;
  font-size: min(12vw, 9rem);
  font-style: normal;
  line-height: 1;
  color: #fff;
  background: #5fcec8;
  background: linear-gradient(to right, #5fcec8 0%, #88cfda 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#5fcec8", endColorstr="#88cfda",GradientType=1 );
}

.foryou-item {
  position: relative;
  margin: 0px auto;
  width: 95%;
  border-radius: 20px;
}
@media only screen and (max-width: 768px) {
  .foryou-item {
    border-radius: 10px;
    padding-bottom: 20px;
  }
}

.foryou-item-tx {
  display: flex;
  flex-flow: row wrap;
  padding: 0 30px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .foryou-item-tx {
    padding: 0;
    width: 95%;
    margin: 0 auto 15px;
  }
}
.foryou-item-tx li {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  padding: 0.5em;
  font-size: min(4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #23afb7;
  border: solid 4px #23afb7;
  background-color: #fff;
  text-align: center;
}
.foryou-item-tx li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .foryou-item-tx li:last-child {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 1100px) {
  .foryou-item-tx li {
    font-size: min(3vw, 2.8rem);
  }
}
@media only screen and (max-width: 768px) {
  .foryou-item-tx li {
    border: solid 1px #23afb7;
    font-size: min(3.8vw, 2.8rem);
    width: 100%;
    margin-right: 0;
  }
}

/*==================================================================
    #features
===================================================================*/
#features {
  height: 1020px;
  background: #f3dbd8;
}
@media only screen and (max-width: 768px) {
  #features {
    height: 180vw;
  }
}
#features .container {
  position: relative;
  height: 100%;
}
#features h2 {
  padding-top: 100px;
  font-size: min(5vw, 3.2rem);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #features h2 {
    padding-top: 50px;
  }
}
#features h2 em {
  font-size: min(13vw, 9rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: #d36c6c;
}
#features h2 em span {
  font-size: 80%;
}

.features-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60%, 600px);
  transform: translate(-50%, -45%);
  z-index: 0;
}
@media only screen and (max-width: 1300px) {
  .features-bg {
    width: 46%;
  }
}
@media only screen and (max-width: 768px) {
  .features-bg {
    width: 60%;
    transform: translate(-50%, 0%);
  }
}

.feature-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.feature-nav li {
  position: absolute;
  top: 50%;
  left: 50%;
}

.feature-nav-01 {
  transform: translate(-200%, -100%);
}
@media only screen and (max-width: 1300px) {
  .feature-nav-01 {
    width: 23%;
  }
}
@media only screen and (max-width: 768px) {
  .feature-nav-01 {
    width: 40%;
    transform: translate(-120%, -130%);
  }
}

.feature-nav-02 {
  transform: translate(-70%, 70%);
}
@media only screen and (max-width: 1300px) {
  .feature-nav-02 {
    width: 39%;
  }
}
@media only screen and (max-width: 768px) {
  .feature-nav-02 {
    width: 65%;
    transform: translate(-60%, 130%);
  }
}

.feature-nav-03 {
  transform: translate(55%, -60%);
}
@media only screen and (max-width: 1300px) {
  .feature-nav-03 {
    width: 31%;
  }
}
@media only screen and (max-width: 768px) {
  .feature-nav-03 {
    width: 50%;
    transform: translate(-5%, -100%);
  }
}

.feature .container.-basic {
  padding-bottom: 100px !important;
}
@media only screen and (max-width: 768px) {
  .feature .container.-basic {
    padding-bottom: 50px !important;
  }
}
.feature p.note-right {
  margin-top: 2em;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .feature p.note-right {
    margin: 2em auto 0;
    width: 90%;
    text-align: left;
  }
}

.feature-title {
  padding-top: 100px;
}
@media only screen and (max-width: 768px) {
  .feature-title {
    padding-top: 50px;
  }
}
.feature-title h3 {
  position: relative;
  font-family: "metropolis";
  font-size: min(5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
}
.feature-title h3::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 1px;
  background: #333;
}
#feature-01 .feature-title h3 {
  color: #d46d6d;
}
#feature-02 .feature-title h3 {
  color: #a38667;
}
#feature-03 .feature-title h3 {
  color: #53a9a6;
}
.feature-title h2 {
  margin-top: 0.5em;
  font-size: min(6.8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}
.feature-title h2 em {
  font-weight: 600;
  font-style: normal;
}
#feature-01 .feature-title h2 em {
  color: #d46d6d;
}
#feature-02 .feature-title h2 em {
  color: #a38667;
}
#feature-03 .feature-title h2 em {
  color: #53a9a6;
}

.feature-content {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .feature-content {
    margin-top: 30px;
  }
}

#feature-01 {
  background: #fff url(../img/spa-trainer/feature_01_bg.jpg) no-repeat top center;
  background-size: 2400px;
}
@media only screen and (max-width: 768px) {
  #feature-01 {
    background-size: 1200px;
  }
}
#feature-01 .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  #feature-01 .inner {
    flex-direction: column-reverse;
  }
}

.f01-01 .tx {
  margin-left: 60px;
}
@media only screen and (max-width: 768px) {
  .f01-01 .tx {
    margin-left: 0;
    padding-bottom: 2em;
  }
}
.f01-01 h4 {
  font-size: min(5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.4;
}
.f01-01 h4 em {
  font-weight: 600;
  color: #d46d6d;
  font-style: normal;
}
.f01-01 p {
  margin-top: 1.5em;
}
.f01-01 p em {
  font-weight: 600;
  font-style: normal;
}

.f01-02 .inner {
  margin-top: 2em;
}
.f01-02 h4 {
  font-size: min(5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .f01-02 h4 {
    line-height: 1.6;
  }
}
.f01-02 h4 .more {
  padding: 0px 10px 3px 6px;
  font-weight: 600;
  line-height: 1.8;
  color: #d46d6d;
  border: solid 3px #d46d6d;
  border-radius: 10px;
}
.f01-02 h4 em {
  font-weight: 600;
  color: #d46d6d;
  font-style: normal;
}
.f01-02 h5 {
  margin-right: 1em;
  font-size: min(4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .f01-02 h5 {
    margin-right: 0;
    text-align: center;
  }
}
.f01-02 h5 em {
  font-weight: 600;
  color: #d46d6d;
  font-style: normal;
}
.f01-02 p {
  margin-top: 1.5em;
}
@media only screen and (max-width: 768px) {
  .f01-02 .fig {
    margin: 0 auto;
    width: 70%;
  }
}

@media only screen and (max-width: 768px) {
  .f01-03 {
    margin-top: 50px;
  }
}
.f01-03 .inner {
  display: block !important;
  margin-top: 2em;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .f01-03 .inner {
    margin-top: 1em;
  }
}
.f01-03 h4 {
  font-size: min(5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .f01-03 h4 {
    line-height: 1.6;
  }
}
.f01-03 h4 span {
  padding-bottom: 0.5em;
  display: inline-block;
  background: url(../img/spa-trainer/heading_line.png) no-repeat bottom center;
  background-size: 1000px;
}
@media only screen and (max-width: 768px) {
  .f01-03 h4 span {
    padding-bottom: 1em;
  }
}
.f01-03 h4 em {
  font-weight: 600;
  color: #d46d6d;
  font-style: normal;
}
.f01-03 .chart {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.f01-03 .chart li {
  margin: 0 1%;
  width: 27%;
}
@media only screen and (max-width: 768px) {
  .f01-03 .chart li {
    width: 43%;
  }
}
.f01-03 .chart li:nth-child(1) {
  width: 33.333%;
}
@media only screen and (max-width: 768px) {
  .f01-03 .chart li:nth-child(1) {
    width: 53%;
  }
}
.f01-03 .chart li:nth-child(2) {
  transform: translateY(40%);
}
@media only screen and (max-width: 768px) {
  .f01-03 .chart li:nth-child(2) {
    transform: translateY(30%);
  }
}
.f01-03 p.note {
  margin: 5em 0 1em;
}
@media only screen and (max-width: 768px) {
  .f01-03 p.note {
    margin: 1em 0 1em;
    width: 100%;
  }
}

.trainers-comment {
  margin: 150px auto 0;
  width: 100%;
  background: #f9edeb;
}
@media only screen and (max-width: 768px) {
  .trainers-comment {
    margin: 80px auto 0;
  }
}
.trainers-comment .inner {
  padding: 80px;
}
@media only screen and (max-width: 768px) {
  .trainers-comment .inner {
    flex-direction: column !important;
    padding: 50px 5%;
  }
}
.trainers-comment h4 {
  padding-bottom: 0;
  font-family: "metropolis";
  font-size: min(6vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.1em;
  color: #d46d6d;
  border-bottom: solid 5px #d46d6d;
}
.trainers-comment .content-col {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .trainers-comment .content-col {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.trainers-comment .ph {
  width: 180px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .trainers-comment .ph {
    margin: 0 auto;
    width: 55%;
  }
}
.trainers-comment .ph p {
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
}
.trainers-comment .ph p span {
  font-size: 1.3rem;
  white-space: nowrap;
}
.trainers-comment .tx {
  margin-left: 3em;
  font-size: min(3.6vw, 1.8rem);
}
@media only screen and (max-width: 768px) {
  .trainers-comment .tx {
    margin-top: 1em;
    margin-left: 0;
  }
}
.trainers-comment .tx em {
  color: #d46d6d;
  font-weight: 600;
  font-style: normal;
}
.trainers-comment p.note {
  margin-top: 2em;
}

#feature-02 {
  background: #f0f0f0 url(../img/spa-trainer/feature_02_bg.jpg) no-repeat top center;
  background-size: 2400px;
}
@media only screen and (max-width: 768px) {
  #feature-02 {
    background-size: 1200px;
  }
}

.f02-01 .feature-content-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.f02-01 .mode {
  padding: 20px;
  width: 49%;
  background: #f0e6db;
  border-radius: 120px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode {
    margin-top: 1em;
    width: 100%;
    border-radius: 60px;
  }
}
.f02-01 .mode h4 {
  margin-top: 30px;
  font-family: "metropolis";
  font-size: min(12vw, 7rem);
  font-weight: 300;
  color: #d2bfaa;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode h4 {
    margin-top: 10px;
  }
}
.f02-01 .mode h5 {
  font-size: min(6vw, 3rem);
  color: #8c7a6a;
  text-align: center;
}
.f02-01 .mode h6 {
  font-size: min(4vw, 2rem);
  text-align: center;
}
.f02-01 .mode p {
  margin: 1em 0 2em;
  font-size: min(4vw, 2.1rem);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode p {
    text-align: left;
    line-height: 1.6;
  }
}
.f02-01 .mode p em {
  font-weight: 600;
  font-style: normal;
  color: #8c7a6a;
}
.f02-01 .mode p.note-right {
  width: 100%;
  margin: 0 0 1em;
  text-align: right;
}
.f02-01 .mode-ph {
  margin-top: 50px;
}
.f02-01 .mode-fig {
  padding-top: 50px;
  background: #fff;
  border-radius: 0 0 100px 100px;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode-fig {
    padding-top: 20px;
    border-radius: 0 0 50px 50px;
  }
}
.f02-01 .mode-fig .mov {
  margin: 0 auto;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode-fig .mov {
    width: 90%;
  }
}
.f02-01 .mode-fig p.cap {
  margin: 0;
  padding-bottom: 3em;
  color: #8c7a6a;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .f02-01 .mode-fig p.cap {
    padding-bottom: 1.5em;
  }
}
.f02-01 .mode-01 {
  background: #f0e6db url(../img/spa-trainer/f02_up_bg.png) no-repeat 0 0;
  background-size: 100%;
}
.f02-01 .mode-02 {
  background: #f0e6db url(../img/spa-trainer/f02_stretch_bg.png) no-repeat 0 0;
  background-size: 100%;
}

#feature-03 {
  background: #edf6f6 url(../img/spa-trainer/feature_03_bg.jpg) no-repeat bottom center;
  background-size: 2400px;
}
@media only screen and (max-width: 768px) {
  #feature-03 {
    background-size: 1200px;
  }
}

.f03-01 .inner,
.f03-02 .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.f03-01 .note,
.f03-02 .note {
  margin-top: 10px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .f03-01 .note,
  .f03-02 .note {
    text-align: left;
  }
}
.f03-01 .ph,
.f03-02 .ph {
  display: flex;
  justify-content: space-between;
  width: 55%;
}
@media only screen and (max-width: 768px) {
  .f03-01 .ph,
  .f03-02 .ph {
    margin-top: 20px;
    width: 100%;
  }
}
.f03-01 .ph img,
.f03-02 .ph img {
  width: min(48%, 320px);
}
.f03-01 .ph img:nth-child(1),
.f03-02 .ph img:nth-child(1) {
  transform: translateY(-10%);
}
.f03-01 .ph img:nth-child(2),
.f03-02 .ph img:nth-child(2) {
  transform: translateY(10%);
}
@media only screen and (max-width: 768px) {
  .f03-01 .ph img,
  .f03-02 .ph img {
    transform: translateY(0) !important;
  }
}
.f03-01 .tx,
.f03-02 .tx {
  margin-left: 3%;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .f03-01 .tx,
  .f03-02 .tx {
    margin-left: 0;
    width: 100%;
  }
}
.f03-01 .tx .box,
.f03-02 .tx .box {
  display: inline-block;
  padding: 15px 20px;
  font-size: min(4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #53a9a6;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .f03-01 .tx .box,
  .f03-02 .tx .box {
    margin-right: 10px;
    float: left;
    padding: 5px 10px 8px;
    border-radius: 5px;
  }
}
.f03-01 .tx h5,
.f03-02 .tx h5 {
  font-size: min(4vw, 2.4rem);
  color: #53a9a6;
}
.f03-01 .tx h4,
.f03-02 .tx h4 {
  margin-top: 30px;
  font-size: min(4.5vw, 3.3rem);
  font-weight: 300;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .f03-01 .tx h4,
  .f03-02 .tx h4 {
    margin-top: 10px;
  }
}
.f03-01 .tx ul,
.f03-02 .tx ul {
  margin-top: 1em;
}
.f03-01 .tx li,
.f03-02 .tx li {
  font-size: min(3.8vw, 2rem);
}
.f03-01 .tx li em,
.f03-02 .tx li em {
  font-weight: 600;
  font-style: normal;
  color: #53a9a6;
}

.f03-02 .tx {
  margin-left: 0;
  margin-right: 3%;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .f03-02 .tx {
    margin-right: 0;
    text-align: left;
  }
}
.f03-02 .tx h5, .f03-02 .tx h4, .f03-02 .tx li {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .f03-02 .tx h5, .f03-02 .tx h4, .f03-02 .tx li {
    text-align: left;
  }
}
.f03-02 .ph img:nth-child(1) {
  transform: translateY(10%);
}
.f03-02 .ph img:nth-child(2) {
  transform: translateY(-10%);
}

.f03-03 {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .f03-03 {
    margin-top: 50px;
  }
}
.f03-03 h4 {
  font-size: min(5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.f03-03 h4 em {
  font-weight: 600;
  font-style: normal;
  color: #53a9a6;
}
.f03-03 .fig {
  margin: 50px auto 0;
  width: min(90%, 1000px);
}
@media only screen and (max-width: 768px) {
  .f03-03 .fig {
    margin: 10px auto 0;
  }
}

#features .note {
  text-align: right;
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media only screen and (max-width: 768px) {
  #features .note {
    text-align: left;
    bottom: 10px;
    left: 30px;
  }
}

/*==================================================================
    #howto
===================================================================*/
#howto {
  background: #fff;
}
#howto .section_ttl {
  font-family: "metropolis";
  font-size: min(7vw, 4rem) !important;
  line-height: 1.5;
  color: #bdaa9a !important;
  letter-spacing: 0.1em !important;
}
#howto .section_ttl span {
  font-size: 2rem !important;
  color: #bdaa9a !important;
}
#howto .section_ttl::after {
  display: none;
}

.howto-steps {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .howto-steps {
    display: none;
  }
}
.howto-steps li {
  width: min(30vw, 340px);
  height: min(30vw, 340px);
  background: #bdaa9a;
  text-align: center;
  color: #fff;
  border-radius: 50%;
}
.howto-steps li .step-num {
  margin-top: 1.5em;
  position: relative;
  font-family: "metropolis";
  font-size: min(2vw, 2.2rem);
}
.howto-steps li .step-num em {
  position: relative;
  top: 0.15em;
  margin-left: 0.2em;
  font-size: 250%;
  font-style: normal;
}
.howto-steps li .step-num::after {
  content: "";
  display: block;
  margin: 0px auto;
  width: 80px;
  height: 1px;
  background: #fff;
}
.howto-steps li p {
  margin-top: 1em;
  font-size: min(2vw, 2.4rem);
  line-height: 1.5;
  text-align: center;
}

.usable-parts {
  background: #f8f6f5;
}
.usable-parts .container.-basic {
  padding: 100px 0 !important;
  width: 95%;
}
@media only screen and (max-width: 768px) {
  .usable-parts .container.-basic {
    padding: 50px 0 !important;
  }
}
.usable-parts .section_ttl {
  font-size: min(7vw, 4rem) !important;
  line-height: 1.5;
  color: #bdaa9a !important;
  letter-spacing: 0.1em !important;
}
.usable-parts .fig {
  margin: 0 auto 2em;
  max-width: 1000px;
}
.usable-parts p.note-right {
  margin-top: 1em;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .usable-parts p.note-right {
    margin: 0 auto;
    width: 90%;
    text-align: left;
  }
}

#voice {
  display: none;
}

/*==================================================================
    #safety
===================================================================*/
#safety {
  margin-top: 50px;
}
#safety .safety__inner {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #98a9ac;
}
@media screen and (max-width: 1040px) {
  #safety .safety__inner {
    width: 92%;
  }
}
#safety .safety__inner--ttl {
  background-color: #98a9ac;
  font-size: 2rem;
  text-align: center;
  font-family: "Noto Sans JP 700";
  padding: 20px 10px;
  color: #fff;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}
#safety .safety__inner--ttl::after, #safety .safety__inner--ttl::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #fff;
  right: 25px;
  top: 37px;
  transition: ease 0.2s;
}
#safety .safety__inner--ttl::before {
  transform: rotate(90deg);
}
#safety .safety__inner--ttl.active::before {
  transform: rotate(0deg);
}
#safety .safety__inner--content {
  display: none;
}
#safety .safety__inner--content--box {
  padding: 50px;
}
@media screen and (max-width: 767px) {
  #safety .safety__inner--content--box {
    padding: 30px;
  }
}
@media screen and (max-width: 480px) {
  #safety .safety__inner--content--box {
    padding: 20px;
  }
}
#safety .safety__inner--content--box p {
  font-size: 1.6rem;
  line-height: 3rem;
  font-family: "Noto Sans JP 400";
}
@media screen and (max-width: 767px) {
  #safety .safety__inner--content--box p {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}
#safety .safety__inner--content--box p span {
  font-weight: 600;
}

/*==================================================================
    #support
===================================================================*/
#support {
  margin-top: 8em;
  background-image: url("../img/img-support.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
@media screen and (max-width: 1120px) {
  #support {
    padding: 0;
    background-image: url("../img/img-support-sp.jpg");
  }
}
@media screen and (max-width: 767px) {
  #support {
    margin-top: 2em;
    background-image: initial;
    background-color: #fff;
  }
}
#support .support__inner {
  display: flex;
  flex-wrap: wrap;
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1120px) {
  #support .support__inner {
    width: 92%;
  }
}
@media screen and (max-width: 767px) {
  #support .support__inner.u-pt100 {
    padding-top: 0;
  }
}
#support .support__inner__text {
  width: 550px;
}
@media screen and (max-width: 767px) {
  #support .support__inner__text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #support .support__inner__text .l-ttl-h2 {
    text-align: center;
  }
}
#support .support__inner__text .l-ttl-h2--main {
  line-height: 1.2em;
}
#support .support__inner__text .l-ttl-h2--ruby {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Noto Sans JP 400";
}
@media screen and (max-width: 767px) {
  #support .support__inner__text .l-ttl-h2--ruby {
    text-align: center;
  }
}
#support .support__inner__text--p {
  font-size: 1.6rem;
  line-height: 3rem;
  font-family: "Noto Sans JP 400";
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 767px) {
  #support .support__inner__text--p {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}
#support .support__inner__text a {
  display: inline-block;
  background-color: #e08784;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  padding: 13px 20px;
  font-family: "Noto Sans JP 500";
}
#support .off-img {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #support .off-img {
    display: block !important;
  }
}

/*==================================================================
    #guide
===================================================================*/
/* guide */
#guide.container {
    padding: 60px 15px 50px;
    background: #FFF;
    color: #333;
}
#guide .guide-wrap{
    max-width: 820px;
    margin: 0 auto;
}
#guide h2{
    text-align: center;
    line-height: 0.8;
    margin-bottom: 30px;
}

#guide h2 .l-ttl-h2--ruby{
    color: #505050;
    font-weight: 400;
    font-size: 1.8rem;
}

#guide h3{
    font-size: 14px;
    border: 1px solid #333;
    border-radius: 5px;
    margin-top: 15px;
    padding: 5px;
    min-height: 50px;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
    position: relative;
}
#guide .link_underline{
    text-decoration: underline;
    border-bottom: none;
}
#guide h3.one-line{
    display: flex;
    align-items: center;
    justify-content: center;
}
#guide h3.link::after{
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-48%);
    width: 20px;
    height: 20px;
    background: url(../img/spa-trainer/external_link-icon.png);
    background-size: cover;
}
#guide h3 a{
    color: #333;
}
#guide p {
    padding: 5px 0;
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: "Noto Sans JP 400";
}
    
@media screen and (min-width:769px) {
    #guide.container {
        padding: 60px 30px;
    }
    #guide h3{
        min-height: 60px;
        margin-top: 20px;
        font-size: 16px;
    }
    #guide h3.link::after{
        width: 25px;
        height: 25px;
        right: 15px;
    }
    #guide p{
      font-size: 1.6rem;
    }
}/* min-width:660px */


/* footer */
  .footer {
    background: #fff;
    font-weight: 500;
    padding-bottom: 18rem;
    font-family: "Noto Sans JP 400";
  }
  .footer .wrapper{
      width: 95%;
      margin: 0 auto;
      border-top: 2px solid #ccc;
      border-bottom: 2px solid #ccc;
  }
   .footer .footer_menu{
    width: 100%;
    max-width: 820px;
    padding:10px;
    margin-bottom: 10px;
    margin: 0 auto;
    text-align: center;
  }
  
   .footer .footer_menu a {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    padding: 3px 0;
    vertical-align: middle;
    color: #333 !important;
  }
  
   .footer .footer_menu a:after {
    background: #333;
    content: "";
    display: inline-block;
    height: 12px;
    margin: 0 5px;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    width: 1px
  }
  
   .footer .footer_menu a:last-child:after {
    display: none
  }
  
  .footer .copyright {
    font-size: 80%
  }
  .footer .copyright .flex{
    width: 95%;
    max-width: 820px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 30px auto;
  }
  .footer .copyright .flex img{
    max-width: 138px;
  }
  
  @media screen and (max-width:767px) {
     .sp_none {
      display: none
    }
  
     .grid_container {
      width: 100%
    }
    .footer .copyright .flex{
        display: block !important;
        text-align: center;
    }
    .footer .copyright .flex .col4-sp{
        width: 138px;
    }
    .footer .copyright .flex .text-right{
        margin-top: 1rem;
    }
  }
  
  @media screen and (min-width:768px) {
     .pc_none {
      display: none
    }

    .footer{
        padding-bottom: 10rem;
    }
  
     .footer .footer_menu {
      padding: 15px 15px
    }
  
     .footer .footer_menu a:after {
      height: 15px;
      margin: 0 15px
    }
  
     .footer .footer_menu a:nth-child(3):after {
      display: inline-block
    }
  
     .footer .copyright {
      padding: 0
    }
  }

.l-ttl-h2-mainimg {
  display: block;
}
.l-ttl-h2-mainimg img {
  height: 54px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .l-ttl-h2-mainimg img {
    height: 7vw;
  }
}
.l-ttl-h2--main {
  font-family: "RedHatDisplay-Black";
  font-size: 5rem;
  letter-spacing: 1.5rem;
  color: #e08784;
}
@media screen and (max-width: 480px) {
  .l-ttl-h2--main {
    font-size: 4rem;
    letter-spacing: 0.5rem;
  }
}
.l-ttl-h2--ruby {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Noto Sans JP 400";
}
@media screen and (max-width: 767px) {
  .l-ttl-h2--ruby {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .l-ttl-h2--ruby {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=spa-trainer.css.map */