@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "BIZ UDPMincho", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #000;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4.8vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.6vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #000;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

header,
main,
section,
footer {
  width: 100%;
}

p {
  line-height: 1.75;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.inner {
  position: relative;
  width: 86.6666666667vw;
  max-width: 1300px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}

sup {
  font-size: 30%;
  top: -2em;
}

/*  hedings
-------------------------------------------------*/
h2 {
  color: #1f6129;
  font-size: 1.6666666667rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.525;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.6111111111rem;
    line-height: 1.5;
    white-space: nowrap;
  }
}

h3 {
  background: #3ba38a;
  color: #fff;
  text-align: center;
}

/*  buttons
-------------------------------------------------*/
.btn {
  display: block;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.btn::after {
  position: absolute;
  content: "";
  width: 0.4166666667rem;
  height: 0.4166666667rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  opacity: 1;
}

/*  scroll
-------------------------------------------------*/
.scroll_item,
.scroll_list_item,
.scroll_fade_item {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
.scroll_item.scrollActive,
.scroll_list_item.scrollActive,
.scroll_fade_item.scrollActive {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
          transform: translate(0) scale(1);
}

.fadeTop {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.fadeTop.scrollActive {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 1.6666666667rem;
  padding-right: 2.0833333333rem;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  header {
    padding-top: 1.3888888889rem;
    padding-right: 1.3888888889rem;
  }
}
header a {
  display: block;
  width: 6.25rem;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  header a {
    width: 4.1666666667rem;
  }
}

/*  MV
-------------------------------------------------*/
#mv {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #mv .mv_bg {
    position: relative;
  }
  #mv .mv_bg::before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url(../img/mv_img.png) no-repeat;
    background-size: 100%;
    z-index: 1;
  }
}
#mv .mv_x {
  width: 13.3333333333rem;
  position: absolute;
  top: 1.6666666667rem;
  right: 9.3333333333rem;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #mv .mv_x {
    width: 8.8888888889rem;
    top: 0.4166666667rem;
    left: 1.1666666667rem;
  }
}
#mv h1 {
  position: absolute;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  font-size: 3.9583333333rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #mv h1 {
    top: 5.5555555556rem;
    font-size: 2.375rem;
  }
}
#mv h1 small {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  #mv h1 small {
    font-size: 1.5rem;
  }
}
#mv h1 span {
  color: #1f6129;
}
#mv h1 strong {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  color: #ef990f;
  font-size: 5.8333333333rem;
  text-shadow: 4px 4px 0 #000;
}
@media only screen and (max-width: 767px) {
  #mv h1 strong {
    font-size: 3.5rem;
  }
}
@media print, screen and (min-width: 768px) {
  #mv .mv_txt {
    width: 100%;
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 0;
    bottom: 3.3333333333rem;
  }
}
#mv .mv_txt .inner p {
  line-height: 1.8333333333;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #mv .mv_txt .inner p {
    line-height: 1.75;
  }
}

/*  Well-being
-------------------------------------------------*/
#well-being {
  padding-top: 4.1666666667rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #well-being {
    padding-top: 9.7222222222rem;
    padding-bottom: 6.9444444444rem;
  }
}
#well-being::before, #well-being::after {
  position: absolute;
  content: "";
  background: url(../img/tree.png) no-repeat;
  background-size: contain;
  width: 26.9166666667rem;
  height: 11.75rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #well-being::before, #well-being::after {
    width: 17.9444444444rem;
    height: 7.8333333333rem;
  }
}
#well-being::before {
  top: 0;
  right: -7.25rem;
}
@media only screen and (max-width: 767px) {
  #well-being::before {
    top: 2.7777777778rem;
    right: -4.1111111111rem;
  }
}
#well-being::after {
  left: -8.3333333333rem;
  bottom: -1.25rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media only screen and (max-width: 767px) {
  #well-being::after {
    left: -3.25rem;
    bottom: 0;
  }
}
#well-being .inner {
  position: relative;
}
#well-being .inner::before {
  position: absolute;
  content: "";
  background: url(../img/paramylon-01.svg) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  #well-being .inner::before {
    width: 9.0833333333rem;
    height: 9.4583333333rem;
    top: -2.5rem;
    left: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  #well-being .inner::before {
    width: 6.0555555556rem;
    height: 6.3055555556rem;
    right: 0;
    bottom: -6.9444444444rem;
  }
}
@media print, screen and (min-width: 768px) {
  #well-being .inner p {
    margin-top: 2.0833333333rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #well-being .inner p {
    margin-top: 1.3888888889rem;
  }
}

