@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;
}

/* GENERAL
 * ----------------------------------------------- */
body {
  color: #333;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400; /* 400/700/900 */
  font-size: 16px;
  font-feature-settings: 'palt';
  line-height: 1.8;
  letter-spacing: 0.07em;
  -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-han-sans {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;　/*500/700/900*/
  font-style: normal;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
}
.ft-han-serif {
  font-family: "source-han-serif-jp-subset", sans-serif;
  font-weight: 600; /*700*/
  font-style: normal;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
}
.ft-futara {
  font-family: "futura-pt", sans-serif;
  font-weight: 400; /*500*/
  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;
  }
}



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

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


/* 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: 133px;
}
.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: 17px;
}
.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: 130px;
	}
	.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: 6px;
	}
	.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: 70px;
    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 {
  }
  .header-site .ul-menu > li {
    margin-left: 40px;
    height: 30px;
    position: relative;
  }
  .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: 14px;
    font-weight: bold;
    cursor: pointer;
  }
  .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: 105%;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    min-width: 320px;
    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: 17px 20px 20px 40px;
  }
  .header-site .ul-menu .mega-menu ul > li:last-child {
    border-bottom: none;
  }
  .header-site .ul-menu .mega-menu ul a {
    -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 a:hover {
    color: #fefb01;
  }
}

.navigation .ul-menu li.topic::before {
  content: "";
  position: absolute;
}
.navigation .ul-menu li.topic.active::after {
  display: block;
  content: '';
  border-bottom: solid 4px #d00000;
  padding-bottom: 3px;
}

@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 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 li.topic.active::after {
    border-bottom: none;
    padding-bottom: 0;
  }
  .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);
  }
}


/* COMMON FOOTER
 * ----------------------------------------------- */
