@charset "UTF-8";

/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

span.uline {
  background: linear-gradient(transparent 50%, #fdfa03 50%);
}
span.uline2 {
  background: linear-gradient(transparent 60%, #fdfa03 60%);
}
span.bold {
  font-weight: bold;
}


/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
  vertical-align: bottom;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}


/* GENERAL
 * ----------------------------------------------- */
body {
  color: #333;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400; /* 400/700/900 */
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
.ul-yl {
  background: linear-gradient(transparent 40%, #fef501 40%);
}
.fts44 {
  font-size: 44px;
}
.ttl-ellipsoid {
  display: block;
  text-align: center;
}


/* FONTS
 * ----------------------------------------------- */
.ft-zenmin {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 700; /*900*/
  font-style: normal;
}


/* HELPERS
 * ----------------------------------------------- */
a {
  color: #333;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.container {
  overflow: hidden;
}

.img {
  display: block;
  max-width: 100%;
}

@media print, (min-width: 768px) {
  body {
    position: static !important;
    top: auto !important;
  }

  .container {
    min-width: 1080px;
  }

  .wrapper {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
    transition: 0.4s;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    /*opacity: 0.8;*/
    filter: brightness(110%);
    transition: 0.4s;
  }

  .flex-md {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-md-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .flex-md-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .align-items-center-md {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .order1 {
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order2 {
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}

/* RESPONSIVE
 * ----------------------------------------------- */
.md {
    display: block !important;
}
.sm {
    display: none !important;
}

@media only screen and (max-width: 767px) {
  .md {
      display: none !important;
  }
  .sm {
      display: block !important;
  }
  body {
      font-size: 15px;
      line-height: 1.67;
  }
  .container {
      min-width: 320px;
      padding-top: 45px;
  }
  .wrapper {
      padding-left: 15px;
      padding-right: 15px;
  }
  .img {
      width: 100%;
  }
}
@media only screen and (max-width: 374px) {
  body {
    font-size: 14px;
  }
}

/* ----------------------------------------------- *
 * Margin / Padding
 * ----------------------------------------------- */
.mgT10 {
	margin-top: 10px;
}
.mgT20 {
	margin-top: 20px;
}
.mgT25 {
	margin-top: 25px;
}
.mgT30 {
	margin-top: 30px;
}
.mgT40 {
	margin-top: 40px;
}
.mgT50 {
	margin-top: 50px;
}
.mgT60 {
	margin-top: 60px;
}
.mgT70 {
	margin-top: 70px;
}
.mgT80 {
	margin-top: 80px;
}
.mgT90 {
	margin-top: 90px;
}
.mgT100 {
	margin-top: 100px;
}
.mgB10 {
	margin-bottom: 10px;
}
.mgB20 {
	margin-bottom: 20px;
}
.mgB25 {
	margin-bottom: 25px;
}
.mgB30 {
	margin-bottom: 30px;
}
.mgB40 {
	margin-bottom: 40px;
}
.mgB50 {
	margin-bottom: 50px;
}
.mgB60 {
	margin-bottom: 60px;
}
.mgB70 {
	margin-bottom: 70px;
}
.mgB80 {
	margin-bottom: 80px;
}
.mgB90 {
	margin-bottom: 90px;
}
.mgB100 {
	margin-bottom: 100px;
}
.pdT10 {
	padding-top: 10px;
}
.pdT20 {
	padding-top: 20px;
}
.pdT25 {
	padding-top: 25px;
}
.pdT30 {
	padding-top: 30px;
}
.pdT40 {
	padding-top: 40px;
}
.pdT50 {
	padding-top: 50px;
}
.pdT60 {
	padding-top: 60px;
}
.pdT70 {
	padding-top: 70px;
}
.pdT80 {
	padding-top: 80px;
}
.pdT90 {
	padding-top: 90px;
}
.pdT100 {
	padding-top: 100px;
}
.pdB10 {
	padding-bottom: 10px;
}
.pdB20 {
	padding-bottom: 20px;
}
.pdB25 {
	padding-bottom: 25px;
}
.pdB30 {
	padding-bottom: 30px;
}
.pdB40 {
	padding-bottom: 40px;
}
.pdB50 {
	padding-bottom: 50px;
}
.pdB60 {
	padding-bottom: 60px;
}
.pdB70 {
	padding-bottom: 70px;
}
.pdB80 {
	padding-bottom: 80px;
}
.pdB90 {
	padding-bottom: 90px;
}
.pdB100 {
	padding-bottom: 100px;
}

/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.header-site {
  background: #fff;
  z-index: 9999;
}
.header-site .logo {
  display: flex;
}
.header-site .logo img {
  width: 80px;
}
.header-site .logo-txt {
  font-size: 22px;
  margin: 15px 0 0 10px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.header-site .wrapper {
  position: relative;
  padding-top: 14px;
}
.header-site .ul-sns {
  position: absolute;
}
.header-site .ul-sns img {
  width: 33px;
}
.header-site .ul-sns a {
  display: block;
}
.header-site .ul-menu .txt-link {
  position: relative;
  display: block;
  font-weight: bold;
}
.header-site .ul-menu .txt-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media only screen and (max-width: 767px) {
	.header-site .logo img {
	  width: 55px;
	}
	.header-site .logo .header-logo {
	  width: 4.5%;
	}
	.header-site .logo-txt {
	  font-size: 16px;
	  margin: 6px 0 0 10px;
	}
}

@media only screen and (max-width: 580px) {
	.header-site .logo .header-logo {
	  width: 6.5%;
	}
}
@media only screen and (max-width: 480px) {
	.header-site .logo {
	  margin-top: 5px;
	}
	.header-site .logo .header-logo {
	  width: 0;
	}
	.header-site .logo-txt {
	  margin: 8px 0 0 10px;
	}
}
@media only screen and (max-width: 1500px) {
  .header-site .ul-menu > li:last-child .mega-menu {
    left: 0;
    right: 0;
  }
}

@media print, (min-width: 768px) {
  .navigation {
    display: block !important;
  }

  .overlay-menu {
    display: none !important;
  }

  .header-site {
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    background: #fff;
    position: relative;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header-site .wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-site .ul-sns {
    right: 0;
    top: 29px;
  }
  .header-site .ul-sns > li {
    margin-left: 33px;
  }
  .header-site .ul-sns > li:first-child {
    margin-left: 0;
  }
  .header-site .ul-sns img {
    width: 33px;
  }
  .header-site .navigation {
    padding-top: 12px;
  }
  .header-site .ul-menu > li {
    margin-left: 40px;
    height: 30px;
    position: relative;
  }
  .header-site .ul-menu li.topic.menu a {
    transition: .6s;
  }
  .header-site .ul-menu li.topic.menu a:hover {
    opacity: .4;
    transition: .6s;
  }
  .header-site .ul-menu > li:hover {
    height: 57px;
  }
  .header-site .ul-menu > li:hover .mega-menu {
    display: block;
  }
  .header-site .ul-menu > li > a,
  .header-site .ul-menu > li .txt {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding-top: 4px;
  }
  .header-site .ul-menu .txt-link {
    letter-spacing: 0.05em;
    padding: 17px 20px 18px 42px;
    font-size: 16px;
  }
  .header-site .ul-menu .txt-link:before {
    left: 30px;
  }
  .header-site .ul-menu .mega-menu {
    position: absolute;
    top: 94%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    min-width: 260px;
    z-index: 150;
    display: none;
    font-size: 14px;
    font-weight: bold;
  }
  .header-site .ul-menu .mega-menu ul {
    border-bottom: 1px solid #bbbbbc;
    border-top: 1px solid #bbbbbc;
  }
  .header-site .ul-menu .mega-menu ul > li {
    border-bottom: 1px solid #bbbbbc;
    padding: 13px 20px 15px 40px;
  }
  .header-site .ul-menu .mega-menu ul > li.ttl {
    color: #fff;
    padding: 13px 20px 15px 25px;
  }
  .header-site .ul-menu .mega-menu ul > li:last-child {
    border-bottom: none;
  }
  .header-site .ul-menu .mega-menu ul a {
    color: #fff;
    -moz-transition: all 0.26s;
    -o-transition: all 0.26s;
    -webkit-transition: all 0.26s;
    transition: all 0.26s;
    white-space: nowrap;
  }
  .header-site .ul-menu .mega-menu ul li.ttl a:hover {
    color: #fff;
  }
  .header-site .ul-menu .mega-menu ul a:hover {
    color: #fefb01;
  }
}

.navigation .ul-menu li.topic::before {
  content: "";
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .header-site {
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    min-width: 320px;
  }
  .header-site .header-inner {
    background: #fff;
    position: relative;
    z-index: 1000;
    padding: 1.5% 15px 0;
    height: 58px;
  }
  .header-site .wrapper {
    padding: 0;
  }
  .header-site .ul-sns {
    right: 64px;
    top: 18px;
  }
  .header-site .ul-sns > li {
    width: 27px;
    margin-left: 22px;
  }
  .header-site .ul-sns > li:first-child {
    margin-left: 0;
  }

  .navigation {
    position: fixed;
    left: 0;
    right: 0;
    min-width: 320px;
    height: 100%;
    z-index: 990;
    padding-top: 45px;
    top: 0;
    font-weight: 300;
    display: none;
  }
  .navigation .navigation-inner {
    height: 100% !important;
    overflow-y: auto;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 5;
  }
  .navigation .ul-menu {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 10;
    margin-top: 11px;
  }
  .navigation .ul-menu li {
    color: #f8ed79;
    border-bottom: 1px solid #bbbbbc;
  }
  .navigation .ul-menu li.mb {
    border-bottom: none;
  }
  .navigation .ul-menu li a {
    color: #fbec50;
  }
  .navigation .ul-menu li.topic::before {
    margin-top: 25px;
    left: 15px;
    border-left: 6px solid #ddd;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .navigation .ul-menu li > a,
  .navigation .ul-menu li .txt {
    font-size: 13px;
    padding: 18px 45px 16px 30px;
    font-weight: bold;
  }
  .navigation .ul-menu li .txt {
    position: relative;
  }
  .navigation .ul-menu li .txt:after {
    content: "";
    width: 9px;
    height: 13px;
    background: url(../img/common/icn_bullet01.png) no-repeat 0 0;
    background-size: 100% 100%;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -6px;
  }
  .navigation .ul-menu li ul li a {
    padding: 9px 45px 18px 40px;
    font-weight: normal;
  }
  .navigation .ul-menu li ul li a.mb {
    color: #eee;
  }
  .navigation .ul-menu a {
    display: block;
    position: relative;
  }
  .navigation .ul-menu a:after {
    content: "";
    width: 9px;
    height: 13px;
    background: url(../img/common/icn_bullet01.png) no-repeat 0 0;
    background-size: 100% 100%;
    position: absolute;
    right: 27px;
    top: 50%;
    margin-top: -6px;
  }
  .navigation .ul-menu .txt-link {
    font-size: 13px;
    padding: 9px 40px 9px 33px;
    font-weight: 700;
    position: relative;
    display: block;
    border-top: 1px solid #bbbbbc;
    border-bottom: 1px solid #bbbbbc;
  }
  .navigation .ul-menu .txt-link:before {
    top: 50%;
    margin-top: -4px;
    left: 25px;
    border-left: 5px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
  .navigation .ul-menu .ul-sub > li:last-child {
    border-bottom: none;
  }

  .overlay-menu {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
  }

  .btn-menu {
    width: 50px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 6px;
    cursor: pointer;
  }
  .btn-menu > span {
    width: 16px;
    height: 3px;
    background: #000;
    position: absolute;
    left: 40%;
    margin-left: -7px;
    display: block;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    -webkit-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
  }
  .btn-menu > span:nth-child(1) {
    top: 15px;
  }
  .btn-menu > span:nth-child(2) {
    top: 21px;
  }
  .btn-menu > span:nth-child(3) {
    top: 27px;
  }
  .btn-menu.js-active > span:nth-child(1) {
    top: 21px;
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .btn-menu.js-active > span:nth-child(2) {
    width: 0;
    margin-left: 0;
  }
  .btn-menu.js-active > span:nth-child(3) {
    top: 21px;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION KEYVISUAL
 * ----------------------------------------------- */
.section-keyvisual {
  position: relative;
  margin-top: 80px;
}
.section-keyvisual img {
  display: block;
  width: 100%;
  height: auto;
}
.section-keyvisual .main {
  position: relative;
}
.section-keyvisual .main .parts1 {
  width: 48%;
  position: absolute;
  top: -8%;
  left: 8%;
}
.section-keyvisual .main .parts2 {
  width: 14%;
  position: absolute;
  top: 47%;
  left: 10%;
}
.section-keyvisual .main .parts3 {
  width: 16%;
  position: absolute;
  top: 65%;
  left: 25%;
}
.section-keyvisual .main .parts4 {
  width: 27%;
  position: absolute;
  top: 69%;
  right: 8%;
}
.remarks {
  font-size: 13px;
  line-height: 1.6;
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.remarks-functional {
  font-size: 13px;
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1.2em;
}
.remarks-ingredient {
  font-size: 13px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .section-keyvisual {
    margin-top: 11px;
  }
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION About
 * ----------------------------------------------- */
.section-about {
  background: url(../img/about_bg.jpg) no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.section-about .wrap {
  text-align: center;
}
.section-about h2,
.section-about h3 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.5;
  text-shadow: white 1px 1px 5px, white -1px 1px 5px, white 1px 1px 5px, white -1px 1px 5px, white 1px -1px 5px, white -1px -1px 5px;
}
.section-about h3 {
  position: relative;
  display: inline-block;
  padding: 0 43px;
  margin-bottom: 20px;
}
.section-about h3 span.fts {
  font-size: 28px;
  letter-spacing: -0.1em;
}
.section-about h3::before,
.section-about h3::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #000;
}
.section-about h3::before {
  left: 0;
}
.section-about h3::after {
  right: 0;
}
.section-about .img {
  display: block;
}
.section-about .btn {
  position: relative;
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 80px;
  padding: 20px;
  width: 340px;
  transition: .4s;
}
.section-about .btn::before {
  position: absolute;
  top: 33%;
  left: 16%;
  content: '';
  background: url(../img/ico_cart_about.png);
  width: 22px;
  height: 20px;
}
.section-about .btn::after {
  position: absolute;
  top: 43%;
  right: 10%;
  content: '';
  background: url(../img/ico_arrow_about.png);
  width: 13px;
  height: 9px;
}
.section-about .btn:hover {
  background: #f9d616;
  transition: .4s;
}

@media only screen and (max-width: 767px) {
	.section-about {
	  background: url(../img/about_bg.jpg) no-repeat center;
	  background-size: auto;
	  padding: 80px 0 100px;
	}
	.section-about h2,
	.section-about h3 {
	  font-size: 24px;
	}
	.section-about h3 {
	  font-size: 32px;
	  padding: 0 35px;
	}
	.section-about h3::before,
	.section-about h3::after {
	  width: 27px;
	}
	.section-about .btn {
	  width: 86%;
	}
	.section-about .img {
	  display: inline-block;
	  margin-left: -40px;
	}
	.section-about .img img {
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Liposome
 * ----------------------------------------------- */
.section-liposome {
  background: url(../img/liposome_bg.jpg) no-repeat top;
/*  background: #fef5ba;*/
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.section-liposome h2 {
  font-size: 30px;
  letter-spacing: -0.05em;
}
.section-liposome h2 span.fts {
  font-size: 40px;
}
.section-liposome h2 span.point {
  font-size: 34px;
  letter-spacing: -0.07em;
}
.section-liposome h2 span.line {
  line-height: 1.6;
  border-bottom: solid 4px #fec822;
  padding-bottom: 3px;
}
.section-liposome .box {
  background: url(../img/liposome_about_bg.jpg) no-repeat;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 0 0 18px #ccc;
  margin: 0 auto;
  padding: 40px 40px 0;
}
.section-liposome .box p.txt {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: -40px;
}
.section-liposome .box h3 {
  font-size: 42px;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.section-liposome .box h3 span {
  font-size: 30px;
}
.section-liposome .box .liposome {
  text-align: center;
}

@media only screen and (max-width: 767px) {
	.section-liposome {
	  background: url(../img/liposome_bg.jpg) no-repeat top;
	  background-size: cover;
	  text-align: center;
	  margin: 0 auto;
	  padding: 80px 0 100px;
	}
	.section-liposome h2 {
	  font-size: 18px;
	  letter-spacing: -0.07em;
	  line-height: 1.4;
	}
	.section-liposome h2 span.fts {
	  font-size: 30px;
	}
	.section-liposome h2 span.line {
	  line-height: 1.5;
	  border-bottom: solid 4px #fec822;
	  padding-bottom: 2px;
	}
	.section-liposome img {
	  width: 100%;
	  margin-left: -4%;
	}
	.section-liposome .box {
	  padding: 20px 20px 0;
	}
	.section-liposome .box p.txt {
	  font-size: 16px;
	  line-height: 1.8;
	  margin: 0 auto;
	  width: 90%;
	}
	.section-liposome .box h3 {
	  font-size: 38px;
	  letter-spacing: -0.06em;
	}
	.section-liposome .box h3 span {
	  font-size: 30px;
	}
	.section-liposome .box .liposome {
	  text-align: center;
	}
	.section-liposome .box .liposome img {
	  padding: 0 4%;
	  margin-top: -40px;
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Point
 * ----------------------------------------------- */
#point {
  margin-bottom: 200px;
}
.section-point {
  background: url(../img/point_bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 100px;
}
.section-point h2 {
  font-size: 50px;
  letter-spacing: 0.04em;
  margin-bottom: 15px;
}
.section-point h3 {
  font-size: 16px;
}
.section-point .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 18px #ddd;
  font-size: 16px;
  padding: 50px;
  margin-top: 50px;
  width: 100%;
}
.section-point .box ul {
  width: 50%;
  text-align: left;
}
.section-point .box li.ttl {
  color: #666;
  font-size: 30px;
  letter-spacing: 0.03em;
}
.section-point .box li.ttl::after {
  content: '';
  display: block;
  border-bottom: solid 1px #666;
  width: 40px;
  padding-top: 25px;
  margin-bottom: 40px;
}
.section-point .box.sec li.ttl::after {
  margin: 0 auto;
}
.section-point .box.sec .herb li.ttl::after {
  content: '';
  display: block;
  border-bottom: none;
  padding-top: 0;
  margin-bottom: 0;
}
.section-point .box li.subttl {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}
.section-point .box li.subttl span.registered {
  display: inline-block;
  font-size: 20px;
  vertical-align: sub;
}
.section-point .box li.secttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.section-point .box li.txt {
  font-size: 15px;
  line-height: 1.8;
  margin: 25px 0 20px;
}
.section-point .box li.txt span.registered {
  display: inline-block;
  vertical-align: sub;
}
.section-point .box li.remark {
  font-size: 12px;
}
.section-point .box.sec {
  display: block;
}
.section-point .box.sec ul {
  text-align: center;
  width: 100%;
}
.section-point .box.sec .subttl {
  margin: 30px 0;
}
.section-point .box.sec .secttl {
  font-size: 20px;
  margin-bottom: 30px;
}
.section-point .box.sec .herbmix {
  background: #9aa9af;
  border-radius: 15px;
  padding: 50px 0 40px;
  margin: 30px 0 60px;
}
.section-point .box.sec .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  width: 100%;
}
.section-point .box.sec .flexbox ul.sec .ttl {
  color: #000;
  font-size: 36px;
  margin-left: -9px;
}
.section-point .box.sec .flexbox ul.sec .txt {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.section-point .box.sec ul.sec {
  text-align: left;
  width: 48%;
}
.section-point .box.sec .flexbox .img {
  width: 42%;
}
.section-point .box.sec .flexbox .herb .img {
  width: 100%;
}
.section-point .box.sec .flexbox img {
  width: 100%;
}
.section-point .box.sec .flexbox ul.sec .ttl::after {
  border: none;
}
.section-point .box.sec .flexbox h5 {
  font-size: 36px;
  display: block;
}
.section-point .box.sec h5 {
  font-size: 36px;
  text-align: left;
  margin-bottom: 30px;
}
.section-point .box.sec .flexbox .herb {
  width: 22%;
}
.section-point .box.sec .flexbox .herb .img {
  margin-bottom: 15px;
}
.section-point .box.sec .flexbox .herb img {
  width: 100%;
}
.section-point .box.sec .flexbox .herb .ttl {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
.section-point .box.sec .flexbox .herb .txt {
  font-size: 13px;
  text-align: left;
}
.wf-loading {
    opacity: 0;
}

@media only screen and (max-width: 767px) {
	#point {
	  margin-bottom: 20px;
	}
	.section-point {
	  background: url(../img/point_bg.jpg) no-repeat;
	  background-size: cover;
	  text-align: center;
	  padding: 80px 0 100px;
	}
	.section-point .box {
	  font-size: 16px;
	  padding: 30px 20px;
	}
	.section-point .box img {
	  width: 100%;
	}
	.section-point .box ul {
	  width: 100%;
	  margin-top: 20px;
	}
	.section-point .box li.ttl {
	  font-size: 30px;
	}
	.section-point .box li.ttl::after {
	  margin-bottom: 30px;
	}
	.section-point .box.sec li.ttl::after {
	  margin: 0 auto;
	}
	.section-point .box li.subttl {
	  font-size: 28px;
	  letter-spacing: -0.05em;
	  margin-bottom: 0;
	}
	.section-point .box li.secttl {
	  font-size: 18px;
	  margin: 20px 0;
	}
	.section-point .box li.txt {
	  font-size: 15px;
	  line-height: 1.8;
	  margin: 25px 0 20px;
	}
	.section-point .box li.remark {
	  font-size: 10px;
	}
	.section-point .box.sec .subttl {
	  margin: 30px 0 10px;
	}
	.section-point .box.sec .secttl {
	  font-size: 20px;
	  margin-bottom: 30px;
	}
	.section-point .box.sec .herbmix {
	  padding: 30px 20px;
	  margin: 30px 0 20px;
	}
	.section-point .box.sec .flexbox {
	  margin-bottom: 10px;
	  width: 100%;
	}
	.section-point .box.sec .flexbox ul.sec .ttl {
	  font-size: 36px;
	  margin-left: -9px;
	}
	.section-point .box.sec .flexbox ul.sec .txt {
	  margin-bottom: 20px;
	}
	.section-point .box.sec ul.sec {
	  width: 100%;
	}
	.section-point .box.sec .flexbox .img {
	  margin-bottom: 40px;
	  width: 100%;
	}
	.section-point .box.sec .flexbox .herb .img {
	  width: 100%;
	}
	.section-point .box.sec .flexbox img {
	  width: 100%;
	}
	.section-point .box.sec .flexbox h5 {
	  font-size: 36px;
	}
	.section-point .box.sec h5 {
	  font-size: 36px;
	  margin-bottom: 0;
	}
	.section-point .box.sec .flexbox .herb {
	  width: 47%;
	}
	.section-point .box.sec .flexbox .herb .img {
	  margin-bottom: 15px;
	}
	.section-point .box.sec .flexbox .herb img {
	  width: 100%;
	}
	.section-point .box.sec .flexbox .herb .ttl {
	  font-size: 16px;
	  letter-spacing: -0.06em;
	}
	.section-point .box.sec .flexbox .herb .txt {
	  margin-top: 15px;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Nayami
 * ----------------------------------------------- */

.section-nayami {
  background: url(../img/nayami_bg.jpg) no-repeat bottom;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 160px;
}
.section-nayami .ttl {
  text-align: center;
  font-size: 40px;
}
.section-nayami .ttl h2 {
  position: relative;
  display: inline-block;
  font-weight: 900;
  border-bottom: 5px solid #f9c700;
  padding-bottom: 5px;
}
.section-nayami .ttl h2::before {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
  border: 25px solid;
  border-color: transparent;
  border-top-color: #f9c700;
  margin-left: -25px;
}
.section-nayami .ttl h2::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
  border: 18px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -18px;
}
.section-nayami .nayamiBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 50px;
}
.section-nayami .nayamiBox ul {
  width: 28.5%;
}
.section-nayami .nayamiBox ul.middle {
  margin-top: 40px;
}
.section-nayami .nayamiBox ul img {
  width: 100%;
}
.section-nayami .nayamiBox .img {
  box-shadow: 5px 5px 15px #ddd;
}
.section-nayami .nayamiBox .txt {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
	.section-nayami {
	  background: url(../img/nayami_bg.jpg) no-repeat bottom center;
	  background-size: contain;
	  padding: 80px 0;
	}
	.section-nayami .ttl {
	  font-size: 32px;
	}
	.section-nayami .nayamiBox ul {
	  width: 100%;
	  margin-bottom: 60px;
	}
	.section-nayami .nayamiBox ul.middle {
	  margin-top: 0;
	  margin-bottom: 40px;
	}
	.section-nayami .nayamiBox ul img {
	  width: 100%;
	}
	.section-nayami .nayamiBox .img {
	  width: 85%;
	}
	.section-nayami .nayamiBox .img.right {
	  display: inline-block;
	  text-align: right;
	  margin-right: -13%;
	}
	.section-nayami .nayamiBox .txt {
	  font-size: 20px;
	  letter-spacing: -0.04em;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Formula
 * ----------------------------------------------- */

.section-formula {
  background: url(../img/formula_bg.jpg) no-repeat bottom;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.section-formula .wrap {
  text-align: center;
}
.section-formula h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}
.section-formula h2 span {
  font-size: 26px;
}

@media only screen and (max-width: 767px) {
	.section-formula {
	  background: url(../img/formula_bg.jpg) no-repeat bottom center;
	  background-size: cover;
	  padding: 80px 0;
	}
	.section-formula img {
	  width: 100%;
	}
	.section-formula h2 {
	  font-size: 24px;
	  line-height: 1.5;
	  letter-spacing: -0.07em;
	  margin-bottom: 20px;
	}
	.section-formula h2 span {
	  font-size: 20px;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Model
 * ----------------------------------------------- */

.section-model {
  background: url(../img/model_bg.jpg) no-repeat top;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 120px;
  height: 600px;
}
.section-model .wrap {
  position: relative;
}
.section-model .wrap .img {
  position: absolute;
  top: 100px;
  left: 0;
}

@media only screen and (max-width: 767px) {
	.section-model {
	  background: url(../img/model_bg.jpg) no-repeat -860px 0;
	  background-size: cover;
	  padding: 0;
	}
	.section-model .wrap .img {
	  top: 300px;
	  left: 50%;
	}
	.section-model .wrap .img img {
	  width: 40%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Capsule
 * ----------------------------------------------- */

.section-capsule {
  background: url(../img/capsul_bg.jpg) no-repeat;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 120px;
}
.section-capsule h2 {
  text-align: center;
  font-size: 50px;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.section-capsule h2 span {
  font-size: 42px;
}
.section-capsule .box {
  position: relative;
}
.section-capsule .box .img1 {
  position: absolute;
  top: -10%;
  left: -1%;
  z-index: 10;
}
.section-capsule .box .img2 {
  position: absolute;
  top: 34%;
  right: 5%;
  z-index: 10;
}
.section-capsule .box .img3 {
  display: block;
  text-align: center;
}

@media only screen and (max-width: 767px) {
	.section-capsule {
	  background: url(../img/capsul_bg.jpg) no-repeat center;
	  background-position: bottom;
	  padding: 60px 0 80px;
	}
	.section-capsule h2 {
	  font-size: 42px;
	  margin-bottom: 20px;
	}
	.section-capsule h2 span {
	  font-size: 36px;
	}
	.section-capsule .box_capsul {
	  text-align: center;
	  margin: 0 -28px;
	}
	.section-capsule .box_capsul .img_sp {
	  width: 100%;
	}
	.section-capsule .box_capsul .img_sp img {
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Howto
 * ----------------------------------------------- */
#howto {
  padding-top: 100px;
  margin-top: -100px;
}
.section-howto {
  background: url(../img/howto_01.jpg) no-repeat right;
  /*background-size: contain;*/
  margin: 100px 0 120px;
}
.section-howto h2 {
  display: inline-block;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.08em;
  border-bottom: solid 4px #f7ed08;
  padding-bottom: 10px;
  margin: 0 0 30px;
}
.section-howto h2 span {
  font-size: 36px;
  letter-spacing: 0.05em;
}
.section-howto p.txt {
  font-size: 17px;
  line-height: 2;
  margin-bottom: 40px;
  width: 40%;
}

@media only screen and (max-width: 767px) {
	.section-howto {
	  background: url(../img/howto_01.jpg) no-repeat 60px 800px;
	  background-size: contain;
	  height: 1200px;
	  /*height: 160vh;*/
	  margin: 100px 0 0;
	}
	.section-howto h2 {
	  font-size: 40px;
	  line-height: ;
	  letter-spacing: -0.08em;
	  border-bottom: solid 4px #f7ed08;
	  padding-bottom: 30px;
	  margin: 60px 0 30px;
	}
	.section-howto h2 span {
	  font-size: 28px;
	  letter-spacing: 0.1em;
	}
	.section-howto p.txt {
	  margin-bottom: 20px;
	  width: 100%;
	}
	.section-howto .img {
	  text-align: center;
	  width: 84%;
	  margin: 0 auto;
	}
	.section-howto .img img {
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Begin
 * ----------------------------------------------- */

.section-begin {
  background: url(../img/begin_bg.jpg) no-repeat;
  background-size: cover;
  padding: 60px 0 160px;
  text-align: center;
}
.section-begin h2 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -0.1em;
  margin-bottom: 40px;
}
.section-begin h2 span {
  letter-spacing: -0.02em;
}
.section-begin h2 span.fts {
  font-size: 32px;
}
.section-begin h2 span.point {
  font-size: 38px;
  letter-spacing: -0.09em;
}
.section-begin .box {
  position: relative;
}
.section-begin .box .img2 {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
}
.section-begin .box .txt {
  position: absolute;
  top: 92%;
  left: 9%;
  text-align: left;
  letter-spacing: -0.04em;
}
.section-begin .box .txt1 {
  font-size: 38px;
}
.section-begin .box .txt1 span {
  font-size: 46px;
}
.section-begin .box .txt2 {
  font-size: 24px;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
	.section-begin {
	  padding: 60px 0 220px;
	  margin-top: 100px;
	}
	.section-begin h2 {
	  font-size: 38px;
	  margin-bottom: 20px;
	}
	.section-begin h2 span {
	  letter-spacing: -0.02em;
	}
	.section-begin h2 span.fts {
	  display: inline-block;
	  font-size: 24px;
	  margin-bottom: 12px;
	}
	.section-begin h2 span.point {
	  font-size: 38px;
	  letter-spacing: -0.09em;
	}
	.section-begin .box {
	  position: relative;
	}
	.section-begin .box .img1 img {
	  width: 100%;
	}
	.section-begin .box .img2 {
	  position: absolute;
	  top: 35%;
	}
	.section-begin .box .img2 img {
	  width: 36%;
	}
	.section-begin .box .txt {
	  position: absolute;
	  top: auto;
	  bottom: -37%;
	  left: 0;
	  right: 0;
	  text-align: center;
	  letter-spacing: -0.04em;
	}
	.section-begin .box .txt1 {
	  font-size: 24px;
	  margin-bottom: -3px;
	}
	.section-begin .box .txt1 span {
	  font-size: 36px;
	}
	.section-begin .box .txt2 {
	  font-size: 18px;
	  letter-spacing: -0.06em;
	  line-height: 1.2;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION GMP
 * ----------------------------------------------- */

.section-gmp {
  background: url(../img/gmp_bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0 120px;
  text-align: center;
}
.section-gmp h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
.section-gmp h2 span {
  font-size: 32px;
}
.section-gmp .box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 18px #ddd;
  font-size: 16px;
  padding: 50px;
  margin-top: 50px;
  width: 100%;
}
.section-gmp .box.fst {
  position: relative;
  background: url(../img/gmp_img_01.jpg) no-repeat left;
  text-align: right;
  height: 400px;
}
.section-gmp .box.fst h3 {
  position: absolute;
  top: 20%;
  right: 7%;
  text-align: left;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: white 1px 1px 5px, white -1px 1px 5px, white 1px 1px 5px, white -1px 1px 5px, white 1px -1px 5px, white -1px -1px 5px;
}
.section-gmp .box.fst h3 strong {
  font-weight: bold;
}
.section-gmp .box.sec {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-gmp .box.sec .txtBox {
  text-align: left;
  width: 48%;
}
.section-gmp .box.sec .txtBox h3 {
  font-size: 28px;
  border-bottom: solid 4px #f7ed08;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.section-gmp .box.sec .txtBox p.txt {
  line-height: 1.9;
}
.section-gmp .box.sec .imgBox {
  width: 46%;
}
.section-gmp .box.sec .imgBox img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
	.section-gmp {
	  background: url(../img/gmp_bg.jpg) no-repeat -100px -40px;
	  background-size: cover;
	  padding: 60px 0 100px;
	}
	.section-gmp h2 {
	  font-size: 32px;
	  margin-bottom: 30px;
	}
	.section-gmp h2 span {
	  font-size: 28px;
	}
	.section-gmp .box {
	  font-size: 16px;
	  padding: 30px 20px;
	  margin-top: 40px;
	  width: 100%;
	}
	.section-gmp .box.fst {
	  background: url(../img/gmp_img_01.jpg) no-repeat -70px 0;
	  background-size: cover;
	  height: 400px;
	}
	.section-gmp .box.fst h3 {
	  position: absolute;
	  top: 60%;
	  right: 0;
	  left: 7%;
	  font-size: 16px;
	  line-height: 1.8;
	}
	.section-gmp .box.sec .txtBox {
	  text-align: left;
	  width: 100%;
	}
	.section-gmp .box.sec .txtBox h3 {
	  font-size: 28px;
	  border-bottom: solid 4px #f7ed08;
	  padding-bottom: 10px;
	  margin-bottom: 30px;
	}
	.section-gmp .box.sec .txtBox p.txt {
	  margin-bottom: 20px;
	  line-height: 1.9;
	}
	.section-gmp .box.sec .imgBox {
	  width: 100%;
	}
	.section-gmp .box.sec .imgBox img {
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION Metabolic
 * ----------------------------------------------- */

.section-metabolic {
  background: url(../img/metabolic_bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0 120px;
  text-align: center;
}
.section-metabolic .box {
  background: url(../img/back_pat.gif) ;
  border-radius: 15px;
  box-shadow: 0 0 18px #ddd;
  font-size: 16px;
  padding: 50px 50px 10px;
  margin-top: 50px;
  width: 100%;
}
.section-metabolic .box .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  width: 100%;
}
.section-metabolic .box .flexbox .txtBox {
  text-align: left;
}
.section-metabolic .box .flexbox.fst .imgBox {
  width: 52%;
}
.section-metabolic .box .flexbox.fst .imgBox img {
  width: 100%;
}
.section-metabolic .box .flexbox.fst .txtBox {
  width: 42%;
}
.section-metabolic .box .flexbox.fst .txtBox h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.section-metabolic .box .flexbox.fst .txtBox h2 span {
  font-size: 32px;
}
.section-metabolic .box .flexbox.fst .txtBox h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.section-metabolic .box .flexbox.fst .txtBox .txt {
  font-size: 17px;
  line-height: 1.8;
}
.section-metabolic .box .flexbox.fst .txtBox .txt span {
  color: #68c81b;
  font-weight: bold;
}
.section-metabolic .box .flexbox.sec .imgBox {
  width: 42%;
}
.section-metabolic .box .flexbox.sec .imgBox img {
  width: 100%;
}
.section-metabolic .box .flexbox.sec .txtBox {
  width: 50%;
}
.section-metabolic .box .flexbox.sec .txtBox .txt {
  font-size: 17px;
  line-height: 1.8;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
	.section-metabolic {
	  background: url(../img/metabolic_bg.jpg) no-repeat;
	  background-size: cover;
	  padding: 60px 0 120px;
	  text-align: center;
	}
	.section-metabolic .box {
	  background: url(../img/back_pat.gif) ;
	  border-radius: 15px;
	  box-shadow: 0 0 18px #ddd;
	  font-size: 16px;
	  padding: 30px 20px 10px;
	  margin-top: 50px;
	  width: 100%;
	}
	.section-metabolic .box .flexbox {
	  flex-wrap: wrap-reverse;
	  margin-bottom: 30px;
	}
	.section-metabolic .box .flexbox.fst .imgBox {
	  margin-top: 20px;
	  width: 100%;
	}
	.section-metabolic .box .flexbox.fst .imgBox img {
	  width: 100%;
	}
	.section-metabolic .box .flexbox.fst .txtBox {
	  width: 100%;
	}
	.section-metabolic .box .flexbox.fst .txtBox h2 {
	  font-size: 32px;
	  line-height: 1.2;
	  letter-spacing: -0.04em;
	  margin-bottom: 20px;
	}
	.section-metabolic .box .flexbox.fst .txtBox h2 span {
	  font-size: 28px;
	}
	.section-metabolic .box .flexbox.fst .txtBox h3 {
	  font-size: 20px;
	  margin-bottom: 30px;
	}
	.section-metabolic .box .flexbox.fst .txtBox .txt {
	  font-size: 17px;
	  line-height: 1.8;
	}
	.section-metabolic .box .flexbox.sec .imgBox {
	  width: 100%;
	}
	.section-metabolic .box .flexbox.sec .imgBox img {
	  width: 100%;
	}
	.section-metabolic .box .flexbox.sec .txtBox {
	  width: 100%;
	}
	.section-metabolic .box .flexbox.sec .txtBox .txt {
	  font-size: 17px;
	  line-height: 1.8;
	  margin-top: 20px;
	}


}




/* ----------------------------------------------- */
/* BUY
 * ----------------------------------------------- */
.section-buy {
  padding: 80px 0 180px;
  text-align: center;
}
.section-buy .buy-ttl h2 {
  position: relative;
  display: inline-block;
  padding: 16px 60px 17px;
  max-width: 100%;
  background: #fcea00;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-sizing: border-box;
  border-radius: 80px;
  margin-bottom: 40px;
}
.section-buy .buy-ttl h2::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  z-index: 2;
}
.section-buy .buy-ttl h2::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -16px;
  border: 14px solid transparent;
  border-top: 18px solid #fcea00;
  z-index: 1;
}
.section-buy h2 span {
  font-size: 32px;
}
.section-buy .buy-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 100%;
}
.section-buy .buy-box .product {
  width: 30%;
  height: fit-content;
  margin: 0 auto;
}
.section-buy .buy-box .product img {
  width: 100%;
}
.section-buy .buy-box .txtBox {
  width: 55%;
}
.section-buy .buy-box ul {
  text-align: left;
}
.section-buy .buy-box .ttl {
  position: relative;
  font-size: 30px;
  font-weight: bold;
}
.section-buy .buy-box .ttl span.product {
  font-size: 20px;
}
.section-buy .buy-box .ttl span.functional {
  color: #fff;
  background: #1e267e;
  font-size: 14px;
  padding: 7px 10px 8px;
  margin-left: 15px;
  vertical-align: middle;
}
.section-buy .buy-box .subttl {
  font-size: 20px;
  margin-bottom: 20px;
}
.section-buy .buy-box .txt {
  font-size: 14px;
  line-height: 1.8;
  margin: 10px 0 30px;
}
.section-buy .buy-box .fee {
  font-size: 16px;
  font-weight: bold;
  border-top: solid 3px #000;
  border-bottom: solid 3px #000;
  padding: 20px 0;
  margin: 15px 0 40px;
}
.section-buy .buy-box .fee span.large {
  font-size: 36px;
  letter-spacing: 0.02em;
}
.section-buy .buy-box .fee span.tax {
  font-size: 18px;
}
.section-buy .buy-box .txtBox ul.list {
  color: #1e267e;
  font-size: 20px;
  letter-spacing: -0.05em;
  line-height: 1.3;
  border-top: dotted 3px #bbb;
  border-bottom: dotted 3px #bbb;
  padding: 20px 0 15px 35px;
  margin-bottom: 30px;
}
.section-buy .buy-box .txtBox ul.list li {
  position: relative;
  margin-bottom: 15px;
}
.section-buy .buy-box .txtBox ul.list li::before {
  position: absolute;
  top: -1px;
  left: -38px;
  content: '';
  background: url(../img/ico_check_buy.png);
  width: 33px;
  height: 30px;
}

  /* mdc button */
.btn-mdc {
  position: relative;
  width: 380px;
  height: 136px;
  display: block;
  cursor: pointer;
  margin: 0 auto;
}
.btn-mdc img {
  position: absolute;
  top: 50%;
  left: 36%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  padding: 0;
}
.btn-mdc:hover img:nth-of-type(2) {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
	.btn-mdc {
	  margin: 20px 0 15px;
	  width: 100%;
	}
	.btn-mdc img {
	  left: 50%;
	}
	.section-buy {
	  padding: 0 0 280px;
	}
	.section-buy .buy-ttl {
	  margin: 60px 0 20px;
	}
	.section-buy .buy-ttl .sp img {
	  width: 100%;
	}
	.section-buy .buy-ttl h2 {
	  top: 37%;
	  font-size: 28px;
	  line-height: 1.2;
	  padding: 20px 0 23px;
	  margin-bottom: 0;
	  width: 90%;
	}
	.section-buy h2 {
	  top: 42%;
	  font-size: 2.8em;
	}
	.section-buy h2 span {
	  font-size: 0.85em;
	}
	.section-buy .buy-box {
	  flex-wrap: wrap;
	  padding: 0 4%;
	  margin-bottom: 30px;
	  width: 100%;
	}
	.section-buy .buy-box .product {
	  width: 70%;
	  margin: 0 auto;
	}
	.section-buy .buy-box .product img {
	  width: 90%;
	}
	.section-buy .buy-box ul {
	  width: 100%;
	}
	.section-buy .buy-box .ttl {
	  font-size: 30px;
	}
	.section-buy .buy-box .ttl span {
	  padding: 0;
	  top: 97%;
	  left: 0;
	}
	.section-buy .buy-box .txt {
	  margin: 20px 0;
	}
	.section-buy .buy-box .fee {
	  padding: 13px 0 20px;
	  margin: 15px 0 60px;
	}
	.section-buy .buy-box .fee span.large {
	  font-size: 40px;
	}
	.section-buy .buy-box .fee span.tax {
	  font-size: 18px;
	}
	.section-buy .buy-box .txtBox {
	  width: 100%;
	  margin-top: 30px;
	}
	.section-buy .buy-box .txtBox ul.list {
	  margin-bottom: 20px;
	}
	.section-buy .buy-box .ttl span.functional {
	  margin-left: 0;
	}
	.section-buy .buy-box .subttl {
	  font-size: 15px;
	  margin-bottom: 10px;
	}
}

.button,
a.button,
button.button {
  font-size: 0.78rem;
  font-weight: 700;
/*  line-height: 2.3;*/
  line-height: 5;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: left;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #222;
  border-radius: 8px;
  height: 60px;
  position: relative;
}
.btn-buy-wrap {
  display: inline-block;
  margin-top: 10px;
  padding: 0.5rem;
  border-radius: 8px;
  background: #f2f5f6;
  background: -webkit-linear-gradient(
    to top,
    #f2f5f6 0%,
    #e3eaed 37%,
    #96a1a5 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f2f5f6),
    color-stop(37%, #e3eaed),
    to(#96a1a5)
  );
  background: -webkit-linear-gradient(
    top,
    #f2f5f6 0%,
    #e3eaed 37%,
    #96a1a5 100%
  );
  background: linear-gradient(to bottom, #f2f5f6 0%, #e3eaed 37%, #96a1a5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f5f6', endColorstr='#96a1a5', GradientType=0);
  width: 78.5%;
  border: solid 1px #ddd;
}

a.btn-buy,a.btn-buy-amazon,a.btn-buy-yahoo {
  border-radius: 5px;
  background: #e3eaed;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#e3eaed),
    to(#f2f5f6)
  );
  background: -webkit-linear-gradient(top, #e3eaed 0%, #fff 100%);
  background: linear-gradient(to bottom, #e3eaed 0%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3eaed', endColorstr='#fff', GradientType=0);
/*  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3eaed', endColorstr='#f2f5f6', GradientType=0);*/
  width: 100%;
}

a.btn-buy:hover,
a.btn-buy-amazon:hover,
a.btn-buy-yahoo:hover {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

a.btn-buy:before,a.btn-buy-amazon:before,a.btn-buy-yahoo:before {
  content: '';
  display: block;
}
a.btn-buy:after {
  position: absolute;
  content: '';
  top: 31%;
  right: 14%;
  display: block;
  width: 23%;
  height: 50px;
  background-image: url(../../../../prmo/common/img/logo_rakuten.png);
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn-buy-amazon:after {
  position: absolute;
  content: '';
  top: 29%;
  right: 10%;
  display: block;
  width: 30%;
  height: 50px;
  background-image: url(../../../../prmo/common/img/logo_amazon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn-buy-yahoo:after {
  position: absolute;
  content: '';
  top: 19%;
  right: 12%;
  display: block;
  width: 24%;
  height: 50px;
  background-image: url(../../../../prmo/common/img/logo_yahoo.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
	.button,
	a.button,
	button.button {
	  font-size: 0.8rem;
	  line-height: 4.6;
	  padding-left: 15px;
	  letter-spacing: 0.01em;
	}
	a.btn-buy:after {
	  top: 32%;
	  right: 9%;
	  width: 25%;
	}
	a.btn-buy-amazon:after {
	  top: 27%;
	  right: 5%;
	  width: 32%;
	}
	a.btn-buy-yahoo:after {
	  top: 23%;
	  right: 8%;
	  width: 26%;
	}
	.btn-buy-wrap {
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION PRESENT
 * ----------------------------------------------- */
#present {
  padding-top: 100px;
  margin-top: -100px;
}
.section-present {
  background: #fef367;
  text-align: center;
  padding: 40px 0 100px;
}
.section-present .present-ttl {
  position: relative;
  text-align: center;
}
.section-present .present-ttl h2 {
  font-size: 40px;
  letter-spacing: -0.02em;
  border-bottom: solid 4px #000;
  display: inline-block;
  margin-bottom: 20px;
}
.section-present .present-ttl h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
.section-present .present-ttl .img1 {
  position: absolute;
  top: -20%;
  left: 4%;
}
.section-present .present-ttl .ttl1 {
  position: absolute;
  top: 47%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 46px;
}
.section-present .present-ttl .ttl2 {
  position: absolute;
  top: 63%;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 60px;
  letter-spacing: -0.09em;
  border-top: solid 4px #000;
  border-bottom: solid 4px #000;
  padding: 5px 0;
  width: 70%;
}
.section-present .present-ttl .ttl2 span {
  font-size: 50px;
}
.section-present ul {
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  margin-top: 30px;
}
.section-present ul.box {
  display: flex;
  padding: 0;
  margin-top: 0;
}
.section-present ul li.ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: solid 3px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.section-present ul li.txt {
  font-size: 15px;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 50px;
}
.section-present ul li.txt.package {
  margin-bottom: 20px;
}
.section-present ul li.txt.mg {
  margin-bottom: 30px;
}
.section-present ul li.fukidashi {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding: 40px 40px 40px;
  max-width: 100%;
  background: #fef367;
  font-size: 16px;
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 10px;
  margin: 0 30px 50px 0;
}
.section-present ul li.fukidashi::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 100%;
  margin-top: -15px;
  border: 10px solid transparent;
  border-left: 15px solid #fef367;
}

@media only screen and (max-width: 767px) {
	.section-present {
	  padding-bottom: 60px;
	}
	.section-present .present-ttl .ttlbg {
	  margin-top: -10%;
	}
	.section-present .present-ttl .img1 {
	  top: -230px;
	  right: 0;
	  left: 0;
	}
	.section-present .present-ttl .img1 img {
	  width: 38%;
	}
	.section-present .present-ttl .img2 {
	  top: -27%;
	  right: 5%;
	}
	.section-present .present-ttl .img2 img {
	  width: 45%;
	  margin-right: -60%;
	}
	.section-present .present-ttl .ttl1 {
	  top: 25%;
	  font-size: 1.6em;
	  margin: 0 5%;
	}
	.section-present .present-ttl .ttl2 {
	  top: 43%;
	  font-size: 2.5em;
	  line-height: 1.1;
	  padding: 10px 0;
	  width: 90%;
	}
	.section-present .present-ttl .ttl2 span {
	  font-size: 0.85em;
	}
	.section-present .present-ttl img {
	  width: 90%;
	}
	.section-present .present-ttl h3 {
	  font-size: 16px;
	  line-height: 1.6;
	  margin-bottom: 20px;
	}
	.section-present ul {
	  margin: 0;
	  padding: 8% 5%;
	}
	.section-present ul li.ttl {
	  font-size: 1.3em;
	  line-height: 1.3;
	  padding-bottom: 12px;
	}
	.section-present ul li.txt {
	  font-size: 14px;
	  text-align: left;
	  line-height: 1.6;
	  margin-bottom: 50px;
	}
	.section-present ul li.img {
	  margin: -20px 0 50px;
	}
	.section-present ul li.img img {
	  width: 100%;
	}
	.section-present ul li.contact {
	  font-size: 18px;
	}
	.section-present ul li.fukidashi {
	  padding: 25px 0 25px;
	  line-height: 1.2;
	  margin: 0 0 40px 0;
	  width: 100%;
	}
	.section-present ul li.fukidashi::before {
	  top: 112%;
	  left: 50%;
	  margin-left: -15px;
	  border: 15px solid transparent;
	  border-top: 20px solid #fef367;
	}
	.section-present .present-ttl h2 {
	  font-size: 28px;
	  letter-spacing: -0.07em;
	}
	.section-present ul.box {
	  flex-wrap: wrap;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* SECTION SPEC
 * ----------------------------------------------- */
#spec {
  padding-top: 70px;
  margin-top: -70px;
}
.section-spec {
  text-align: center;
  padding-bottom: 120px;
}
.section-spec .spec-ttl {
  text-align: center;
  margin-top: 60px;
}
.section-spec .spec-ttl h2 {
  font-size: 40px;
  border-bottom: solid 4px #fcea00;
  padding-bottom: 10px;
  margin: 0 auto;
}
.section-spec ul {
  text-align: left;
  margin-top: 40px;
}
.section-spec ul li.ttl {
  font-size: 18px;
  font-weight: bold;
  border-bottom: dotted 1px #333;
  padding-bottom: 13px;
  margin-bottom: 25px;
}
.section-spec ul li.ttl span {
  font-size: 13px;
}
.section-spec ul li.txt {
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-bottom: 50px;
}
.section-spec ul li.txt span {
  font-weight: bold;
}
.section-spec ul li.txt span.registered {
  display: inline-block;
  vertical-align: sub;
}
.section-spec ul li.txt span.fts {
  font-size: 12px;
  font-weight: normal;
}
.section-spec ul li.attention {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 25px;
  border: solid 3px #fcea00;
  margin: 10px 0 30px;
}
.section-spec ul a:link,
.section-spec ul a:hover,
.section-spec ul a:visited {
  display: block;
  color: #b48217;
  font-weight: 600;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
	.section-spec {
	  padding-bottom: 60px;
	}
	.section-spec .spec-ttl {
	  margin-top: 40px;
	}
	.section-spec .spec-ttl h2 {
	  font-size: 2.2em;
	  padding: 10px 0;
	}
	.section-spec ul {
	  margin: 0;
	  padding: 8% 0;
	  border-radius: 15px;
	}
	.section-spec ul li.ttl {
	  font-size: 1.3em;
	  padding-bottom: 10px;
	}
	.section-spec ul li.ttl span {
	  font-size: 0.65em;
	}
	.section-spec ul li.txt {
	  line-height: 1.6;
	  margin-bottom: 30px;
	}
	.section-spec ul li.attention {
	  font-size: 18px;
	  line-height: 1.4;
	}
}


/* ----------------------------------------------- */
/* WRAPPER
 * ----------------------------------------------- */
.wrap {
    max-width: 880px;
    margin: 0 auto;
}
.wrap980 {
    max-width: 980px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .wrap,
    .wrap980 {
        padding: 0 4%;
    }
    .wrap {
      width: 100%;
    }
}


/* ----------------------------------------------- */
/* OTHER
 * ----------------------------------------------- */
.letro {
  margin-top: 70px;
}
.letro img {
  padding-bottom: 15px;
}

/* .gototop {
  position: fixed;
  z-index: 9999;
  right: -2.2%;
  bottom: 0;
  cursor: pointer;
}
.gototop img {
  margin: auto;
  width: 80%;
  height: auto;
} */

/* PC/SP switch */
.md {
  display:block;
}
.md-cart {
    display: block;
    padding-bottom: 5px;
}
.sm {
  display:none;
}

@media screen and (max-width: 768px) {
	.md {
	  display:none;
	}
    .md-cart {
        display: none;
    }
	.sm {
	  display:block;
	}
}


/* Btn_Pagetop */
.gototop {
    position: fixed;
    width: 220px;
    z-index: 9999;
    bottom: 5px;
    right: 118px;
}

.gototop img {
  margin: auto;
}
.gototop a:hover {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
  .gototop {
    display: flex;
    flex-direction: row-reverse;
    right: 0;
    width: 100%;
    text-align: center;
  }
  .gototop img {
    width: 96%;
  }
}

@media only screen and (max-width: 767px) {
	  .gototop {
	      right: 0;
	      width: 100%;
	      text-align: center;
	  }
	  .gototop img {
	      width: 94%;
	      height: auto;
	  }
}

/* Font Size
 * ----------------------------------------------- */
.fts34 {
    font-size: 34px;
}
.fts44 {
    font-size: 44px;
}
.fts46 {
    font-size: 46px;
}
.fts50 {
    font-size: 50px;
}
.fts54 {
    font-size: 54px;
}
.fts54bk {
    font-size: 54px;
    color: #000;
}
.fts56 {
    font-size: 56px;
}
.fts56rd {
    font-size: 56px;
    color: #ee6022;
}
.fts60 {
    font-size: 60px;
}
.fts60.border {
    background: linear-gradient(transparent 50%, #ece3d9 50%);
}
.fts80 {
    font-size: 80px;
    color: #ee6022;
}
.fts80bk {
    font-size: 80px;
}

@media only screen and (max-width: 767px) {
	.fts34 {
	    font-size: 24px;
	}
	.fts44 {
	    font-size: 24px;
	}
	.fts46 {
	    font-size: 34px;
	    letter-spacing: 0.001em;
	    line-height: 1.8;
	}
	.fts54 {
	    font-size: 40px;
	    color: #ee6022;
	}
	.fts54bk {
	    font-size: 40px;
	}
	.fts56 {
	    font-size: 40px;
	}
	.fts56rd {
	    font-size: 40px;
	    color: #ee6022;
	}
	.fts60 {
	    font-size: 36px;
	}
	.fts80 {
	    font-size: 60px;
	    color: #ee6022;
	}
	.fts80bk {
	    font-size: 60px;
	}
}


/* Font color
 * ----------------------------------------------- */
.or {
  color: #ee6022;
}


/* BUTTON
 * ----------------------------------------------- */
.buy-button {
  margin: 20px 0 30px;
  display: inline-block;
}
.btn01 {
  display: block;
  background: #ee6022;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 16px 0 25px;
  border-radius: 0.3em;
  width: 380px;
  text-align: center;
}
.btn01:hover {
  background: #333;
  transition: 0.4s;
}
.btn01:before {
  content: url(../img/icn_cart_wt.png);
  margin-right: 10px;
}
.btn01:after {
  content: "⇀";
  font-size: 26px;
  margin-left: 15px;
}

@media only screen and (max-width: 767px) {
	.buy-button {
	  width: 85%;
	}
	.btn01 {
	  font-size: 20px;
	  letter-spacing: 0.2em;
	  width: 100%;
	}
}

.anchor {
  padding-top: 60px;
}
.anchor-inner {
  padding-top: 120px;
  margin-top: -120px;
}

/* ----------------------------------------------- */
/* buyBox
 * ----------------------------------------------- */

.buyBox {
  display: flex;
  margin-bottom: 80px;
}
.buyBox ul {
  border: solid 1px #1c2a7f;
  text-align: center;
  width: 440px;
  padding-bottom: 40px;
}
.buyBox ul:last-child {
  border-left: none;
}
.buyBox ul .day15,
.buyBox ul .day31 {
  line-height: 1.9;
  height: 80px;
  border-bottom: solid 1px #1c2a7f;
  font-size: 20px;
  font-weight: bold;
}
.buyBox ul .day31 {
  background: #1c2a7f;
  color: #fff;
}
.buyBox ul .day15 span,
.buyBox ul .day31 span {
  font-size: 40px;
}
.buyBox img {
  padding: 25px 30px 0;
  width: 70%;
}
.buyBox li.fee {
  padding-top: 5px;
  font-weight: bold;
}
.buyBox li.fee .kakaku {
  font-size: 36px;
}

@media only screen and (max-width: 767px) {
	.buyBox {
	  flex-wrap: wrap;
	}
	.buyBox img {
	  width: 65%;
	}
	.buyBox ul {
	  width: 100%;
	}
	.buyBox ul:last-child {
	  border: solid 1px #1c2a7f;
	}
	.buyBox ul .day15 span,
	.buyBox ul .day31 span {
	  font-size: 36px;
	}
	.buyBox img {
	  padding: 25px 30px 0;
	  width: 70%;
	}
	.buyBox li.fee {
	  padding-top: 5px;
	  font-weight: bold;
	}
	.buyBox li.fee .kakaku {
	  font-size: 36px;
	}
}


/* ----------------------------------------------- */
/* buyBox2
 * ----------------------------------------------- */

.buyBox2 {
  display: flex;
}
.buyBox2 ul {
  border-left: solid 1px #bbb;
  text-align: center;
  width: 440px;
}
.buyBox2 ul:last-child {
  border-right: solid 1px #bbb;
}
.buyBox2 li.ttl {
  font-size: 18px;
  font-weight: bold;
  border: solid 1px #000;
  padding: 5px 0 8px;
  margin: 0 auto;
  width: 230px;
}
.buyBox2 img {
  padding: 25px 30px 0;
  width: 70%;
}
.buyBox2 li.fee {
  padding-top: 5px;
  font-weight: bold;
}
.buyBox2 li.fee .kakaku {
  font-size: 36px;
}

@media only screen and (max-width: 767px) {
	.buyBox2 {
	  flex-wrap: wrap;
	}
	.buyBox2 ul {
	  margin-top: 50px;
	}
	.buyBox2 ul:first-child {
	  margin-top: 0;
	}
	.buyBox2 ul {
	  border-left: solid 1px #bbb;
	  border-right: solid 1px #bbb;
	  width: 100%;
	}
	.buyBox2 li.ttl {
	  font-size: 18px;
	  font-weight: bold;
	  border: solid 1px #000;
	  padding: 5px 0 8px;
	  margin: 0 auto;
	  width: 230px;
	}
	.buyBox2 img {
	  padding: 25px 30px 0;
	  width: 70%;
	}
	.buyBox2 li.fee {
	  padding-top: 5px;
	  font-weight: bold;
	}
	.buyBox2 li.fee .kakaku {
	  font-size: 36px;
	}

}