/*  ユーグレナって？パラミロンって？
-------------------------------------------------*/
#definition {
  padding-top: 6.25rem;
}
@media only screen and (max-width: 767px) {
  #definition {
    padding-top: 3.3333333333rem;
  }
}
#definition .inner {
  position: relative;
}
#definition .inner::before {
  position: absolute;
  content: "";
  background: url(../img/paramylon-02.svg) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  #definition .inner::before {
    width: 9.0416666667rem;
    height: 6.7083333333rem;
    top: -2rem;
    right: 0.8333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  #definition .inner::before {
    width: 6.0277777778rem;
    height: 4.4722222222rem;
    left: -0.5555555556rem;
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #definition .inner h2 {
    text-align: left;
    padding-left: 5.8333333333rem;
  }
}
@media print, screen and (min-width: 768px) {
  #definition .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#definition .inner ul li {
  width: 47.6923076923%;
  border: solid 1px #3ba38a;
  border-radius: 1.0416666667rem;
  padding: 1.4583333333rem;
}
@media only screen and (max-width: 767px) {
  #definition .inner ul li {
    width: 100%;
    border-radius: 0.8333333333rem;
    padding: 1.3888888889rem;
  }
  #definition .inner ul li:not(:last-child) {
    margin-bottom: 1.3888888889rem;
  }
}
#definition .inner ul li h3 {
  height: 2.0833333333rem;
  line-height: 2.0833333333rem;
  font-size: 1.0833333333rem;
  font-weight: 700;
  border-radius: 1.0416666667rem;
  margin-bottom: 1.0416666667rem;
}
@media only screen and (max-width: 767px) {
  #definition .inner ul li h3 {
    height: 2.1111111111rem;
    line-height: 2.1111111111rem;
    font-size: 1.0833333333rem;
    border-radius: 1.0555555556rem;
    margin-bottom: 1.3888888889rem;
  }
}
#definition .inner ul li p {
  font-size: 0.8333333333rem;
  line-height: 1.75;
}

