/*************************************************

fs-mv

*************************************************/
.fs-mv {
  position: relative;
  margin: 0 auto 20px;
  padding: 90px 0 0;
}
.fs-mv .in-label {
  position: absolute;
  top: 14px;
  left: 0;
  display: block;
  width: 57.6923076923%;
  line-height: 0;
  z-index: 2;
}
.fs-mv .in-lens {
  position: absolute;
  top: 25px;
  right: 0;
  width: min(150px, 38.4615384615%);
}
.fs-mv .in-title {
  position: relative;
  width: 80.7692307692%;
  margin: 0 auto 15px;
  line-height: 0;
  text-align: center;
  z-index: 2;
}

/*************************************************

fs-colorbox

*************************************************/
.fs-colorbox {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #e9f4ed;
  border-radius: 10px;
}

/* fs-colorbox__title
---------------------------------------*/
.fs-colorbox__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  background-color: #64cc9d;
}
@media screen and (max-width: 375px) {
  .fs-colorbox__title {
    font-size: 20px;
  }
}

/* fs-colorbox__body
---------------------------------------*/
.fs-colorbox__body {
  padding: 0 25px 3px;
}

/* fs-colorbox-swiper
---------------------------------------*/
.fs-colorbox-swiper {
  overflow: hidden;
  position: relative;
  padding: 20px 0 30px;
}

.fs-colorbox-swiper__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  margin: 0 10px;
}

.fs-colorbox-swiper__label {
  overflow: hidden;
  position: relative;
  display: block;
  width: calc(33.3333333333% - 6.6666666667px);
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.fs-colorbox-swiper__check {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.fs-colorbox-swiper__check:checked + .fs-colorbox-swiper__item {
  background-color: #f7bfbf;
}
.fs-colorbox-swiper__check:checked + .fs-colorbox-swiper__item::before {
  background: #e4e9ea url(../images/nutrition-simulator/icon_check.svg) no-repeat center center/70% auto;
}

.fs-colorbox-swiper__item {
  position: relative;
  display: block;
  line-height: 0;
}
.fs-colorbox-swiper__item::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 19.0476190476%;
  margin: 4.7619047619%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #e4e9ea;
  z-index: 2;
}

.fs-colorbox-swiper__controls {
  position: relative;
  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;
  min-height: 34px;
  margin: 32px auto 0;
  max-width: 200px;
}

.fs-colorbox-swiper__button {
  position: absolute;
  top: 0;
  line-height: 0;
  cursor: pointer;
}
.fs-colorbox-swiper__button.is-prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.fs-colorbox-swiper__button.is-next {
  right: 0;
}
.fs-colorbox-swiper__button.swiper-button-disabled {
  opacity: 0.7;
}

.fs-colorbox-swiper__pagination {
  text-align: center;
}

/* fs-colorbox__row
---------------------------------------*/
.fs-colorbox__row {
  padding: 20px 10px 15px;
  border-bottom: #84D8AE dashed 1px;
}
.fs-colorbox__row:last-child {
  border-bottom: none;
}

.fs-colorbox__row-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 12px;
}
@media screen and (min-width: 376px) {
  .fs-colorbox__row-title {
    padding-left: 30px;
  }
}
.fs-colorbox__row-title .in-dots {
  position: relative;
  padding-left: 22px;
}
.fs-colorbox__row-title .in-dot__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: #66d3a4;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.fs-colorbox__row-body {
  font-size: 14px;
}
@media screen and (max-width: 375px) {
  .fs-colorbox__row-body {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .fs-colorbox__row-body {
    padding: 0 30px;
  }
}
.fs-colorbox__row-body.is-flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fs-colorbox__row-body .is-flex01__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.fs-colorbox__row-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 70px;
  height: 35px;
  border: #cccccc solid 1px;
  background-color: #fff;
}
@media screen and (max-width: 375px) {
  .fs-colorbox__row-select {
    width: 55px;
    height: 30px;
  }
}
.fs-colorbox__row-select select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: none;
  z-index: 2;
}
@media screen and (max-width: 375px) {
  .fs-colorbox__row-select select {
    padding-left: 12px;
  }
}
.fs-colorbox__row-select .in-arw {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 8px;
  line-height: 0;
  margin-top: -2px;
}
@media screen and (max-width: 375px) {
  .fs-colorbox__row-select .in-arw {
    width: 10px;
  }
}
.fs-colorbox__row-select .in-arw img {
  width: 100%;
}

