@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;
}
.sm.height {
  line-height: 0.03;
}

@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 {
  z-index: 9999;
}
.header-site .logo {
  display: flex;
}
.header-site .logo img {
  width: 180px;
  margin-top: 10px;
}
.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: 20px;
}
.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: 180px;
	}
	.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 {
    position: relative;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding-bottom: 15px;
    opacity: .9;
  }
  .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: 20px;
  }
  .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: 20px 45px 18px 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 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 {
  position: absolute;
  top: 20%;
  left: 46%;
  width: 8%;
}
.section-keyvisual .main .parts2 {
  position: absolute;
  top: -7%;
  left: 39%;
  width: 22%;
  z-index: 9999;
}

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


/* PAGES
 * ----------------------------------------------- */
/* SECTION About
 * ----------------------------------------------- */
.section-about {
  background: url(../img/concept-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 100px;
  height: 1780px;
}
.section-about h2 {
  color: #444;
  font-size: 60px;
  margin-bottom: 50px;
}
.section-about h2 span {
  display: block;
  font-size: 18px;
  font-family: "source-han-sans-japanese", sans-serif;
  padding-top: 15px;
}
.section-about h2,
.section-about h3 {
  letter-spacing: -0.01em;
  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;
  font-size: 40px;
  letter-spacing: -0.07em;
  margin-bottom: 40px;
}
.section-about h4 {
  font-size: 18px;
  line-height: 2.2;
}
.section-about .models {
  position: relative;
  margin: 60px 0;
  height: 760px;
}
.section-about .models img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-about .models .img1 {
  position: absolute;
  top: 5%;
  left: 0;
  width: 656px;
  z-index: 90;
}
.section-about .models .img2 {
  position: absolute;
  top: 30%;
  right: 0;
  width: 560px;
}
.section-about .models .img3 {
  position: absolute;
  top: 64%;
  left: 8%;
  width: 416px;
}

@media only screen and (max-width: 767px) {
	.section-about {
  	  background: url(../img/concept-bg.jpg) no-repeat;
	  background-size: auto;
	  padding: 80px 0 100px;
	}
	.section-about h2 {
	  font-size: 50px;
	}
	.section-about h3 {
	  font-size: 32px;
	  line-height: 1.4;
	}
	.section-about h4 {
	  font-size: 18px;
	  line-height: 2.2;
	}
	.section-about .models .img1 {
	  top: 0;
	  width: 96%;
	}
	.section-about .models .img2 {
	  top: 40%;
	  width: 80%;
	}
	.section-about .models .img3 {
	  top: 73%;
	  left: 3%;
	  width: 84%;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* SECTION Products
 * ----------------------------------------------- */
.section-products {
  background: url(../img/products-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 140px;
}
.section-products h2 {
  color: #444;
  font-size: 60px;
  letter-spacing: -0.01em;
  margin-bottom: 50px;
}
.section-products h2 span {
  display: block;
  font-size: 18px;
  font-family: "source-han-sans-japanese", sans-serif;
  padding-top: 15px;
}
.section-products .products {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-products .products .products-box {
  width: 48%;
}
.section-products .products .products-box .imgBox {
  cursor: pointer;
  margin-inline: auto;
  margin-top: 20px;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 8.6 / 9;
}
.section-products .products .products-box .imgBox img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}
.section-products .products .products-box .imgBox img:last-of-type {
  opacity: 0;
  transition: opacity .7s;
}
.section-products .products .products-box .imgBox:hover img {
  opacity: 1;
}
.section-products .products .products-box ul {
  text-align: left;
}
.section-products .products .products-box .ttl {
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 15px;
}
.section-products .products .products-box .txt {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.section-products .products .products-box .point {
  border-bottom: dotted 1px #666;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.section-products .products .products-box .point ul {
  font-size: 11px;
  line-height: 1.4;
  display: flex;
  width: 100%;
}
.section-products .products .products-box .point li {
  background: #fff;
  text-align: center;
  border: solid 1px #666;
  border-radius: 5px;
  padding: 12px 0;
  margin-right: 5px;
  width: 28%;
}
.section-products .products .products-box .btn .btn-detail {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 100px;
  text-align: center;
  padding: 15px;
  width: 280px;
  transition: .6s;
  position: relative;
}
.section-products .products .products-box .btn .btn-detail:hover {
  background: #f8e600;
  color: #000;
  transition: .6s;
}
.section-products .products .products-box .btn .btn-detail.pk:hover {
  background: #fe4aa3;
  color: #fff;
}
.section-products .products .products-box .btn .btn-detail::after {
  position: absolute;
  content: '→';
  top: 15px;
  right: 35px;
}

@media only screen and (max-width: 767px) {
	.section-products {
	  margin-top: 200px;
	}
	.section-products h2 {
	  font-size: 50px;
	}
	.section-products .products .products-box {
	  width: 100%;
	}
	.section-products .products .products-box ul {
	  text-align: center;
	}
	.section-products .products .products-box ul.sec {
	  margin-top: 100px;
	}
	.section-products .products .products-box .ttl {
	  font-size: 26px;
	}
	.section-products .products .products-box .point ul {
	  font-size: 11px;
	  justify-content: space-between;
	}
	.section-products .products .products-box .point li {
	  margin-right: 0;
	  width: 32.3%;
	  align-content: center;
	}
}

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

.section-gmp {
  background: url(../thebrightone/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(../thebrightone/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(../thebrightone/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(../thebrightone/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(../thebrightone/img/metabolic_bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0 120px;
  text-align: center;
}
.section-metabolic .box {
  background: url(../thebrightone/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(../thebrightone/img/metabolic_bg.jpg) no-repeat;
	  background-size: cover;
	  padding: 60px 0 120px;
	  text-align: center;
	}
	.section-metabolic .box {
	  background: url(../thebrightone/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;
	}
}

.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%;
	}
}

/* ----------------------------------------------- */
/* 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%;
    }
}

/* 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;
}