.footer-site {
  font-family: "source-han-sans-japanese", sans-serif;
  background: #f8f9fa;
  padding: 56px 0 26px;
}
.footer-site a:link,
.footer-site a:visited,
.footer-site a:hover,
.footer-site a:active {
  color: #000;
}
.footer-site .footer-nav {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer-site .footer-logo img {
  margin: 0 auto;
  width: 26%;
}
.footer-anchor {
  background: #8d9aa0;
  padding: 23px 0;
}
.footer-anchor a {
  color: #fff;
}
.footer-site {
  background: #000;
  padding: 70px 0 0;
}
.footer-site .footerBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.footer-site .footerBox .footer-logo {
  width: 17%;
}
.footer-site .footerBox .footer-logo img {
  width: 100%;
}
.footer-site .footer-nav {
  font-size: 14px;
}
.footer-site .footer-nav ul {
  margin-left: 80px;
}
.footer-site .footer-nav .ttl {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-site .footer-nav .ttl a:link,
.footer-site .footer-nav .ttl a:visited,
.footer-site .footer-nav .ttl a:hover,
.footer-site .footer-nav .ttl a:active {
 color: #fff;
}
.footer-site .footer-nav .txt {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-site .footer-nav .txt a:link,
.footer-site .footer-nav .txt a:visited,
.footer-site .footer-nav .txt a:hover,
.footer-site .footer-nav .txt a:active {
  color: #bbb;
}
.footer-site .footer-nav .txt::before {
  content: '-';
  padding-right: 5px;
}
.footer-site .footBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
  border-top: solid 1px #bbb;
  padding: 30px 0 25px;
}
.footer-site .footBox .wrapper.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-site .footBox .foot-nav {
  display: flex;
  color: #8dc33e;
  font-size: 12px;
  margin-left: -20%;
}
.footer-site .footBox .foot-nav a:link,
.footer-site .footBox .foot-nav a:visited,
.footer-site .footBox .foot-nav a:hover,
.footer-site .footBox .foot-nav a:active {
  color: #8dc33e;
}
.footer-site .footBox .foot-nav .txt {
  margin-right: 40px;
}
.footer-site .footBox .foot-nav .txt::before {
  content: '▸';
}
.footer-site .footBox .copyright {
  font-size: 13px;
}
.footer-anchor .ul-anchor {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
   -ms-flex-wrap: wrap;
   -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
  justify-content: center;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: normal;
}
.footer-anchor .ul-anchor li {
  margin: 0 40px;
}
.footer-anchor.detail .ul-anchor {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
}
.footer-anchor.detail .ul-anchor li {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .footer-site {
      padding: 40px 0 60px;
  }
  .footer-site .footer-nav {
      margin: 0 0 30px;
      font-size: 14px;
  }
  .footer-site .footer-nav > li {
      font-style: normal;
      padding: 0 10px;
  }
  .footer-site .footer-nav > li:first-child {
      padding-left: 0;
  }
  .footer-site .footer-nav > li:last-child {
      padding-right: 0;
  }
  .footer-site .footer-logo {
      margin: 0 auto 20px;
  }
  .footer-anchor {
      padding: 25px 0 40px;
  }
  .footer-anchor .wrapper {
      padding: 0;
  }
  .footer-anchor .ul-anchor li {
      font-size: 16px;
  }
  .footer-anchor .ul-anchor > li {
      border-bottom: 1px solid #fff;
  }
  .footer-anchor .ul-anchor a {
      display: block;
      position: relative;
      padding: 10px 40px 10px 30px;
  }
  .footer-anchor .ul-anchor a:after {
      background: url(../img/icn_bullet01.png) no-repeat 0 0;
      background-size: 100% 100%;
      content: "";
      width: 9px;
      height: 13px;
      margin-top: -6px;
      position: absolute;
      top: 50%;
      right: 27px;
  }
	.footer-site .footer-logo img {
	  width: 60%;
	}
	.footer-site .footerBox {
	  padding-bottom: 40px;
	}
	.footer-site .footerBox .footer-logo {
	  width: 50%;
	}
	.footer-site .footer-nav {
	  width: 100%;
	}
	.footer-site .footer-nav ul {
	  text-align: center;
	  width: 100%;
	  margin: 30px 0 0 0;
	}
	.footer-site .footer-nav .ttl {
	  font-size: 20px;
	}
	.footer-site .footer-nav .txt {
	  font-size: 15px;
	}
	.footer-site .footBox {
	  text-align: center;
	}
	.footer-site .footBox .foot-logo {
	  margin-bottom: 30px;
	}
	.footer-site .footBox .foot-nav {
	  flex-wrap: wrap;
	  margin-left: 0;
	  width: 100%;
	}
	.footer-site .footBox .copyright {
	  margin-top: 40px;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* SECTION KEYVISUAL
 * ----------------------------------------------- */
.section-keyvisual {
  position: relative;
  background: #000;
  margin-top: 70px;
}
.section-keyvisual img {
  display: block;
  height: auto;
  width: 100%;
}
.section-keyvisual .main {
  position: relative;
  background: #000;
}
.section-keyvisual .main .parts1 {
  width: 58%;
  position: absolute;
  top: 2%;
  left: 5%;
}
.section-keyvisual .main .parts2 {
  width: 46%;
  position: absolute;
  top: 21%;
  left: 10.5%;
}
.section-keyvisual .main .parts3 {
  width: 32%;
  position: absolute;
  top: 32%;
  left: 7%;
}
.remarks {
  font-size: 13px;
  line-height: 1.6;
  text-indent: -1.8em;
  padding-left: 1.8em;
}

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


/* TOP PAGES
 * ----------------------------------------------- */
/* SECTION About
 * ----------------------------------------------- */
.section-about {
  background: #000;
  color: #fff;
  padding: 100px 0 120px;
}
.section-about .about-ttl {
  text-align: center;
}
.section-about .about-ttl h2 {
  font-size: 16px;
  font-weight: bold;
}
.section-about .about-ttl h2::before {
  content: '◆';
  color: #d20000;
  padding-right: 5px;
}
.section-about .about-ttl h3 {
  position: relative;
  display: inline-block;
  font-size: 80px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: -20px 0 35px;
}
.section-about .about-ttl h3::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 4px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #d20000;
}
.section-about .aboutBox {
  text-align: center;
  width: 100%;
  padding-bottom: 140px;
}
.section-about .aboutBox .txtBox h4 {
  font-size: 36px;
  font-weight: bold;
}
.section-about .aboutBox .txtBox p {
  font-size: 17px;
  line-height: 1.8;
  margin: 30px 0 50px;
}
.section-about .aboutBox .txtBox h5 {
  color: #eaca58;
  font-size: 54px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.section-about .aboutBox .txtBox h5 span {
  font-size: 40px;
}
.section-about .imgBox2 {
  margin-top: -70px;
  width: 100%;
}
.section-about .imgBox2 img {
  width: 100%;
}
.section-about .longseller {
  background: url(../img/imgBox3_bg.jpg) no-repeat top center;
  background-size: cover;
  text-align: center;
  padding: 80px 0 0;
  width: 100%;
}
.section-about .longseller .img {
  width: 54%;
  margin: 0 auto;
}
.section-about .longseller .logo {
  width: 36%;
  margin: 15px 0 40px;
}
.section-about .longseller .lineup {
  width: 70%;
}
.section-about .longseller .img img,
.section-about .longseller .logo img,
.section-about .longseller .lineup img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
	.section-about {
	  padding: 80px 0 100px;
	}
	.section-about .about-ttl h3 {
	  font-size: 68px;
	  margin: -20px 0 35px -15px;
	}
	.section-about .aboutBox .txtBox h5 {
	  font-size: 46px;
	  line-height: 1.2;
	}
	.section-about .aboutBox .txtBox h5 span {
	  display: inline-block;
	  font-size: 30px;
	  line-height: 0;
	}
	.section-about .longseller {
	  padding: 80px 0 40px;
	}
	.section-about .longseller .img {
	  width: 96%;
	}
	.section-about .longseller .logo {
	  width: 80%;
	  margin: 15px 0 30px;
	}
	.section-about .longseller .lineup {
	  width: 96%;
	}
}


/* TOP PAGES
 * ----------------------------------------------- */
/* SECTION Ingredient
 * ----------------------------------------------- */

.section-ingredient {
  background: url(../img/common/ingredient_bg_top.jpg) no-repeat top center, #000;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 160px;
}
/*.section-ingredient {
  background: url(../img/common/ingredient_bg_top.jpg) no-repeat top center,
  url(../img/common/ingredient_bg.jpg) no-repeat bottom center, #000;
  background-size: cover;
  margin: 0 auto;
  padding: 80px 0 160px;
}*/
.section-ingredient {
  color: #fff;
  text-align: center;
  margin: 0 auto;
}
.section-ingredient .wrap {
  width: 880px;
}
.section-ingredient h2 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 
    black 1px 1px 10px, black -1px 1px 10px,
    black 1px -1px 10px, black -1px -1px 10px;
}
.section-ingredient h2 span {
  display: block;
  font-size: 30px;
}
.section-ingredient h2::before,
.section-ingredient h2::after {
  content: '';
  position: absolute;
  top: 70%;
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: #fff
}
.section-ingredient h2::before {
  left: 0;
}
.section-ingredient h2::after {
  right: 10px;
}
.section-ingredient p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
  text-shadow: 
    black 1px 1px 10px, black -1px 1px 10px,
    black 1px -1px 10px, black -1px -1px 10px;
  margin: 30px 0 50px;
}
.section-ingredient p span {
  color: #f6f300;
}
.section-ingredient .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-ingredient .flexbox ul {
  filter: drop-shadow(0 0 13px #fbea8f);
}
.section-ingredient .flexbox .txt {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-shadow: 
    black 1px 1px 10px, black -1px 1px 10px,
    black 1px -1px 10px, black -1px -1px 10px;
  margin: 20px 0 50px;
}

@media only screen and (max-width: 767px) {
	.section-ingredient {
	  padding: 80px 0;
	}
	.section-ingredient .wrap {
	  width: 100%;
	}
	.section-ingredient h2 {
	  padding: 0 4%;
	  font-size: 50px;
	  line-height: 1.3;
	}
	.section-ingredient h2::before,
	.section-ingredient h2::after {
	  top: 73%;
	  width: 50px;
	}
	.section-ingredient .flexbox ul {
	  width: 48%;
	}
	.section-ingredient .flexbox li.img {
	  width: 100%;
	}
	.section-ingredient .flexbox li.img img {
	  width: 100%;
	}
	.section-ingredient .flexbox .txt {
	  font-size: 18px;
	  margin: 20px 0 40px;
	}


}


/* TOP PAGES
 * ----------------------------------------------- */
/* SECTION Products
 * ----------------------------------------------- */

.section-products {
  background: url(../img/products_bg.jpg) no-repeat top center,
  url(../img/products_bg_bottom.jpg) no-repeat bottom center,#000;
  background-size: contain;
  margin: 0 auto;
  padding: 80px 0 160px;
}
.section-products {
  color: #fff;
  margin: 0 auto;
}
.section-products .products-ttl {
  text-align: center;
}
.section-products .products-ttl h2 {
  font-size: 16px;
  font-weight: bold;
}
.section-products .products-ttl h2::before {
  content: '◆';
  color: #d20000;
  padding-right: 5px;
}
.section-products .products-ttl h3 {
  position: relative;
  display: inline-block;
  font-size: 80px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: -20px 0 80px;
}
.section-products .products-ttl h3::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 4px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #d20000;
}
.section-products .menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-products .menu .menuBox {
  background: url(../img/menu_tsubu.jpg) no-repeat right,#fff;
  background-size: contain;
  border: solid 10px #fff;
  position: relative;
  color: #000;
  width: 48%;
  height: 200px;
}
.section-products .menu .menuBox.drink {
  background: url(../img/menu_drink.jpg) no-repeat right,#fff;
  background-size: contain;
}
.section-products .menu .menuBox::before {
  content: url(../img/corner_bk.png);
}
.section-products .menu .menuBox.drink::before {
  content: url(../img/corner_rd.png);
}
.section-products .menu .menuBox img {
  position: absolute;
  top: 10px;
  right: 10px;
}
.section-products .menu .menuBox p {
  position: absolute;
  top: 33%;
  left: 8%;
  font-size: 20px;
  line-height: 1.4;
  text-shadow: 
    white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px, white 1px -1px 2px, white -1px -1px 2px;
}
.section-products .menu .menuBox span.ftc-rd {
  color: #c10000;
}
.section-products .menu .menuBox span.fts32 {
  font-size: 32px;
}
.section-products .products {
  background: url(../img/products-bg.gif);
  padding: 50px;
  margin-top: 40px;
}
.section-products .products .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #000;
  text-align: center;
  width: 100%;
}
.section-products .products .box ul {
  margin-bottom: 40px;
}
.section-products .products .box ul.corner {
  position: relative;
  background: #fff;
  width: 48%;
  padding: 40px 40px 50px;
}
.section-products .products .box ul.corner::before {
  content: url(../img/products_corner_tsubu.png);
  position: absolute;
  top: 0;
  left: 0;
}
.section-products .products .box ul.corner.drink::before {
  content: url(../img/products_corner_eki.png);
  position: absolute;
  top: 0;
  left: 0;
}
.section-products .products .box .img {
  width: 65%;
  height: 300px;
  margin: 0 auto;
  margin-top: 40px;
}
.section-products .products .box .img.drink {
  width: 40%;
}
.section-products .products .box .img.drink img {
  margin-top: -23px;
}
.section-products .products .box .img img {
  width: 100%;
}
.section-products .products .box .ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
.section-products .products .box .ttl.drink {
  color: #c10000;
}
.section-products .products .box .name {
  font-size: 22px;
  font-weight: bold;
  border-top: solid 1px #000;
  padding-top: 20px;
  margin-bottom: 10px;
}
.section-products .products .box .volume {
  display: flex;
  border: solid 1px #000;
  border-radius: 80px;
  font-size: 13px;
  font-weight: bold;
  margin: 0 auto;
  width: 65%;
}
.section-products .products .box .volume.drink {
  width: 37%;
}
.section-products .products .box .volume .vol-ttl {
  color: #fff;
  background: #000;
  border-radius: 80px 0 0 80px;
  padding: 5px 15px;
}
.section-products .products .box .volume .vol-txt {
  padding: 5px 15px;
}
.section-products .products .box .price {
  color: #d20000;
  font-size: 16px;
  font-weight: bold;
  border-bottom: solid 1px #000;
  padding-bottom: 10px;
  margin: 0 0 20px;
}
.section-products .products .box .price span {
  font-family: "futura-pt", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding-right: 2px;
}
.section-products .products .box .point {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.section-products .products .box .point li {
  text-indent: -20px;
  padding-left: 20px;
  margin-bottom: 5px;
}
.section-products .products .box .point li::before {
  content: '◆';
  color: #d20000;
  padding-right: 5px;
}
.section-products .products .box .point li.remark {
  color: #666;
  font-size: 12px;
  margin-top: 7px;
}
.section-products .products .box .point li.remark::before {
  content: '';
}
.section-products .products .box .point li span.fts-10 {
  font-size: 10px;
}
.section-products .products .box .point li span.bg-yl {
  background: linear-gradient(transparent 40%, #fef501 40%);
}
.section-products .products .box .btn_detail {
  position: relative;
  display: inline-block;
  color: #fff;
  background: #a30000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px;
  padding: 18px 20px;
  width: 360px;
  margin-top: 5px;
  transition: 0.6s;
}
.section-products .products .box .btn_detail.drink {
  margin-top: 25px;
}
.section-products .products .box .btn_detail:hover {
  background: #000;
  transition: 0.6s;
}
.section-products .products .box .btn_detail::after {
  content: url(../img/btn_arrow_wt.png);
  position: absolute;
  top: 26%;
  right: 15%;
}

@media only screen and (max-width: 767px) {
	.section-products {
	  background: url(../img/products_bg.jpg) no-repeat top right,
	  url(../img/products_bg_bottom.jpg) no-repeat bottom center,#000;
	  background-size: 180%;
	}
	.section-products .products-ttl h3 {
	  font-size: 68px;
	  margin: -20px 0 80px -5px;
	}
	.section-products .menu .menuBox {
	  width: 100%;
	  height: 180px;
	  margin-bottom: 15px;
	}
	.section-products .menu .menuBox .img {
	  width: 66%;
	  padding: 3%;
	}
	.section-products .menu .menuBox .img img {
	  width: 100%;
	  padding: 3%;
	}
	.section-products .menu .menuBox img {
	  top: 0;
	  right: 0;
	}
	.section-products .products {
	  padding: 50px 4%;
	  margin-top: 40px;
	}
	.section-products .products .box ul.corner {
	  width: 100%;
	  padding: 40px 3%;
	}
	.section-products .products .box .img {
	  width: 80%;
	  height: auto;
	  margin-bottom: 30px;
	}
	.section-products .products .box .img.drink {
	  width: 40%;
	}
	.section-products .products .box .name {
	  padding-top: 20px;
	  margin-bottom: 10px;
	}
	.section-products .products .box .volume {
	  font-size: 15px;
	  width: 92%;
	}
	.section-products .products .box .price {
	  font-size: 16px;
	  font-weight: bold;
	  border-bottom: solid 1px #000;
	  padding-bottom: 10px;
	  margin: 0 0 20px;
	}
	.section-products .products .box .btn_detail {
	  padding: 18px 20px;
	  width: 90%;
	  margin-top: 5px;
	  transition: 0.6s;
	}
	.section-products .products .box .volume.drink {
	  width: 54%;
	}
	.section-products .products .box .ttl {
	  line-height: 1.3;
	}
	.section-products .products .box .price span {
	  font-size: 50px;
	  letter-spacing: -0.04em;
	}





}


/* TOP PAGES
 * ----------------------------------------------- */
/* SECTION Manufacture
 * ----------------------------------------------- */

.section-manufacture {
  background: #000;
  color: #fff;
  margin: 0 auto;
  padding: 80px 0 160px;
  overflow: hidden;
}
.section-manufacture .manu-ttl {
  text-align: center;
}
.section-manufacture .manu-ttl h2 {
  font-size: 16px;
  font-weight: bold;
}
.section-manufacture .manu-ttl h2::before {
  content: '◆';
  color: #d20000;
  padding-right: 5px;
}
.section-manufacture .manu-ttl h3 {
  position: relative;
  display: inline-block;
  font-size: 80px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: -20px 0 80px;
}
.section-manufacture .manu-ttl h3::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 4px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #d20000;
}
.section-manufacture .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-manufacture .box .txtBox {
  width: 45%;
  margin-top: 40px;
}
.section-manufacture .box .imgBox {
  width: 46.2%;
}
.section-manufacture .box .imgBox img {
  width: 100%;
}
.section-manufacture .box .txtBox .subttl {
  color: #777;
  font-size: 12px;
  font-weight: bold;
}
.section-manufacture .box .txtBox .ttl {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0 40px;
}
.section-manufacture .box .txtBox .ttl span {
  color: #e10707;
}
.section-manufacture .box .txtBox .txt {
  font-size: 16px;
}
.section-manufacture .box .about {
  position: relative;
  background: #333;
  color: #fff;
  padding: 30px;
  margin-top: 60px;
  width: 440px;
}
.section-manufacture .box .about .img {
  position: absolute;
  top: -40px;
  right: 40px;
}
.section-manufacture .box .about .subttl {
  color: #ece1a5;
  font-size: 18px;
  font-weight: bold;
  border-bottom: solid 1px #fff;
  padding-bottom: 25px;
}
.section-manufacture .box .about .txt {
  font-size: 13px;
  padding-top: 25px;
}

@media only screen and (max-width: 767px) {
	.section-manufacture .manu-ttl h3 {
	  font-size: 48px;
	  margin: 0 0 20px;
	}
	.section-manufacture .box .txtBox {
	  width: 100%;
	}
	.section-manufacture .box .imgBox {
	  width: 100%;
	  padding: 0;
	}
	.section-manufacture .box .about {
	  width: 100%;
	  margin-bottom: 40px;
	}
	.section-manufacture .box .about .subttl {
	  font-size: 20px;
	}
	.section-manufacture .box .about .txt {
	  font-size: 15px;
	}
	.section-manufacture .box .about .img {
	  right: -68%;
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION Recommend
 * ----------------------------------------------- */

.section-recommend {
  background: url(../img/common/recommend_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 80px 0 160px;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.section-recommend h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 50px;
  text-shadow:
   1px 1px 2px black, 3px 3px 6px black, 0 0 2em black, 0 0 1.2em black;
}
.section-recommend h2 span.ftc-rd {
  color: #ffd200;
  font-size: 46px;
}
.section-recommend h2 span.fts-s {
  font-size: 32px;
}
.section-recommend .recBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-recommend .recBox .box1,
.section-recommend .recBox .box2,
.section-recommend .recBox .box3 {
  position: relative;
  width: 31.4%;
}
.section-recommend .recBox .box1 img,
.section-recommend .recBox .box2 img,
.section-recommend .recBox .box3 img {
  width: 100%;
}
.section-recommend .recBox h3 {
  display: inline-block;
  color: #000;
  background: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
  padding: 12px 20px 20px 20px;
  width: 240px;
  height: 65px;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}
.section-recommend .recBox h3.long {
  width: 270px;
}
.section-recommend.gokutsubu .recBox h3 {
  width: 270px;
  height: 70px;
}
.section-recommend .recBox h3 span {
  color:#cc0000;
}
.section-recommend .recBox .box1 h3 {
  position: absolute;
  top: 86%;
  right: -3%;
}
.section-recommend .recBox .box1.onecol h3 {
  position: absolute;
  top: 86%;
  right: -3%;
  padding-top: 21px;
}
.section-recommend .recBox .box2 h3 {
  position: absolute;
  top: 86%;
  right: -3%;
}
.section-recommend .recBox .box3 h3 {
  position: absolute;
  top: 86%;
  right: -3%;
}
.section-recommend .arrow {
  position: absolute;
  bottom: -3%;
  left: 0;
  right: 0;
  z-index: 99;
}


@media only screen and (max-width: 767px) {
	.section-recommend {
	  background: url(../img/common/recommend_bg.jpg) repeat top;
	  background-size: auto;
	}
	.section-recommend h2 {
	  font-size: 28px;
	}
	.section-recommend h2 span.ftc-rd {
	  font-size: 40px;
	}
	.section-recommend h2 span.fts-s {
	  font-size: 28px;
	}
	.section-recommend .recBox .box1,
	.section-recommend .recBox .box2,
	.section-recommend .recBox .box3 {
	  width: 90%;
	}
	.section-recommend .recBox .box1,
	.section-recommend .recBox .box2 {
	  margin-bottom: 80px;
	}
	.section-recommend .recBox .box1,
	.section-recommend .recBox .box3 {
	  margin-right: auto;
	}
	.section-recommend .recBox .box2 {
	  margin-left: auto;
	}
	.section-recommend .arrow {
	  bottom: -1.2%;
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION Ingredient
 * ----------------------------------------------- */

.section-ingredient-up {
  background: url(../img/common/ingredient_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0 160px;
  position: relative;
  text-align: center;
  margin: 0 auto;
}
.section-ingredient-up h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}
.section-ingredient-up h2 span {
  color: #fff;
  font-size: 24px;
}
.section-ingredient-up h3 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.4;
  display: inline-block;
  background: linear-gradient(0deg, #fffff6 0%, #edc040 60%, #fffcab 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-ingredient-up.gokueki h3 {
  line-height: 1.2;
}
.section-ingredient-up h3 span.fts-s {
  font-size: 36px;
}
.section-ingredient-up h4 {
  font-size: 52px;
  font-weight: 900;
  line-height: .7;

  display: block;
  background: linear-gradient(0deg, #fffff6 0%, #edc040 60%, #fffcab 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 70px;
  margin-bottom: 58px;
}
.section-ingredient-up.gokueki h4 {
  letter-spacing: 0.05em;
  line-height: 1.2;
  height: auto;
  margin-bottom: 90px;
}
.section-ingredient-up h4 span.fts-l {
  font-size: 80px;
  letter-spacing: -0.1em;
  display: inline-block;
  margin-right: 10px;
}
.section-ingredient-up.gokueki h4 span.fts-l {
  letter-spacing: -0.04em;
}
.section-ingredient-up .longseller {
  width: 70%;
}
.section-ingredient-up .longseller img {
  width: 49.8%;
}
.section-ingredient-up .ingbox {
  position: relative;
}
.section-ingredient-up .ingbox .seibun1 {
  position: absolute;
  top: 0;
  left: 9%;
}
.section-ingredient-up.gokutsubu .ingbox .seibun1 {
  top: -10%;
  left: 15%;
}
.section-ingredient-up .ingbox .seibun2 {
  position: absolute;
  top: -9%;
  right: 25%;
}
.section-ingredient-up.gokutsubu .ingbox .seibun2 {
  top: -3%;
  right: 24%;
}
.section-ingredient-up .ingbox .seibun3 {
  position: absolute;
  top: 44%;
  right: 18%;
}
.section-ingredient-up.gokutsubu .ingbox .seibun3 {
  top: 35%;
  right: 18%;
}
.section-ingredient-up .ingbox .seibun4 {
  position: absolute;
  top: 36%;
  left: 0;
  right: 0;
  filter: drop-shadow(3px 3px 3px #444);
}
.section-ingredient-up.gokutsubu .ingbox .seibun5 {
  position: absolute;
  top: 45%;
  left: 17%;
}
.section-ingredient-up .ingbox .seibun4.eki {
  top: 34%;
}
.section-ingredient-up.drink .ingbox .seibun4.eki {
  top: 33%;
}
.section-ingredient-up.gokutsubu .ingbox .seibun4 {
  top: 45%;
}
.section-ingredient-up.gokueki .ingbox .seibun4 {
  top: 36%;
}

@media only screen and (max-width: 767px) {
	.section-ingredient-up {
	  background: url(../img/common/ingredient_bg_sp.jpg) no-repeat top #000;
	  background-size: contain;
	  padding: 60px 0;
	}
	.section-ingredient-up .longseller img {
	  width: 98%;
	}
	.section-ingredient-up h2 {
	  font-size: 26px;
	}
	.section-ingredient-up h2 span {
	  font-size: 22px;
	}
	.section-ingredient-up h3 {
	  font-size: 32px;
	  line-height: 1.1;
	}
	.section-ingredient-up h3 span.fts-s {
	  font-size: 26px;
	}
	.section-ingredient-up h4 {
	  font-size: 46px;
	  height: 70px;
	  margin-bottom: 0;
	}
	.section-ingredient-up.gokueki h4 {
	  margin-bottom: 20px;
	}
	.section-ingredient-up h4 span.fts-l {
	  font-size: 70px;
	}
	.section-ingredient-up .longseller {
	  width: 100%;
	}
	.section-ingredient-up .longseller img {
	  width: 98%;
	}
	.section-ingredient-up .ingbox .ingboxBg {
	  width: 100%;
	}
	.section-ingredient-up .ingbox .seibun1 {
	  top: -20%;
	  left: -32%;
	}
	.section-ingredient-up .ingbox .seibun2 {
	  top: 1%;
	  right: -28%;
	}
	.section-ingredient-up .ingbox .seibun3 {
	  top: 53%;
	  right: -22%;
	}
	.section-ingredient-up .ingbox .seibun4 {
	  top: 33%;
	}
	.section-ingredient-up .ingbox .seibun1 img {
	  width: 74%;
	}
	.section-ingredient-up .ingbox .seibun2 img {
	  width: 70%;
	}
	.section-ingredient-up .ingbox .seibun3 img {
	  width: 68%;
	}
	.section-ingredient-up.gokutsubu .ingbox .seibun4 {
	  top: 38%;
	}
	.section-ingredient-up.gokueki .ingbox .seibun4 {
	  top: 30%;
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION Kodawari
 * ----------------------------------------------- */

.section-kodawari {
  background: url(../img/common/kodawari_bg.jpg) center;
  background-size: auto;
  padding: 90px 0 120px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.section-kodawari h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  text-shadow:
   1px 1px 2px black, 3px 3px 6px black, 0 0 2em black, 0 0 1.2em black;
}
.section-kodawari h3 {
  color: #ffd200;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow:
   1px 1px 2px black, 3px 3px 6px black, 0 0 2em black, 0 0 1.2em black;
}
.section-kodawari h3 span {
  font-size: 36px;
}
.section-kodawari .kodawariBox {
  background: url(../img/back_pat.gif);
  box-shadow: 0 0 18px #333;
  padding: 10px 40px 70px;
  margin-top: 50px;
  width: 100%;
  border-top: 6px solid;
  border-image: linear-gradient(to right, #eee4ad, #956c25) 1;
}
.section-kodawari .kodawariBox .ttlBox {
  display: flex;
  font-size: 100px;
}
.section-kodawari .kodawariBox .ttlBox span {
  font-size: 70px;
  letter-spacing: 0;
}
.section-kodawari.gokutsubu .kodawariBox .ttlBox span {
  font-size: 54px;
}
.section-kodawari .kodawariBox .ttlBox .secttl {
  font-size: 80px;
  line-height: ;
}
.section-kodawari.drink .kodawariBox .ttlBox .secttl,
.section-kodawari.gokutsubu .kodawariBox .ttlBox .secttl {
  font-size: 72px;
}
.section-kodawari.gokueki .kodawariBox .ttlBox .secttl {
  font-size: 78px;
}
.section-kodawari .kodawariBox .ttlBox .imgBox {
  display: block;
  margin-top: -27px;
}
.section-kodawari .kodawariBox .seibun {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, #000 0%, #333 50%, rgba(0,0,0,0) 100%);
  border-left: solid 8px;
  border-image: linear-gradient(to bottom, #ae843c, #fddc57) 1;
  width: 100%;
  height: 180px;
  padding: 30px;
  margin-bottom: 50px;
}
.section-kodawari .kodawariBox .seibun.height {
  line-height: 2.7;
}
.section-kodawari .kodawariBox .seibun .img {
  position: absolute;
  top: -160px;
  right: 0;
}
.section-kodawari.gokutsubu .kodawariBox .seibun .img {
  top: -190px;
}
.section-kodawari .kodawariBox.drink .seibun .img {
  top: -100px;
  right: -5%;
}
.section-kodawari .kodawariBox.drink .seibun .img.drink-sec {
  top: -180px;
  right: -3%;
}
.section-kodawari.gokueki .kodawariBox.drink .seibun .img.drink-sec {
  top: -180px;
  right: -2%;
}
.section-kodawari.gokueki .kodawariBox .seibun .img.third {
  top: -200px;
  right: 0;
}
.section-kodawari.gokueki .kodawariBox .seibun .img.fourth {
  top: -200px;
  right: 0;
}
.section-kodawari .kodawariBox .seibun h4,
.section-kodawari .kodawariBox .seibun h5 {
  text-shadow:
    1px 1px 2px black,
    3px 3px 6px black,
    0 0 2em black,
    0 0 1.2em black;
  font-weight: 700;
}
.section-kodawari .kodawariBox .seibun h4 {
  position: absolute;
  top: 6%;
  left: 3%;
  font-size: 40px;
}
.section-kodawari.gokutsubu .kodawariBox .seibun h4 {
  top: 23%;
  left: 4%;
  font-size: 40px;
  line-height: 1;
}
.section-kodawari .kodawariBox.drink .seibun h4 {
  top: 21%;
  left: 3%;
  line-height: 1;
}
.section-kodawari .kodawariBox.drink .seibun h4 span.fts-s {
  font-size: 27px;
}
.section-kodawari .kodawariBox.drink .seibun h4.tongkat {
  line-height: 1.7;
}
.section-kodawari .kodawariBox .seibun h4 span.fts-l {
  font-size: 56px;
}
.section-kodawari .kodawariBox .seibun h4 span.fts-l.yl {
  color: #fffc01;
}
.section-kodawari .kodawariBox .seibun h4 span.remark {
  font-size: 14px;
}
.section-kodawari.gokutsubu .kodawariBox.adjust .seibun h4 {
  line-height: 1.3;
}
.section-kodawari.gokutsubu .kodawariBox.adjust .seibun h4.fts-ad {
  line-height: 1.1;
  top: 20%;
}
.section-kodawari.gokutsubu .kodawariBox.adjust .seibun h4.fts-ad span.fts-l {
  font-size: 52px;
}
.section-kodawari .kodawariBox .seibun h5 {
  position: absolute;
  top: 45%;
  left: 3%;
  font-size: 20px;
}
.section-kodawari .kodawariBox .seibun h5 span {
  color: #fffc01;
  font-size: 40px;
}
.section-kodawari .kodawariBox p.attention {
  font-size: 14px;
  margin: -46px 0 40px;
}
.section-kodawari .kodawariBox .flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
}
.section-kodawari .kodawariBox .flexBox .imgBox {
  width: 50%;
}
.section-kodawari.gokutsubu .kodawariBox .flexBox.gokutsubu .imgBox {
  width: 40%;
}
.section-kodawari .kodawariBox .flexBox .imgBox img {
  width: 100%;
}
.section-kodawari .kodawariBox .flexBox .txtBox {
  width: 47%;
}
.section-kodawari .kodawariBox .flexBox.gokutsubu .txtBox {
  width: 54%;
  margin-top: 30px;
}
.section-kodawari .kodawariBox .txtBox .ttl {
  color: #b29640;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
  border-bottom: solid 3px;
  border-image: linear-gradient(to right, #956c25, #eee4ad) 1;
  padding-bottom: 20px;

}
.section-kodawari .kodawariBox .txtBox .ttl span {
  font-size: 50px;
  letter-spacing: -0.01em;
}
.section-kodawari .kodawariBox .txtBox .txt {
  font-size: 18px;
  line-height: 1.8;
}
.section-kodawari .kodawariBox .txtBox .txt span {
  background: linear-gradient(transparent 40%, #fef501 40%);
}
.section-kodawari .kodawariBox .oneBox {
  width: 100%;
}
.section-kodawari .otherBox {
  margin-top: 60px;
}
.section-kodawari .otherBox h2 {
  background: linear-gradient(90deg, #333 0%, #000 50%, #333 100%);
  border-top: solid 6px;
  border-image: linear-gradient(to right, #eee4ad, #956c25) 1;
  width: 100%;
  padding: 50px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 13px #000);
  text-shadow: none;
}
.section-kodawari .otherBox h2 span.ftc {
  display: inline-block;
  font-size: 46px;
  font-weight: bold;
  background: linear-gradient(0deg, #fffcab 0%, #edc040 40%, #fffff6 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-kodawari .otherBox h2 span.fts-s {
  font-size: 38px;
}
.section-kodawari .otherBox .flexBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
.section-kodawari .otherBox .flexBox ul.imgbox {
  width: 31%;
}
.section-kodawari .otherBox .flexBox ul.imgbox img {
  width: 100%;
}
.section-kodawari .otherBox .flexBox ul.imgbox .ttl {
  position: relative;
  background: #fff;
  padding: 13px 0 15px 70px;
  filter: drop-shadow(0 0 6px #333);
}
.section-kodawari .otherBox .flexBox ul.imgbox .ttl::before {
  content: '';
  position: absolute;
  top: 36%;
  left: 10%;
  background: url(../img/common/kodawari_ico_plus.png);
  width: 30px;
  height: 30px;
}
.section-kodawari .otherBox .flexBox ul.imgbox .ttl span {
  display: inline-block;
  background: linear-gradient(0deg, #c49215 0%, #a17911 40%, #7d5a01 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  font-weight: 900;
}
.section-kodawari .otherBox .flexBox.other .txtbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-kodawari .otherBox .flexBox.other .txtbox::before {
  content:"";
  display: block;
  width:24%;
  order:1;
}
.section-kodawari .otherBox .flexBox.other .txtbox::after {
  content:"";
  display: block;
  width:24%;
}
.section-kodawari .otherBox .flexBox.other .ttl {
  position: relative;
  display: table;
  background: #fff;
  line-height: 1.1;
  padding: 17px 0 19px 56px;
  margin-bottom: 15px;
  width: 24%;
}
.section-kodawari .otherBox .flexBox.other .ttl::before {
  content: '';
  position: absolute;
  top: 27%;
  left: 8%;
  background: url(../img/common/kodawari_ico_plus.png);
  width: 30px;
  height: 30px;
}
.section-kodawari .otherBox .flexBox.other .ttl span {
  display: table-cell;
  vertical-align: middle;
  background: linear-gradient(0deg, #c49215 0%, #a17911 40%, #7d5a01 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 900;
}
.section-kodawari .otherBox .flexBox.other .ttl span.fts-s {
  font-size: 24px;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
	.section-kodawari {
	  background: url(../img/common/kodawari_bg.jpg) top;
	  background-size: auto;
	  padding: 90px 0;
	}
	.section-kodawari h2 {
	  font-size: 28px;
	}
	.section-kodawari h3 {
	  font-size: 42px;
	}
	.section-kodawari h3 span {
	  font-size: 32px;
	}
	.section-kodawari .kodawariBox {
	  padding: 20px 4% 70px;
	}
	.section-kodawari .kodawariBox .ttlBox {
	  font-size: 70px;
	}
	.section-kodawari .kodawariBox.drink .ttlBox {
	  flex-wrap: wrap;
	  line-height: 1.4;
	  margin-bottom: 30px;
	}
	.section-kodawari .kodawariBox.drink .ttlBox.mgB0 {
	  margin-bottom: 0;
	}
	.section-kodawari .kodawariBox .ttlBox .secttl {
	  font-size: 60px;
	  line-height: 1;
	  letter-spacing: 0;
	  margin-bottom: 25px;
	}
	.section-kodawari.gokutsubu .kodawariBox .ttlBox span {
	  font-size: 38px;
	}
	.section-kodawari.gokutsubu .kodawariBox .ttlBox .secttl {
	  font-size: 48px;
	  line-height: 1;
	  letter-spacing: 0;
	  margin: 20px 0 30px;
	}
	.section-kodawari .kodawariBox .ttlBox .imgBox {
	  margin-top: -12%;
	  width: 50%;
	}
	.section-kodawari .kodawariBox.drink .ttlBox .imgBox {
	  margin-top: -10%;
	}
	.section-kodawari .kodawariBox .ttlBox .imgBox img {
	  width: 100%;
	}
	.section-kodawari .kodawariBox .ttlBox span {
	  font-size: 50px;
	}
	.section-kodawari .kodawariBox.drink .ttlBox .secttl {
	  line-height: 1.1;
	  margin-top: 20px;
	}
	.section-kodawari .kodawariBox.drink .seibun .img.drink-sec {
	  top: 70px;
	  right: -15%;
	}
	.section-kodawari .kodawariBox.drink .seibun .img.drink-sec.third {
	  top: -34px;
	  right: -35%;
	}
	.section-kodawari.gokueki .kodawariBox.drink .seibun .img.drink-sec.third {
	  top: -70px;
	  width: 75%;
	}
	.section-kodawari.gokueki .kodawariBox .seibun .img.fourth {
	  top: -75px;
	  right: -35%;
	  width: 80%;
	}
	.section-kodawari .kodawariBox.drink .seibun h4 {
	  left: 6%;
	}
	.section-kodawari .kodawariBox.drink .seibun h4.tongkat {
	  line-height: 1.2;
	}
	.section-kodawari .kodawariBox.drink .seibun h4 span.fts-s {
	  font-size: 22px;
	}
	.section-kodawari .kodawariBox .seibun {
	  position: relative;
	  color: #fff;
	  background: linear-gradient(90deg, #000 0%, #333 50%, rgba(0,0,0,0) 100%);
	  border-left: solid 8px;
	  border-image: linear-gradient(to bottom, #ae843c, #fddc57) 1;
	  width: 100%;
	  height: 180px;
	  padding: 30px;
	  margin-bottom: 50px;
	}
	.section-kodawari .kodawariBox .seibun.height {
	  line-height: 2.7;
	}
	.section-kodawari .kodawariBox .seibun .img {
	  top: -38%;
	  right: -25%;
	  width: 85%;
	}
	.section-kodawari .kodawariBox.suppon .seibun .img {
	  top: 8%;
	  right: -20%;
	  width: 85%;
	}
	.section-kodawari .kodawariBox.kaki .seibun .img {
	  top: 16%;
	  right: -16%;
	  width: 75%;
	}
	.section-kodawari .kodawariBox .seibun .img img {
	  width: 100%;
	}
	.section-kodawari .kodawariBox .seibun h4,
	.section-kodawari .kodawariBox .seibun h5 {
	  line-height: 1;
	  width: 100%;
	}
	.section-kodawari .kodawariBox.suppon .seibun h4 {
	  line-height: 2.4;
	}
	.section-kodawari .kodawariBox.kaki .seibun h4 {
	  line-height: 1.2;
	}
	.section-kodawari .kodawariBox .seibun h4 {
	  top: 18%;
	  font-size: 26px;
	}
	.section-kodawari .kodawariBox .seibun h4 span.fts-l {
	  font-size: 40px;
	}
	.section-kodawari .kodawariBox .seibun h4 span.fts-l.fts35 {
	  font-size: 35px;
	}
	.section-kodawari .kodawariBox .seibun h4 span.remark {
	  font-size: 14px;
	}
	.section-kodawari.gokueki .kodawariBox.drink .seibun .img.drink-sec {
	  top: -70px;
	  right: -25%;
	}
	.section-kodawari.gokueki .kodawariBox .seibun h4.first {
	  top: 25%;
	  font-size: 22px;
	}
	.section-kodawari .kodawariBox.kaki .seibun h4 span.remark {
	  font-size: 14px;
	}
	.section-kodawari.gokutsubu .kodawariBox.adjust .seibun h4.fts-ad {
	  line-height: 1.3;
	}
	.section-kodawari .kodawariBox.drink .seibun .img {
	  top: -110px;
	  right: -25%;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun .img.first {
	  top: -75px;
	  right: -35%;
	  width: 90%;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun .img.sec {
	  top: -55px;
	  right: -25%;
	  width: 70%;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun .img.third {
	  top: -30px;
	  right: -12%;
	  width: 60%;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun .img.fourth {
	  top: -30px;
	  right: -15%;
	  width: 70%;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun h4 {
	  top: 16%;
	  left: 4%;
	  font-size: 30px;
	  line-height: 1.2;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun h4.vinegar {
	  top: 22%;
	  line-height: 1.4;
	}
	.section-kodawari.gokutsubu .kodawariBox.adjust .seibun h4.third {
	  top: 25%;
	  line-height: 1.2;
	}
	.section-kodawari.gokutsubu .kodawariBox .seibun h4 span.fts-l.yl {
	  font-size: 44px;
	  line-height: 1;
	}
	.section-kodawari .kodawariBox .seibun h5 {
	  top: 69%;
	  font-size: 14px;
	}
	.section-kodawari .kodawariBox .seibun h5 span {
	  font-size: 20px;
	}
	.section-kodawari .kodawariBox .flexBox {
	  margin-bottom: 40px;
	}
	.section-kodawari .kodawariBox .flexBox .imgBox {
	  width: 100%;
	  margin-bottom: 20px;
	}
	.section-kodawari .kodawariBox .flexBox .imgBox img {
	  width: 100%;
	}
	.section-kodawari .kodawariBox .flexBox .txtBox {
	  width: 100%;
	}
	.section-kodawari .kodawariBox .txtBox .ttl {
	  font-size: 30px;
	  line-height: 1.2;
	  margin-bottom: 25px;
	}
	.section-kodawari .kodawariBox .txtBox .ttl span {
	  font-size: 38px;
	}
	.section-kodawari .kodawariBox .txtBox .txt {
	  font-size: 18px;
	  line-height: 1.8;
	}
	.section-kodawari .kodawariBox .txtBox .txt span {
	  background: linear-gradient(transparent 40%, #fef501 40%);
	}
	.section-kodawari .kodawariBox .oneBox {
	  width: 100%;
	}
	.section-kodawari.gokutsubu .kodawariBox .flexBox.gokutsubu .imgBox {
	  width: 100%;
	}
	.section-kodawari .kodawariBox .flexBox.gokutsubu .txtBox {
	  width: 100%;
	  margin-top: 10px;
	}
	.section-kodawari .otherBox {
	  margin-top: 60px;
	}
	.section-kodawari .otherBox h2 {
	  padding: 40px 0;
	}
	.section-kodawari .otherBox h2 span.ftc {
	  font-size: 38px;
	}
	.section-kodawari .otherBox h2 span.fts-s {
	  font-size: 28px;
	}
	.section-kodawari .otherBox .flexBox {
	  padding: 0 6%;
	}
	.section-kodawari .otherBox .flexBox ul.imgbox {
	  width: 100%;
	  margin-bottom: 40px;
	}
	.section-kodawari .otherBox .flexBox ul.imgbox img {
	  width: 100%;
	}
	.section-kodawari .otherBox .flexBox ul.imgbox .ttl {
	  padding: 12px 0 15px 68px;
	}
	.section-kodawari .otherBox .flexBox ul.imgbox .ttl::before {
	  top: 34%;
	  left: 8%;
	}
	.section-kodawari .otherBox .flexBox.other .txtbox {
	  width: 100%;
	}
	.section-kodawari .otherBox .flexBox.other .ttl {
	  width: 100%;
	  padding: 10px 0 13px 66px;
	}
	.section-kodawari .otherBox .flexBox.other .ttl::before {
	  top: 21%;
	  left: 7%;
	}
	.section-kodawari.drink .kodawariBox .ttlBox .secttl {
	  font-size: 54px;
	}
	.section-kodawari.gokueki .kodawariBox .ttlBox .secttl {
	  font-size: 70px;
	}
	.section-kodawari .otherBox .flexBox.other .ttl span {
	  font-size: 24px;
	}
	.section-kodawari .otherBox .flexBox.other .ttl span.fts-s {
	  font-size: 24px;
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION Howto
 * ----------------------------------------------- */
.section-howto {
  padding: 80px 0 160px;
  text-align: center;

  height: auto;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: linear-gradient(180deg, transparent 0%, transparent 56%, #595c64 56%);
  background-position: center center;
}
.section-howto .howto-ttl {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
.section-howto .howto-ttl h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  margin: 10px 0 0 10px;
}
.section-howto .howto-ttl h2 span.fts-s {
  font-size: 26px;
}
.section-howto .howto-ttl h2 span.fts-l {
  font-size: 46px;
  background: linear-gradient(transparent 50%, #b8a473 50%);
}
.section-howto .howtoBox {
  position: relative;
  text-align: left;
}
.section-howto .howtoBox .fukidashi {
  position: absolute;
  top: 0;
  right: 5%;
}
.section-howto .howtoBox img {
  margin: 4% 0 0 5%;
}
.section-howto .howtoBox .product {
  position: absolute;
  bottom: -31%;
  right: -8%;
}
.section-howto .howtoBox.drink .product {
  right: -3%;
}
.section-howto .howtoBox .fukidashi h3 {
  background: url(../img/back_pat.gif);
  border: 3px solid #b8a473;
  font-weight: bold;
  font-size: 19px;
  line-height: 1.6;
  padding: 30px;
  width: 380px;
}
.section-howto .howtoBox.drink .fukidashi h3 {
  text-align: center;
  width: 320px;
}
.section-howto .howtoBox .fukidashi h3 span {
  background: linear-gradient(transparent 40%, #fef501 40%);
}
.section-howto .howtoBox .fukidashi h3::before,
.section-howto .howtoBox .fukidashi h3::after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.section-howto .howtoBox .fukidashi h3::before {
  top: 100%;
  margin-right: -10px;
  border-color: transparent;
  border-top-color: #b8a473;
  border-left-color: #b8a473;
  border-width: 18px;
}
.section-howto .howtoBox .fukidashi h3::after {
  top: 98%;
  left: 33px;
  margin-right: 10px;
  border-color: transparent;
  border-top-color: white;
  border-left-color: white;
  border-width: 16px;
}

@media only screen and (max-width: 767px) {
	.section-howto {
	  background-size: contain;
	  background: linear-gradient(180deg, transparent 0%, transparent 46%, #595c64 46%);
	  margin: 0;
	  height: 240vw;
	}
	.section-howto .howto-ttl {
	  flex-wrap: wrap;
	  margin-bottom: 50px;
	}
	.section-howto .howto-ttl picture {
	  width: 70%;
	  /*margin-left: -8%; これがあるとHowtoの画像がズレる、他に影響なければ削除*/
	}
	.section-howto .howto-ttl h2 {
	  font-size: 26px;
	  margin: 20px 0;
	}
	.section-howto .howto-ttl h2 span.fts-s {
	  font-size: 24px;
	}
	.section-howto .howto-ttl h2 span.fts-l {
	  font-size: 40px;
	}
	.section-howto .howtoBox .fukidashi {
	  top: -5%;
	  right: 2%;
	  width: 86%;
	}
	.section-howto .howtoBox.drink .fukidashi {
	  top: -5%;
	  right: 2%;
	  width: 75%;
	}
	.section-howto .howtoBox img {
	  margin: 37% 0 0;
	  width: 100%;
	}
	.section-howto .howtoBox.drink img {
	  margin: 30% 0 0;
	}
	.section-howto .howtoBox .product {
	  bottom: -58%;
	  right: 8%;
	}
	.section-howto .howtoBox.drink .product {
	  bottom: -70%;
	  right: 10%;
	}
	.section-howto .howtoBox .fukidashi h3 {
	  font-size: 16px;
	  line-height: 1.5;
	  padding: 20px;
	  width: 100%;
	}
	.section-howto .howtoBox.drink .fukidashi h3 {
	  padding: 30px 0;
	  width: 100%;
	}
	.section-howto .howtoBox .fukidashi h3 span {
	  background: linear-gradient(transparent 40%, #fef501 40%);
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION Voice
 * ----------------------------------------------- */
.section-voice {
  background: #000;
  padding: 0 0 120px;
  text-align: center;
}
.section-voice.drink {
  background: url(../img/common/buy_bg.jpg) no-repeat center;
  padding: 0 0 120px;
  text-align: center;
}
.section-voice .voice-ttl {
  background: #fff;
  position: relative;
  padding: 70px 0 30px;
}
.section-voice .voice-ttl::after {
  content: '';
  position: absolute;
  top: 155px;
  left: 0;
  height: 90px;
  background-color: #fff;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
.section-voice .voice-ttl h2 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  z-index: 10;
  background: #fff;
  margin-top: 1px;
}
.section-voice .voice-ttl h2 span.fts-s {
  font-size: 24px;
  margin-left: 3px;
}
.section-voice .voice-ttl h2 span.fts-l {
  font-size: 38px;
}
.section-voice .voice-ttl h2 span.bg-bk {
  background: #000;
  color: #f6f801;
  padding: 0 3px 4px 5px;
}
.section-voice .voice-ttl h2 span.bg-bk {
  background: #000;
  color: #f6f801;
  padding: 0 3px 4px 5px;
}
.section-voice h3 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 180px 0 60px;
}
.section-voice h3 span {
  color: #f6f801;
}
.section-voice h3::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 26%;
  background: url(../img/common/voice-slash-left.png);
  width: 25px;
  height: 48px;
}
.section-voice h3::after {
  content: '';
  position: absolute;
  top: 8%;
  right: 26.8%;
  background: url(../img/common/voice-slash-right.png);
  width: 25px;
  height: 48px;
}
.section-voice .voiceBox {
  background: url(../img/back_pat.gif);
  box-shadow: 0 0 18px #333;
  padding: 90px 40px 40px;
  width: 100%;
  margin: 0 auto;
}
.section-voice .voiceBox h4 {
  color: #b8a473;
  font-size: 70px;
  font-weight: 700;
  margin: -21.2% 0 20px;
  letter-spacing: -0.03em;
}
.section-voice .voiceBox h5 {
  background: #000;
  color: #fff;
  font-size: 46px;
}
.section-voice .voiceBox .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-voice .voiceBox .box {
  position: relative;
  width: 100%;
  background: #e5e9e8;
  font-size: 20px;
  line-height: 1.6;
  padding: 30px;
  min-height: 200px;
  margin: 0 0 50px 40px;
}
.section-voice .voiceBox .box.right {
  margin: 0 40px 50px 0;
}
.section-voice .voiceBox .box ul {
  display: flex;
  justify-content: space-between;
}
.section-voice .voiceBox .box .txt {
  text-align: left;
  margin-left: 60px;
  width: 70%;
}
.section-voice .voiceBox .box.right .txt {
  margin: 0 70px 0 0;
  width: 60%;
}
.section-voice .voiceBox .box .txt span {
  color: #b6960b;
  font-weight: bold;
}
.section-voice .voiceBox .box h5 {
  position: absolute;
  top: -10%;
  left: -6%;
  background: #000;
  color: #fff;
  font-size: 22px;
  line-height: 2.7;
  border-radius: 300px;
  width: 110px;
  height: 110px;
}
.section-voice .voiceBox .box.right h5 {
  right: -6%;
  left: auto;
}
.section-voice .voiceBox .box h5 span.age {
  font-size: 40px;
  font-family: "futura-pt", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
}
.section-voice .voiceBox .box h5 span.unclear {
  display: inline-block;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 22%;
}
.section-voice .voiceBox .box .img {
  margin-bottom: -35px;
  padding-top: 10px;
}
.section-voice p.remark {
  color: #fff;
  font-size: 14px;
  text-align: left;
  letter-spacing: 0.05em;
  margin-top: 15px;
}

@media only screen and (max-width: 767px) {
	.section-voice {
	  background: ;
	  background-size: contain;
	  margin: 100px 0 0;
	}
	.section-voice .voice-ttl::after {
	  top: 200px;
	  height: 70px;
	}
	.section-voice .voice-ttl h2 {
	  padding-bottom: 20px;
	}
	.section-voice h3 {
	  font-size: 34px;
	  line-height: 1.4;
	  margin: 200px 0 30px;
	}
	.section-voice h3 span {
	  color: #f6f801;
	}
	.section-voice h3::before {
	  top: 48%;
	  left: 7%;
	}
	.section-voice h3::after {
	  top: 48%;
	  right: 9%;
	}
	.section-voice .voiceBox {
	  padding: 120px 4% 40px;
	  width: 100%;
	}
	.section-voice .voiceBox h4 {
	  margin: -22.2% 0 60px;
	  line-height: 0.9;
	}
	.section-voice .voiceBox h5 {
	  font-size: 46px;
	}
	.section-voice .voiceBox .flexbox {
	  display: flex;
	  justify-content: space-between;
	  flex-wrap: wrap;
	  width: 100%;
	}
	.section-voice .voiceBox .box {
	  width: 100%;
	  font-size: 18px;
	  line-height: 1.6;
	  padding: 90px 30px 0 30px;
	  height: auto;
	  margin: 0 0 50px 0;
	}
	.section-voice .voiceBox .box.right {
	  margin: 0 0 50px 0;
	}
	.section-voice .voiceBox .box ul {
	  flex-wrap: wrap;
	}
	.section-voice .voiceBox .box.right ul {
	  flex-wrap: wrap-reverse;
	}
	.section-voice .voiceBox .box.right ul {
	  flex-direction: row-reverse;
	}
	.section-voice .voiceBox .box .txt {
	  margin-left: auto;
	  width: 100%;
	}
	.section-voice .voiceBox .box.right .txt {
	  margin: 0;
	  width: 100%;
	}
	.section-voice .voiceBox .box h5 {
	  top: -10%;
	  left: -2%;
	}
	.section-voice .voiceBox .box.right h5 {
	  right: -2%;
	}
	.section-voice .voiceBox .box h5 span.age {
	  font-size: 40px;
	  font-family: "futura-pt", sans-serif;
	  font-weight: bold;
	  letter-spacing: 0;
	}
	.section-voice .voiceBox .box .img {
	  width: 70%;
	  margin: 0 0 0 34%;
	  padding-top: 0;
	}
	.section-voice .voiceBox .box.right .img {
	  margin-right: -10%;
	}
	.section-voice .voiceBox .box .img.sec {
	  width: 70%;
	  margin-top: 0;
	}
	.section-voice .voiceBox .box img {
	  width: 100%;
	  margin-bottom: 0;
	}
	.section-voice p.remark {
	  font-size: 11px;
	}

}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION BUY
 * ----------------------------------------------- */
.section-buy {
  background: url(../img/common/buy_bg.jpg) no-repeat center;
  background-size: cover;
  margin: 0 auto;
  padding: 90px 0 110px;
}
.section-buy .buy-ttl h2 {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-shadow:
   1px 1px 2px black, 3px 3px 6px black, 0 0 2em black, 0 0 1.2em black;
  line-height: 1.4;
  margin-bottom: 40px;
}
.section-buy .buy-ttl h2::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 25%;
  background: url(../img/common/buy-slash-left.png);
  width: 61px;
  height: 97px;
}
.section-buy .buy-ttl h2::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 24.5%;
  background: url(../img/common/buy-slash-right.png);
  width: 61px;
  height: 97px;
}
.section-buy .buy-ttl h2 span {
  font-size: 36px;
  color: #f6f801;
}
.section-buy .buyBox {
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 50px 80px;
  width: 100%;
}
.section-buy .buyBox .imgBox {
  width: 40%;
}
.section-buy .buyBox .txtBox {
  width: 50%;
}
.section-buy .buyBox .txtBox h3 {
  position: relative;
  display: inline-block;
  color: #c2a04d;
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem 0;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  width: 100%;
}
.section-buy .buyBox .txtBox h3::before,
.section-buy .buyBox .txtBox h3::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}
.section-buy .buyBox .txtBox h3::before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: black;
  margin-left: -15px;
}
.section-buy .buyBox .txtBox h3::after {
  border: 16px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -14px;
}
.section-buy .buyBox .txtBox h4 {
  font-size: 30px;
  font-weight: 900;
  margin: 20px 0 10px;
}
.section-buy .buyBox .txtBox .volume {
  display: flex;
  border: solid 1px #000;
  border-radius: 80px;
  font-size: 13px;
  font-weight: bold;
  width: 65%;
}
.section-buy .buyBox .txtBox .volume.drink {
  width: 37%;
}
.section-buy .buyBox .txtBox .vol-ttl {
  color: #fff;
  background: #000;
  border-radius: 80px 0 0 80px;
  padding: 5px 15px;
}
.section-buy .buyBox .txtBox .vol-txt {
  padding: 5px 15px;
}
.section-buy .buyBox .txtBox .txt {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  border-bottom: solid 1px #000;
  padding: 20px 0;
}
.section-buy .buyBox .txtBox .price {
  color: #d20000;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
}
.section-buy .buyBox .txtBox .price span {
  font-family: "futura-pt", sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding-right: 2px;
}
.section-buy .buyBox .txtBox .price span.ftc-bk {
  color: #000;
  font-size: 18px;
  font-weight: 800;
}
.section-buy .buyBox .imgBox .product img {
  width: 100%;
}
.section-buy .buyBox .imgBox .check {
  position: relative;
  background: #a40d0d;
  width: 100%;
  height: 65px;
  margin: 0 0 40px;
  padding: 0 20px 0 54px;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  text-align: left;
}
.section-buy .buyBox .imgBox .check::before {
  position: absolute;
  left: 0;
  content: '';
  width: calc(100%);
  height: 0;
  display: block;
}
.section-buy .buyBox .imgBox .check::before {
  border-bottom: solid 20px #a40d0d;
  border-left: solid 20px transparent;
  bottom: 100%;
}
.section-buy .buyBox .imgBox .check .tab::before {
  position: absolute;
  content: '';
  top: 15%;
  left: 6%;
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../img/common/buy-ico-check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.section-buy .buyBox .imgBox .check .tab.onerow {
  line-height: 2.6;
}
.section-buy .buyBox .imgBox .check .tab span.remark {
  color: #fff;
  font-size: 10px;
}
.section-buy .buyBox .imgBox .check .tab span {
  color: #f0ff00;
}
.section-buy .buyBox .imgBox .remarks {
  font-size: 13px;
  text-align: left;
  margin-top: -30px;
}
.section-buy .buyBox .imgBox .remarks.col {
  text-indent: 0;
  padding-left: 0;
}

  /* mdc button */
.btn-mdc {
  position: relative;
  width: 380px;
  height: 136px;
  display: block;
  cursor: pointer;
  margin: 0 auto;
}
.btn-mdc img {
  position: absolute;
  top: 45%;
  left: 48%;
  -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) {
	.section-buy {
	  background: url(../img/common/buy_bg.jpg) repeat top;
	  background-size: contain;
	  padding: 80px 0 110px;
	}
	.section-buy .buy-ttl {
	  margin: 0 0 30px;
	}
	.section-buy .buy-ttl h2 {
	  font-size: 22px;
	  margin: 0 auto;
	}
	.section-buy .buy-ttl h2::before {
	  top: 4%;
	  left: -5%;
	  width: 54px;
	  height: 84px;
	}
	.section-buy .buy-ttl h2::after {
	  content: '';
	  position: absolute;
	  top: 4%;
	  right: -2.5%;
	  width: 54px;
	  height: 84px;
	}
	.section-buy .buy-ttl h2 span {
	  font-size: 32px;
	}
	.section-buy .buyBox {
	  padding: 50px 4%;
	}
	.section-buy .buyBox .imgBox {
	  width: 100%;
	}
	.section-buy .buyBox .txtBox {
	  width: 100%;
	  text-align: center;
	  margin-top: 40px;
	}
	.section-buy .buyBox .txtBox h3 {
	  font-size: 30px;
	  padding-bottom: 1.5rem;
	  margin-bottom: 0.2rem;
	  text-align: center;
	  line-height: 1.2;
	}
	.section-buy .buyBox .txtBox h3::before {
	  border: 16px solid;
	  border-color: transparent;
	  border-top-color: black;
	  margin-left: -15px;
	}
	.section-buy .buyBox .txtBox h3::after {
	  border: 16px solid;
	  border-color: transparent;
	  border-top-color: white;
	  margin-left: -14px;
	}
	.section-buy .buyBox .txtBox h4 {
	  font-size: 30px;
	  font-weight: 900;
	  margin: 20px 0 10px;
	}
	.section-buy .buyBox .txtBox .volume {
	  font-size: 15px;
	  width: 100%;
	}
	.section-buy .buyBox .txtBox .volume.drink {
	  width: 37%;
	}
	.section-buy .buyBox .txtBox .vol-ttl {
	  padding: 5px 20px;
	}
	.section-buy .buyBox .txtBox .vol-txt {
	  padding: 5px 15px;
	}
	.section-buy .buyBox .imgBox {
	  text-align: center;
	}
	.section-buy .buyBox .imgBox .product img {
	  width: 80%;
	}
	.btn-mdc {
	  margin: 20px 0 15px;
	  width: 100%;
	}
	.btn-mdc img {
	  left: 50%;
	}
}

.button,
a.button,
button.button {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 3.9;
  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: 96.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%;
	}
}

/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION MDC
 * ----------------------------------------------- */
.section-mdc {
  background: #333;
  padding: 60px 0 90px;
  margin: 0 auto;

  background: url(../img/common/aboutmdc_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 60px 0 160px;
}
.section-mdc .mdc-ttl {
  text-align: center;
}
.section-mdc .mdc-ttl h2 {
  display: inline-block;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  border-bottom: solid 5px #ffd200;
  padding-bottom: 15px;
  margin-bottom: 60px;
}
.section-mdc .mdc-ttl h2 span.ftc-yl {
  color: #ffd200;
}
.section-mdc .mdc-ttl h2 span.fts-l {
  font-size: 36px;
}
.section-mdc .about1 {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  z-index: 99;
}
.section-mdc .about1 .imgBox {
  width: 47.7%;
  margin: 40px 0 0 3%;
}
.section-mdc .about1 .imgBox img {
  width: 100%;
}
.section-mdc .about1 ul {
  background: url(../img/common/aboutmdc-txt-bg1.jpg) no-repeat top;
  background-size: contain;
  color: #fff;
  padding: 4.6% 0 0 9%;
  margin: 0 calc(15% - 27vw);
  width: 70%;
  height: 300px;
}
.section-mdc .about1 ul .ttl {
  font-size: 32px;
  margin-bottom: 15px;
}
.section-mdc .about1 ul .txt {
  font-size: 15px;
  line-height: 1.8;
}
.section-mdc .about1 ul .txt span {
  background: #000;
  font-weight: bold;
}
.section-mdc .about1 ul .txt span.ftc-yl {
  color: #f6f801;
}
.section-mdc .about2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-mdc .about2 ul {
  background: url(../img/common/aboutmdc-txt-bg2.jpg) no-repeat top;
  background-size: contain;
  padding: 6.2% 5% 0 29%;
  margin: -40px calc(18% - 27.5vw);
  width: 82%;
  z-index: 10;
}
.section-mdc .about2 .imgBox {
  width: 46.3%;
  margin-top: 15px;
}
.section-mdc .about2 .imgBox img {
  width: 100%;
}

@media screen and (max-width: 1262px) {
	.section-mdc .about1 ul {
	  padding: 4.2% 0 0 6%;
	  width: 62%;
	}
	.section-mdc .about2 ul {
	  font-size: 14px;
	  padding: 6.2% 5% 0 16%;
	  width: 77%;
	}
	.section-mdc .about2 .imgBox {
	  width: 38.3%;
	}
}

@media screen and (max-width: 767px) {
	.section-mdc .mdc-ttl h2 {
	  font-size: 20px;
	  margin-bottom: 20px;
	}
	.section-mdc .mdc-ttl h2 span.fts-l {
	  font-size: 32px;
	}
	.section-mdc .about1 .imgBox {
	  width: 100%;
	  margin-top: 40px;
	}
	.section-mdc .about1 .imgBox img {
	  width: 100%;
	}
	.section-mdc .about1 ul {
	  background: url(../img/common/aboutmdc-txt-bg1.jpg) no-repeat top;
	  background-size: cover;
	  padding: 31px 0 35px 20px;
	  margin: 20px 2% 0;
	  width: 100%;
	  height: auto;
	}
	.section-mdc .about1 ul .ttl {
	  font-size: 22px;
	  margin-bottom: 15px;
	}
	.section-mdc .about1 ul .txt {
	  font-size: 15px;
	  line-height: 1.8;
	}
	.section-mdc .about2 ul {
	  background: url(../img/common/aboutmdc-txt-bg2.jpg) no-repeat top;
	  background-size: cover;
	  padding: 30px 20px;
	  margin: 0 2% 20px;
	  width: 100%;
	}
	.section-mdc .about2 .imgBox {
	  width: 100%;
	}

}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION PRESENT
 * ----------------------------------------------- */
#present {
  padding-top: 100px;
  margin-top: -100px;
}
.section-present {
  background: url(../img/common/kodawari_bg.jpg) center;
  background-size: auto;
  text-align: center;
  padding: 40px 0 100px;
}
.section-present .ttl {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, transparent 0, #d5c16a 0%, #eae392 30%, #c4ad4f 100%) top left,
              linear-gradient(-135deg, transparent 30px, #d5c16a 0%, #eae392 30%, #c4ad4f 100%) top right,
              linear-gradient(-45deg, transparent 0, #d5c16a 0%, #eae392 30%, #c4ad4f 100%) bottom right,
              linear-gradient(45deg, transparent 0, #d5c16a 0%, #eae392 30%, #c4ad4f 100%) bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 10px 0 30px;
  width: 100%;
}
.section-present .img {
  position: absolute;
  top: 30%;
  left: 4%;
}
.section-present .ttl h2 {
  font-size: 30px;
  font-weight: bold;
  text-shadow: white -2px -1px 2px, white 1px 1px 2px, white -1px 1px 2px, white 1px -1px 2px, white -1px -1px 2px, white 2px 2px 2px;
}
.section-present .ttl h2 span.fts-l {
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.section-present .ttl h2 span.fts50 {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
.section-present .ttl .fukidashi {
  position: absolute;
  top: 62%;
  left: 0;
  right: 0;
}
.section-present .ttl h3 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 9px 0;
  min-width: 300px;
  max-width: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #333;
}
.section-present .ttl h3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -13px;
  border: 12px solid transparent;
  border-top: 13px solid #333;
}
.section-present .list {
  background: #fff;
  border: solid 4px #d5c16a;
  text-align: left;
  padding: 45px 50px 50px;
}
.section-present .list h4 {
  color: #c10000;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.03em;
}
.section-present .list .listBox {
  margin: 40px 0;
}
.section-present .list .listBox h5 {
  position: relative;
  background: #333;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  padding: 8px 50px;
  margin: 40px 0 20px;
}
.section-present .list .listBox h5.fst {
  margin: 0 0 20px;
}
.section-present .list .listBox h5::before {
  content: '';
  position: absolute;
  top: 28%;
  left: 2.4%;
  background: url(../img/common/present_ico_tigar.png);
  width: 26px;
  height: 24px;
}
.section-present .list .listBox .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
}
.section-present .list .listBox .flexbox .txtBox {
  width: 72%;
}
.section-present .list .listBox .flexbox .imgBox {
  width: 23%;
}
.section-present .list .listBox .flexbox .imgBox img {
  width: 100%;
}
.section-present .list .listBox .txt {
  font-size: 16px;
  line-height: 1.8;
}
.section-present .list .listBox .txt.dot {
  text-indent: -22px;
  padding-left: 22px;
}
.section-present .list .listBox .txt.dot::before {
  content: '●';
  padding-right: 5px;
}
.section-present .list .listBox .txt span {
  color: #c80004;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
	.section-present {
	  background: url(../img/common/kodawari_bg.jpg) top;
	  background-size: contain;
	  padding: 40px 0 100px;
	}
	.section-present .img {
	  position: absolute;
	  top: -50%;
	  left: 28%;
	  width: 37%;
	  margin: 0 auto;
	}
	.section-present .img img {
	  width: 100%;
	}
	.section-present .ttl h2 {
	  font-size: 24px;
	}
	.section-present .ttl h2 span.fts-l {
	  font-size: 70px;
	}
	.section-present .ttl h2 span.fts50 {
	  font-size: 50px;
	}
	.section-present .ttl .fukidashi {
	  top: 67%;
	}
	.section-present .ttl h3 {
	  padding: 9px 0;
	  min-width: 300px;
	  max-width: 100%;
	  font-size: 20px;
	}
	.section-present .list {
	  padding: 45px 4% 10px;
	}
	.section-present .list h4 {
	  font-size: 26px;
	  line-height: 1.3;
	  margin-top: 10px;
	}
	.section-present .list .listBox h5 {
	  padding: 8px 20px 10px 50px;
	}
	.section-present .list .listBox {
	  margin: 40px 0;
	}
	.section-present .list .listBox .flexbox {
	  width: 100%;
	  margin-bottom: 40px;
	}
	.section-present .list .listBox .flexbox .txtBox {
	  width: 100%;
	}
	.section-present .list .listBox .flexbox .imgBox {
	  width: 100%;
	  margin-top: 30px;
	}
	.section-present .list .listBox .flexbox .imgBox img {
	  width: 100%;
	}
	.section-present .list .listBox .txt {
	  font-size: 14px;
	}
}


/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION FAQ
 * ----------------------------------------------- */

.section-faq {
  background: #fff;
  padding: 80px 0 100px;
}
.section-faq .ttl {
  text-align: center;
  font-weight: 900;
}
.section-faq .ttl h2 {
  font-size: 36px;
  line-height: 1.3;
}
.section-faq .ttl h2 span {
  font-size: 26px;
}
.section-faq .ttl h3 {
  color: #b8a473;
  font-size: 80px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 30px;
  letter-spacing: -0.01em;
}
.section-faq .faqBox .box {
  background: #000;
  color: #fff;
  padding: 40px 35px;
  margin-bottom: 20px;
}
.section-faq .faqBox .box.gr {
  background: #444;
}
.section-faq .faqBox .box .question {
  font-size: 20px;
  font-weight: 500;
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.section-faq .faqBox .box .answer {
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  padding-left: 50px;
}
.section-faq .faqBox .box .question::before {
  content: 'Q';
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: "futura-pt", sans-serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  border-radius: 80px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.section-faq .faqBox .box .answer::before {
  position: absolute;
  top: 0;
  left: 0;
  content: 'A';
  display: inline-block;
  background: #b8a473;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
  border-radius: 80px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.section-faq .faqBox .box p {
  text-indent: -22px;
  padding-left: 22px;
}

/* Detail PAGES
 * ----------------------------------------------- */
/* SECTION SPEC
 * ----------------------------------------------- */

.section-spec {
  background: #000;
  color: #fff;
  padding: 80px 0 100px;
}
.section-spec .ttl {
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
}
.section-spec .ttl h2 {
  font-size: 30px;
}
.section-spec .ttl h3 {
  color: #b8a473;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-spec h4 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  padding: 15px 0 13px;
  margin-bottom: 40px;
}
.section-spec .specBox {
  font-size: 15px;
  margin-bottom: 80px;
}
.section-spec .specBox .flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-spec .specBox .flexbox .imgBox {
  width: 35%;
}
.section-spec .specBox .flexbox .imgBox img {
  width: 100%;
}
.section-spec .specBox .flexbox .txtBox {
  text-align: left;
  width: 55%;
}
.section-spec .specBox .flexbox .txtBox tr {
  display: block;
  border-bottom: dotted 1px #fff;
  padding: 20px 0;
  width: 100%;
}
.section-spec .specBox .flexbox .txtBox tr {
  display: block;
  border-bottom: dotted 1px #fff;
  padding: 20px 0;
}
.section-spec .specBox .flexbox .txtBox tr.first {
  padding-top: 0;
}
.section-spec .specBox .flexbox .txtBox th {
  width: 150px;
}
.section-spec .specBox .flexbox .txtBox td {
  width: ;
}
.section-spec .specBox .flexbox .txtBox .ttl {
  font-weight: bold;
  text-align: left;
}
.section-spec .specBox .flexbox .txtBox .ttl span {
  font-size: 12px;
}
.section-spec .specBox .flexbox .txtBox .ttl span.fts-s {
  font-size: 10px;
}
.section-spec .specBox .flexbox .txtBox .txt {
  line-height: 1.8;
}
.section-spec .attention {
  color: #fff;
  text-align: left;
  margin: 50px 0 30px;
}
.section-spec .attention .ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  border-bottom: solid 3px #fff;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.section-spec .attention .txt {
  font-size: 15px;
  line-height: 1.8;
}
.section-spec .attention p {
  color: #b8a473;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border: solid 3px #b8a473;
  padding: 25px;
  margin-top: 40px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
	.section-spec .specBox .flexbox .imgBox {
	  width: 100%;
	  margin-bottom: 30px;
	}
	.section-spec .specBox .flexbox .imgBox img {
	  width: 100%;
	}
	.section-spec .specBox .flexbox .txtBox {
	  width: 100%;
	}
	.section-spec .specBox .flexbox .txtBox tr {
	  width: 100%;
	}
	.section-spec h4 {
	  font-size: 26px;
	  line-height: 1.3;
	}
}


/* ----------------------------------------------- */
/* OTHER
 * ----------------------------------------------- */
.letro {
/*  margin-top: 50px;*/
}

/* .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.top {
    display: block;
  }
  .gototop img {
    width: 96%;
  }
  .gototop.top img {
    width: 78%;
  }
}

@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;
}
.fts40 {
    font-size: 40px;
}
.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;
}
.ftc-rd {
  color: #c10000;
}
.ftc-rd.snake {
  font-weight: bold;
  background: none !important;
}
.ftc-yl {
  color: #ffd200;
}


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