/*  緑じゃない金色のユーグレナ®のすごいパワー
-------------------------------------------------*/
#power {
  padding-top: 5.8333333333rem;
  padding-bottom: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #power {
    padding: 2.7777777778rem 0;
  }
}
#power h2 {
  width: 88.2666666667vw;
  max-width: 1324px;
  margin: 0 auto 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #power h2 {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
    margin: 0 auto -0.8333333333rem;
    position: relative;
    z-index: 2;
  }
}
#power figure {
  margin-bottom: 2.7083333333rem;
}
@media only screen and (max-width: 767px) {
  #power figure {
    margin-bottom: 1.3888888889rem;
  }
}
@media print, screen and (min-width: 768px) {
  #power .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
#power .inner ul li {
  width: 23.0769230769%;
}
@media only screen and (max-width: 767px) {
  #power .inner ul li {
    width: 100%;
  }
  #power .inner ul li:not(:last-child) {
    margin-bottom: 2.4444444444rem;
  }
}
#power .inner ul li dl {
  height: 100%;
  position: relative;
}
#power .inner ul li dl dt {
  width: 100%;
  height: 2.0833333333rem;
  line-height: 2.0833333333rem;
  border-radius: 1.0416666667rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: -1.0416666667rem;
}
@media only screen and (max-width: 767px) {
  #power .inner ul li dl dt {
    width: 64.6153846154%;
    height: 2.1111111111rem;
    line-height: 2.1111111111rem;
    border-radius: 1.0555555556rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -1.0555555556rem;
    font-size: 1.25rem;
  }
}
#power .inner ul li dl dd {
  height: 100%;
  border-radius: 0.625rem;
  padding: 1.875rem 0.8333333333rem 0.8333333333rem;
  font-size: 0.6666666667rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  #power .inner ul li dl dd {
    font-size: 0.8333333333rem;
    line-height: 1.75;
    padding: 1.9444444444rem 1.3888888889rem;
  }
}
#power .inner ul li:first-child dt {
  background: #f98c28;
}
#power .inner ul li:first-child dd {
  background: rgba(249, 140, 40, 0.2);
}
#power .inner ul li:nth-child(2) dt {
  background: #5a97e0;
}
#power .inner ul li:nth-child(2) dd {
  background: rgba(90, 151, 224, 0.2);
}
#power .inner ul li:nth-child(3) dt {
  background: #ea738f;
}
#power .inner ul li:nth-child(3) dd {
  background: rgba(234, 115, 143, 0.2);
}
#power .inner ul li:last-child dt {
  background: #3ba38a;
}
#power .inner ul li:last-child dd {
  background: rgba(59, 163, 138, 0.2);
}
#power .inner p {
  margin-top: 1.6666666667rem;
  border: solid 1px #3ba38a;
  border-radius: 0.6666666667rem;
  padding: 1.25rem 1.0416666667rem;
}
@media only screen and (max-width: 767px) {
  #power .inner p {
    margin-top: 1.3888888889rem;
    border-radius: 0.8333333333rem;
    padding: 1.3888888889rem;
  }
}

/*  世界が認める 金色のユーグレナ®
-------------------------------------------------*/
#admit {
  background: url(../img/bg_admit_pc.jpg) no-repeat center;
  background-size: cover;
  padding: 4.1666666667rem 0 2.5rem;
}
@media only screen and (max-width: 767px) {
  #admit {
    padding: 2.7777777778rem 0;
    background-image: url(../img/bg_admit_sp.jpg);
    background-size: 200% auto;
  }
}
#admit .inner p {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #admit .inner p {
    margin-bottom: 1.3888888889rem;
  }
}
#admit .inner .certificate {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #admit .inner .certificate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#admit .inner .certificate figure {
  width: 48.6153846154%;
}
@media only screen and (max-width: 767px) {
  #admit .inner .certificate figure {
    width: 100%;
  }
}
#admit .inner .certificate .medal {
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  #admit .inner .certificate .medal {
    width: 7.125rem;
    left: 42.0769230769%;
    top: -1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  #admit .inner .certificate .medal {
    width: 4.75rem;
    right: 0;
    top: 14.1666666667rem;
  }
}
#admit .inner .certificate .medal img {
  -webkit-filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(7px 7px 7px rgba(0, 0, 0, 0.25));
}
#admit .inner .certificate ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  #admit .inner .certificate ul {
    width: 46.8461538462%;
  }
}
@media only screen and (max-width: 767px) {
  #admit .inner .certificate ul {
    padding-top: 1.8055555556rem;
  }
}
@media print, screen and (min-width: 768px) {
  #admit .inner .certificate ul li {
    width: 31.0344827586%;
  }
  #admit .inner .certificate ul li:nth-child(n+4) {
    margin-top: 0.4166666667rem;
  }
}
@media only screen and (max-width: 767px) {
  #admit .inner .certificate ul li {
    width: 47.3846153846%;
  }
  #admit .inner .certificate ul li:nth-child(n+3) {
    margin-top: 0.5555555556rem;
  }
}
#admit .inner small {
  display: block;
  font-size: 0.5833333333rem;
  text-align: right;
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  #admit .inner small {
    font-size: 0.6944444444rem;
  }
}