/* fs-colorbox__radios
---------------------------------------*/
.fs-colorbox__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 0;
  max-width: 215px;
  margin: 0 auto;
  padding: 20px 0;
}
.fs-colorbox__radios .in-label {
  position: relative;
  display: block;
  cursor: pointer;
}
.fs-colorbox__radios .in-radio {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.fs-colorbox__radios .in-radio:checked + .in-text::after {
  opacity: 1;
}
.fs-colorbox__radios .in-text {
  padding-left: 28px;
  display: block;
}
.fs-colorbox__radios .in-text::before, .fs-colorbox__radios .in-text::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.fs-colorbox__radios .in-text::before {
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border: #cccccc solid 1px;
  z-index: 1;
}
.fs-colorbox__radios .in-text::after {
  left: 6px;
  width: 10px;
  height: 10px;
  background-color: #333333;
  opacity: 0;
  z-index: 2;
}

.fs-nextarw {
  text-align: center;
  line-height: 0;
}

.fs-colortitle {
  margin-bottom: 30px;
  color: #11a880;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .fs-colortitle {
    font-size: 20px;
  }
}

/*************************************************

fs-now-selects

*************************************************/
.fs-now-selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 70px;
}

.fs-now-selects__item {
  position: relative;
  display: block;
  padding: 10px 10px 10px 35px;
  font-size: 14px;
  line-height: 1.4;
  border: #64cc9d solid 1px;
}
.fs-now-selects__item .in-close {
  position: absolute;
  top: 50%;
  left: 13px;
  display: block;
  width: 12px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/nutrition-simulator/icon_close.svg) no-repeat center center/100% auto;
}

/*************************************************

fs-result-mv

*************************************************/
.fs-result-mv {
  position: relative;
  padding: 10px 10px 0;
  background-color: #64cc9d;
}
.fs-result-mv::before {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: block;
  content: "";
  border-top: #64cc9d solid 18px;
  border-left: transparent solid 18px;
  border-right: transparent solid 18px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fs-result-mv__title {
  line-height: 0;
  text-align: center;
}

/*************************************************

fs-result-midtitle

*************************************************/
.fs-result-midtitle {
  margin-bottom: 15px;
  color: #11a880;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.fs-result-midtitle span {
  color: #333;
}

/*************************************************

fs-result-area

*************************************************/
.fs-result-area {
  padding: 45px 0 30px;
  background-color: #e9f4ed;
}

.fs-result-area__block {
  margin-bottom: 50px;
}

/*************************************************

fs-result-colorbox

*************************************************/
.fs-result-colorbox {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 25px;
  background-color: #e8f7f9;
  border-radius: 10px;
  border: #64cc9d solid 2px;
  background-color: #fff;
}
@media screen and (max-width: 375px) {
  .fs-result-colorbox {
    padding: 0 15px;
  }
}
.fs-result-colorbox.is-eiyo {
  padding: 0 0 25px;
}

/* fs-result-colorbox__row
---------------------------------------*/
.fs-result-colorbox__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 66px;
  border-bottom: #84D8AE dashed 1px;
}
.fs-result-colorbox__row:last-child {
  border-bottom: none;
}