/*  パラミロンは第三世代の食物繊維®
-------------------------------------------------*/
#paramylon {
  padding-top: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #paramylon {
    padding-top: 2.7777777778rem;
  }
}
#paramylon .inner {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #paramylon .inner {
    text-align: center;
  }
}
#paramylon .inner::before, #paramylon .inner::after {
  position: absolute;
  content: "";
  top: -1.0416666667rem;
}
#paramylon .inner::before {
  background: url(../img/seaweed-01.svg) no-repeat;
  background-size: contain;
  width: 9.3333333333rem;
  height: 9.375rem;
  left: -2rem;
}
@media only screen and (max-width: 767px) {
  #paramylon .inner::before {
    width: 3.1388888889rem;
    height: 3.1666666667rem;
    left: 0;
    top: -1.5277777778rem;
  }
}
#paramylon .inner::after {
  background: url(../img/seaweed-02.svg) no-repeat;
  background-size: contain;
  width: 10.3333333333rem;
  height: 9.125rem;
  right: -2.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #paramylon .inner::after {
    width: 3rem;
    height: 2.6388888889rem;
    right: 0;
    top: -0.6944444444rem;
  }
}
#paramylon .inner .btn {
  width: 14.5833333333rem;
  height: 3.125rem;
  line-height: 3.125rem;
  background: #3ba38a;
  color: #fff;
  margin: 2.0833333333rem auto;
}
@media only screen and (max-width: 767px) {
  #paramylon .inner .btn {
    width: 14.5833333333rem;
    height: 3.125rem;
    line-height: 3.125rem;
    margin: 1.3888888889rem auto;
  }
}
#paramylon .inner .btn::after {
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  right: 1.25rem;
}
#paramylon .inner .btn:hover::after {
  right: 0.8333333333rem;
}

/*  金色のユーグレナ®はこんな方におすすめ！
-------------------------------------------------*/
#recommend {
  padding-top: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #recommend {
    padding-top: 2.7777777778rem;
  }
}
#recommend .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#recommend .inner ul li {
  width: 31.2307692308%;
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #recommend .inner ul li:not(:last-child) {
    margin-bottom: 1.3888888889rem;
  }
  #recommend .inner ul li figure {
    width: 62.4615384615%;
  }
}
#recommend .inner ul li dl {
  text-align: center;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul li dl {
    margin-top: 1.1111111111rem;
  }
}
#recommend .inner ul li dl dt {
  color: #1f6129;
  font-size: 1rem;
  padding-bottom: 0.8333333333rem;
  margin-bottom: 0.8333333333rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul li dl dt {
    padding-bottom: 1.1111111111rem;
    margin-bottom: 1.1111111111rem;
    font-size: 1rem;
  }
}
#recommend .inner ul li dl dt::after {
  position: absolute;
  content: "";
  background: #1f6129;
  width: 3.125rem;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul li dl dt::after {
    width: 3.125rem;
  }
}
#recommend .inner ul li dl dd {
  font-size: 0.8333333333rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #recommend .inner ul li dl dd {
    font-size: 0.8333333333rem;
  }
}

/*  確かな研究データと専門家からの評価
-------------------------------------------------*/
#evaluation {
  padding-top: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #evaluation {
    padding-top: 2.7777777778rem;
  }
}
#evaluation .inner h3 {
  font-size: 1.6666666667rem;
  height: 2.9166666667rem;
  line-height: 2.9166666667rem;
  border-radius: 1.4583333333rem;
  margin-bottom: 2.0833333333rem;
}
@media only screen and (max-width: 767px) {
  #evaluation .inner h3 {
    height: auto;
    font-size: 1.6666666667rem;
    line-height: 1.275;
    border-radius: 0.8333333333rem;
    padding: 0.8333333333rem;
    margin-bottom: 1.3888888889rem;
  }
}
@media print, screen and (min-width: 768px) {
  #evaluation .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#evaluation .inner ul li {
  width: 47.6923076923%;
  background: #dcefe8;
  border-radius: 1.0416666667rem;
  padding: 1.6666666667rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  #evaluation .inner ul li {
    width: 100%;
    border-radius: 0.8333333333rem;
    padding: 1.3888888889rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.3888888889rem;
  }
}
#evaluation .inner ul li figure {
  width: 8.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #evaluation .inner ul li figure {
    width: 73.8181818182%;
    margin-bottom: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 768px) {
  #evaluation .inner ul li dl {
    width: 13.2083333333rem;
  }
}
#evaluation .inner ul li dl dt {
  color: #1f6129;
  font-size: 1.25rem;
  text-align: center;
  padding-bottom: 0.8333333333rem;
  margin-bottom: 0.8333333333rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #evaluation .inner ul li dl dt {
    font-size: 1.25rem;
    padding-bottom: 0.5555555556rem;
    margin-bottom: 0.8333333333rem;
  }
}
#evaluation .inner ul li dl dt::after {
  position: absolute;
  content: "";
  width: 8.2083333333rem;
  height: 0.4583333333rem;
  background: url(../img/line.svg) no-repeat;
  background-size: contain;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #evaluation .inner ul li dl dt::after {
    width: 8.1944444444rem;
    height: 0.4444444444rem;
  }
}
#evaluation .inner ul li dl dd {
  font-size: 0.8333333333rem;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  #evaluation .inner ul li dl dd {
    font-size: 0.8333333333rem;
  }
}
@media print, screen and (min-width: 768px) {
  #evaluation .inner p {
    text-align: center;
    margin-top: 2.0833333333rem;
  }
}