.fs-result-colorbox__row-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .fs-result-colorbox__row-title {
    padding-left: 5px;
  }
}
@media screen and (max-width: 375px) {
  .fs-result-colorbox__row-title {
    padding-left: 5px;
  }
}
.fs-result-colorbox__row-title .in-dots {
  position: relative;
  padding-left: 22px;
}
.fs-result-colorbox__row-title .in-dot__icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  color: #66d3a4;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.fs-result-colorbox__row-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding-right: 34px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .fs-result-colorbox__row-body {
    padding-right: 5px;
  }
}
@media screen and (max-width: 375px) {
  .fs-result-colorbox__row-body {
    gap: 15px;
    padding-right: 5px;
  }
}
.fs-result-colorbox__row-body .in-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
}
.fs-result-colorbox__row-body .in-num {
  color: #11a880;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

/* fs-result-colorbox__advice
---------------------------------------*/
.fs-result-colorbox__advice {
  margin: -40px 23px 0;
  padding: 25px 20px 20px;
  background-color: #f9f7d9;
}

.fs-result-colorbox__advice-title {
  margin-bottom: 17px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .fs-result-colorbox__advice-title {
    font-size: 18px;
  }
}

.fs-result-colorbox__advice-body > * {
  margin-bottom: 1em;
}
.fs-result-colorbox__advice-body > *:last-child {
  margin-bottom: 0;
}
.fs-result-colorbox__advice-body .in-red {
  color: #db0707;
}
@media screen and (max-width: 375px) {
  .fs-result-colorbox__advice-body {
    font-size: 14px;
  }
}

/*************************************************

fs-result-info

*************************************************/
.fs-result-info {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: min(530px, 100% - 46px);
  margin: 0 auto;
  padding: 25px 20px;
  border: #64cc9d solid 1px;
}

.fs-result-info__title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 132px;
  padding: 3px 0;
  color: #fff;
  text-align: center;
  background-color: #64cc9d;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fs-result-info__title::before, .fs-result-info__title::after {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #e9f4ed;
}
.fs-result-info__title::before {
  left: 100%;
}
.fs-result-info__title::after {
  right: 100%;
}

.fs-result-info__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.fs-result-info__body .in-row {
  position: relative;
  padding-left: 40px;
}
.fs-result-info__body .in-icon {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 0;
}

/*************************************************

fs-result-blow

*************************************************/
.fs-result-blow {
  margin: 0 15px 10px;
  text-align: center;
  line-height: 0;
}

/*************************************************

fs-result-btn01

*************************************************/
.fs-result-btn01 {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  width: min(240px, 100% - 40px);
  min-height: 44px;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background-color: #64cc9d;
  border-radius: 100px;
  cursor: pointer;
}
.fs-result-btn01::before {
  position: absolute;
  top: 0;
  right: 24px;
  display: block;
  content: "";
  width: 8px;
  height: 100%;
  background: url(../images/common/arw_02.svg) no-repeat center center/100% auto;
}

/*************************************************

fs-result-btn02

*************************************************/
.fs-result-btn02 {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  gap: 15px;
  width: min(280px, 100% - 40px);
  min-height: 44px;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background-color: #64cc9d;
  border-radius: 100px;
  cursor: pointer;
}
.fs-result-btn02 .in-icon {
  line-height: 0;
}

/*************************************************

fs-result-sns

*************************************************/
.fs-result-sns {
  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;
  gap: 30px;
  line-height: 0;
}

/*************************************************

print

*************************************************/
@media print {
  .fs-result-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: transparent;
  }
  .fs-result-area__block {
    width: 50%;
    margin-bottom: 30px;
    font-size: 12px;
  }
  .fs-result-info__title {
    font-size: 16px;
  }
  .fs-result-midtitle {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .fs-result-colorbox {
    padding: 0 15px;
  }
  .fs-result-colorbox.is-eiyo {
    padding: 0 0 15px;
  }
  .fs-result-colorbox__row {
    min-height: 45px;
  }
  .fs-result-colorbox__row-body {
    gap: 15px;
    font-size: 13px;
  }
  .fs-result-colorbox__row-body .in-num {
    font-size: 16px;
  }
  .fs-result-colorbox__advice {
    padding: 0 10px 10px;
  }
  .fs-result-colorbox__advice-title {
    font-size: 16px;
  }
  .fs-result-info {
    margin-top: 40px;
    font-size: 12px;
  }
  .fs-result-info__body .in-row {
    padding-left: 35px;
  }
  .fs-result-info__body .in-icon {
    width: 28px;
  }
  .fs-result-colorbox.is-eiyo canvas {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
  }
}/*# sourceMappingURL=nutrition-simulator.css.map */