/*  金色のユーグレナ®で輝く毎日を過ごしましょう！
-------------------------------------------------*/
#switch {
  padding-top: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #switch {
    padding-top: 2.7777777778rem;
  }
}
@media print, screen and (min-width: 768px) {
  #switch .inner h2 {
    width: 78.1538461538%;
    margin: 0 auto 2.0833333333rem;
  }
}
@media only screen and (max-width: 767px) {
  #switch .inner h2 {
    margin-bottom: 1.3888888889rem;
  }
}
#switch .inner .box {
  background: #fdefd9;
}
@media print, screen and (min-width: 768px) {
  #switch .inner .box {
    border-radius: 1.0416666667rem;
    padding: 2.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #switch .inner .box {
    border-radius: 0.8333333333rem;
    padding: 1.3888888889rem 0;
  }
}
#switch .inner .box:not(:last-of-type) {
  margin-bottom: 2.2916666667rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box:not(:last-of-type) {
    margin-bottom: 1.3888888889rem;
  }
}
#switch .inner .box h3 {
  background: #f29600;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4583333333rem;
  position: relative;
  width: 46.9230769231%;
  height: 4.1666666667rem;
  line-height: 4.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box h3 {
    width: 93.8461538462%;
    height: 2.7777777778rem;
    line-height: 2.7777777778rem;
    font-size: 0.9722222222rem;
    margin-bottom: 1.3888888889rem;
  }
}
#switch .inner .box h3::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.0833333333rem 0.8333333333rem 2.0833333333rem 0;
  border-color: transparent #fdefd9 transparent transparent;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box h3::after {
    border-width: 1.3888888889rem 0.5555555556rem 1.3888888889rem 0;
  }
}
#switch .inner .box .btn {
  width: 17.5rem;
  height: 3.75rem;
  line-height: 3.75rem;
  color: #563d00;
  background: -webkit-gradient(linear, left top, right top, from(#cba254), color-stop(54%, #fff), to(#cd9e58));
  background: linear-gradient(to right, #cba254, #fff 54%, #cd9e58);
}
@media only screen and (max-width: 767px) {
  #switch .inner .box .btn {
    width: 14.7222222222rem;
    height: 3.75rem;
    line-height: 3.75rem;
    margin: auto;
  }
}
#switch .inner .box .btn::before {
  position: absolute;
  content: "";
  border: solid 1px #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.0833333333rem;
  height: 3.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box .btn::before {
    width: 14.3055555556rem;
    height: 3.3333333333rem;
  }
}
#switch .inner .box .btn::after {
  border-right: solid 1px #563d00;
  border-bottom: solid 1px #563d00;
  width: 0.5rem;
  height: 0.5rem;
  right: 1.4583333333rem;
}
#switch .inner .box .btn:hover::after {
  right: 1.0416666667rem;
}
@media print, screen and (min-width: 768px) {
  #switch .inner .box > figure {
    width: 44.8461538462%;
    margin-right: 5.3846153846%;
  }
}
@media only screen and (max-width: 767px) {
  #switch .inner .box > figure {
    width: 84.6153846154%;
    margin: auto;
  }
}
@media print, screen and (min-width: 768px) {
  #switch .inner .box > p {
    width: 100%;
    text-align: center;
    margin-top: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  #switch .inner .box > p {
    width: 84.6153846154%;
    margin: 1.3888888889rem auto 0;
  }
}
#switch .inner .box h4 {
  width: 100%;
  color: #b6912c;
  text-align: center;
  margin-top: 3.125rem;
  margin-bottom: 2.0833333333rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box h4 {
    font-size: 0.9444444444rem;
    margin-top: 2.0833333333rem;
    margin-bottom: 1.3888888889rem;
    white-space: nowrap;
  }
}
#switch .inner .box ul {
  width: 100%;
  max-width: 100%;
}
#switch .inner .box ul .slick-slide {
  width: 20.8333333333rem;
  height: 13.3333333333rem;
  margin: 0 2.0833333333rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-slide {
    width: 15.2777777778rem;
    height: 9.7777777778rem;
    margin: 0 1.3888888889rem;
  }
}
#switch .inner .box ul .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#switch .inner .box ul .slick-arrow {
  position: absolute;
  width: 2.7083333333rem;
  height: 2.7083333333rem;
  background: #b6912c;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-arrow {
    width: 1.8055555556rem;
    height: 1.8055555556rem;
  }
}
#switch .inner .box ul .slick-arrow::before {
  position: absolute;
  content: "";
  width: 0.4166666667rem;
  height: 0.4166666667rem;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  top: 1.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-arrow::before {
    top: 0.75rem;
  }
}
#switch .inner .box ul .slick-next {
  right: 11.25rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-next {
    right: 0.4166666667rem;
  }
}
#switch .inner .box ul .slick-next::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: 1.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-next::before {
    right: 0.7777777778rem;
  }
}
#switch .inner .box ul .slick-prev {
  left: 11.25rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-prev {
    left: 0.4166666667rem;
  }
}
#switch .inner .box ul .slick-prev::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  left: 1.1666666667rem;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box ul .slick-prev::before {
    left: 0.7777777778rem;
  }
}
#switch .inner .box:first-of-type .btn {
  margin-right: 9.6153846154%;
}
#switch .inner .box:last-of-type .btn {
  font-size: 90%;
  margin: 2.0833333333rem auto 0;
}
@media only screen and (max-width: 767px) {
  #switch .inner .box:last-of-type .btn {
    font-size: 75%;
    margin: 1.3888888889rem auto 0;
  }
}

/*  footer
-------------------------------------------------*/
footer {
  margin-top: 2.5rem;
  padding: 1.6666666667rem 0;
  background: #3ba38a;
  color: #fff;
  text-align: center;
  font-size: 0.6666666667rem;
}
@media only screen and (max-width: 767px) {
  footer {
    margin-top: 2.7777777778rem;
    padding: 0.8333333333rem 0;
    font-size: 0.6666666667rem;
    line-height: 1.75;
  }
}