@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #303033;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.6875rem;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 0.9375rem;
  }
}

main {
  flex-grow: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  color: inherit;
  font: inherit;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.header {
  background-color: #303033;
}

.header_inner {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1030px;
  padding: 15px 15px;
}
@media screen and (min-width: 768px), print {
  .header_inner {
    padding: 20px 15px;
  }
}

.logo {
  margin-right: auto;
    width: 14%;
}
@media not all and (min-width: 768px), print {
  .logo {
    width: 90px;
  }
}

.gnav__list {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .gnav__list {
    flex-direction: row;
  }
}
@media not all and (min-width: 768px), print {
  .gnav__list {
    border-bottom: 1px solid #fff;
  }
}

.gnav__link {
  color: #ffffff;
  display: block;
  letter-spacing: 0.006em;
  padding: 15px 15px 15px 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px), print {
  .gnav__link {
    font-size: 0.8125rem;
    padding: 0.7692307692em;
  }
}
@media not all and (min-width: 768px), print {
  .gnav__link {
    border-top: 1px solid #fff;
    position: relative;
  }
  .gnav__link::after {
    -webkit-transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    content: "";
    content: "";
    display: inline-block;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 7px;
  }
}

.header ::-webkit-input-placeholder {
  color: #ffffff;
}

.header ::-moz-placeholder {
  color: #ffffff;
}

.header :-ms-input-placeholder {
  color: #ffffff;
}

.header ::-ms-input-placeholder {
  color: #ffffff;
}

.header ::placeholder,
.header .search-box__submit-btn i {
  color: #ffffff;
}
.header .search-box__input {
  border-radius: 20px;
  padding: 10px 10px 10px 47px;
}

.header__search-box {
  margin-left: 30px;
}

@media not all and (min-width: 768px), print {
  .gnav {
    -webkit-overflow-scrolling: touch;
    background: #303033;
    display: none;
    height: calc(100vh - 58px);
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 58px;
    width: 100%;
    z-index: 100;
  }
}
.gnav .gnav__head {
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
}

@media not all and (min-width: 768px), print {
  .hamburger {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
  }
  .hamburger .hamburger__line {
    background: #fff;
    height: 3px;
    position: relative;
    width: 100%;
    z-index: 1000;
  }
  .hamburger .hamburger__line::before,
.hamburger .hamburger__line::after {
    background: #fff;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
  }
  .hamburger .hamburger__line::before {
    top: -10px;
  }
  .hamburger .hamburger__line::after {
    bottom: -10px;
  }
  .hamburger body.is-fixed {
    height: 100%;
    position: fixed;
    width: 100%;
  }
}
.footer {
  background-color: #fff;
  padding: 15px;
}

.copyright {
  color: #1a1311;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 0.8125rem;
  text-align: center;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1030px;
}

.container--primary {
  max-width: 930px;
}

.container--secondary {
  max-width: 875px;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
}

.bg-light {
  background-color: #f5f5f5;
}

.bg-secondary {
  background-color: #6c6c6c;
}

.bg-dark {
  background-color: #303033;
}

.bg-light,
.bg-secondary,
.bg-dark {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.section {
  padding-bottom: 22px;
  padding-top: 22px;
}
@media screen and (min-width: 768px), print {
  .section {
    padding-bottom: 38px;
    padding-top: 45px;
  }
}

.btn {
  border: solid 1px #707070;
  cursor: pointer;
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 0.75rem;
  max-width: 280px;
  padding: 1.0714285714em;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .btn {
    font-size: 0.875rem;
  }
}

.btn-light {
  background-color: #fff;
}

.btn-dark {
  background-color: #303033;
  color: #ffffff;
}

.btn-secondary {
  background-color: #687a84;
  color: #ffffff;
}

.btn--center {
  margin-left: auto;
  margin-right: auto;
}

.btn--circle {
  align-items: center;
  background-color: #b7b7b7;
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
}

.heading--sm {
  font-family: inherit;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px), print {
  .heading--sm {
    font-size: 1.0625rem;
  }
}

.sub-heading {
  font-size: 0.75rem;
  letter-spacing: 0.006em;
  margin-top: 6px;
}

.heading--light {
  color: #ffffff;
}

.search-box {
  position: relative;
}

.search-box--sm {
  max-width: 200px;
}

.search-box--md {
  max-width: 500px;
}

.search-box__input {
  border: none;
}

.search-box__input--dark {
  background-color: #898b91;
}

.search-box__input--light {
  background-color: #f1f1f2;
}

.search-box__submit-btn {
  -webkit-transform: translateY(-50%);
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
.search-box__submit-btn:hover {
  opacity: 0.8;
}

.detail {
  border-bottom: 1px solid #c7c7c7;
  margin-top: 17px;
}
@media screen and (min-width: 768px), print {
  .detail {
    margin-top: 25px;
  }
}

.detail__item {
  align-items: center;
  background-color: #f5f5f5;
  display: flex;
  justify-content: flex-start;
}

.detail__item {
  border-top: 1px solid #c7c7c7;
}
.detail__item dt,
.detail__item dd {
  color: #575456;
  padding-bottom: 1em;
  padding-top: 1em;
}
.detail__item dt {
  flex: 0 0 60px;
  text-align: center;
}
p.thanks {
    padding: 15px;
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5em;
    margin-top: 10%;
}
@media screen and (min-width: 768px), print {
  .detail__item dt {
    flex: 0 0 220px;
  }
}
.detail__item dd {
  background-color: #fff;
  flex: 1 1 auto;
  line-height: 1.73;
  padding-left: 1.6666666667em;
}
.detail__item dd::before, .detail__item dd::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
.detail__item dd::before {
  margin-top: calc((1 - 1.73) * 0.5em);
}
.detail__item dd::after {
  margin-bottom: calc((1 - 1.73) * 0.5em);
}

.page-header {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100px;
  justify-content: center;
}
@media screen and (min-width: 768px), print {
  .page-header {
    height: 200px;
  }
}

.page-header__title--light {
  color: #ffffff;
}

.page-header__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px), print {
  .page-header__title {
    font-size: 1.875rem;
  }
}

.page-header__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  margin-top: 1em;
}
@media screen and (min-width: 768px), print {
  .page-header__subtitle {
    font-size: 0.75rem;
  }
}

.pagination ul {
  align-items: center;
  display: flex;
  justify-content: center;
}

.page-numbers {
  border: solid 1px #d4d4d4;
  display: block;
  font-size: 0.8125rem;
  padding: 1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .page-numbers {
    height: 42px;
    min-width: 42px;
  }
}

/* form */
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus,
input[type=checkbox]:focus + span {
  box-shadow: 0 0 5px rgba(104, 111, 103, 0.7);
  outline: none;
}

input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

input[type=checkbox] + span {
  color: #1a1311;
  cursor: pointer;
  display: inline-block;
  font-size: 0.6875rem;
  padding: 0.3125em 0.3125em 0.3125em 2.1875em;
  position: relative;
}
@media screen and (min-width: 768px), print {
  input[type=checkbox] + span {
    font-size: 1rem;
  }
}

input[type=checkbox] + span:before {
  border: solid 1px #afafaf;
  content: "";
  height: 1.25em;
  left: 0;
  position: absolute;
  top: 2px;
  width: 1.25em;
}

input[type=checkbox] + span:after {
  content: "";
  display: none;
}

input[type=checkbox]:checked + span:after {
  -webkit-transform: rotate(45deg);
  border-bottom: 3px solid #ab0006;
  border-right: 3px solid #ab0006;
  content: "";
  display: block;
  height: 1.25em;
  left: 0.4em;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 0.5em;
}

.form {
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
  max-width: 600px;
}
@media screen and (min-width: 768px), print {
  .form {
    margin-top: 45px;
  }
}

.form__item {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  margin-top: 14px;
}
@media screen and (min-width: 768px), print {
  .form__item {
    margin-top: 20px;
  }
}

.form__ttl {
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  .form__ttl {
    font-size: 0.875rem;
  }
}

.form__body {
  margin-top: 6px;
}

.input-field input,
.input-field textarea {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 2px;
  padding: 10px;
}

.input-field ::-webkit-input-placeholder {
  color: #b6b6b6;
}

.input-field ::-moz-placeholder {
  color: #b6b6b6;
}

.input-field :-ms-input-placeholder {
  color: #b6b6b6;
}

.input-field ::-ms-input-placeholder {
  color: #b6b6b6;
}

.input-field ::placeholder {
  color: #b6b6b6;
}
@media screen and (min-width: 768px), print {
  .input-field ::-webkit-input-placeholder {
    font-size: 0.875rem;
  }
  .input-field ::-moz-placeholder {
    font-size: 0.875rem;
  }
  .input-field :-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .input-field ::-ms-input-placeholder {
    font-size: 0.875rem;
  }
  .input-field ::placeholder {
    font-size: 0.875rem;
  }
}

.form__btn {
  margin-top: 15px;
}
@media screen and (min-width: 768px), print {
  .form__btn {
    margin-top: 25px;
  }
}

.privacy-box__check {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .privacy-box__check {
    margin-top: 33px;
  }
}

.privacy-box__check a {
  text-decoration: underline;
}

.submit-btn {
  background-color: #1a1311;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2941176471;
  padding: 0.8235294118em;
}
@media screen and (min-width: 768px), print {
  .submit-btn {
    font-size: 1.0625rem;
  }
}

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

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

.is-menu-opened .hamburger__line {
  background: transparent;
}

.is-menu-opened .hamburger__line::before {
  -webkit-transform: rotate(45deg);
  top: 0;
  transform: rotate(45deg);
}

.is-menu-opened .hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  bottom: 0;
  transform: rotate(-45deg);
}

.is-menu-opened .gnav {
  display: block;
}

html.is-menu-opened {
  min-height: 100vh;
}

.is-menu-opened body {
  height: 100%;
  position: fixed;
  width: 100%;
}
@media screen and (min-width: 768px) {
	ul.lang_list {
	    max-width: 300px;
	}
}
@media screen and (max-width: 768px) {
	section.made.inner.news ul.news {
	    padding: 0 30px;
	}
	.product {
	    flex-wrap: wrap;
	}
}
ul.lang_list {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0 auto 5%;
    align-items: flex-end;
}
ul.lang_list li {
    width: 50%;
    text-align: center;
}
ul.lang_list li a {
    font-size: 1.2em;
}
ul.lang_list li.active a {
    font-size: 1.4em;
    font-weight: bold;
}
.product {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.product_box figure {
    padding: 0 20%;
    border: solid 1px #E4E4E4;
	margin: 0 auto 20px;
}
p.buy_btn {
    text-align: center;
    background: #ddd9d3;
}
.product_box {
    padding: 0 10px;
    margin: 0 auto 50px;
}
p.buy_btn a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
}
.price {
    text-align: center;
    margin-top: 2.6875rem;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: right;
}
section.made.inner h2 {
    margin: 0 auto 15px;
}
p.name {
    font-size: 15px;
    text-align: center;
    margin: 0 auto 10px;
}
section.made.inner.news {
    background: #E6ECF2;
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
    margin: 30px auto;
}
.product_box p.price {
    margin: 0 auto 20px;
    font-size: 14px;
}
section.made.inner.news ul.news {
    max-width: 500px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
section.made.inner.news ul.news li.date {
    margin-right: 20px;
    width: 40%;
}
ul.news li.date span.catname {
    font-size: 12px;
    border: solid 1px #707070;
    margin-left: 7px;
        padding: 2px;
}
section.made.inner.news ul.news li {
    width: 80%;
    line-height: 1.7em;
}
section.made.inner.news p.list a {
    color: #ffffff;
}

section.made.inner.news p.list {
    width: 250px;
    margin: 0 auto;
    background: #707070;
    text-align: center;
    padding: 15px 5px;
}
/*# sourceMappingURL=sourcemaps/style.css.map */
@media screen and (max-width: 758px) {
	ul.news li.date span.catname {
	    text-align: center;
	    font-size: 10px;
	    padding: 0 2%;
	}
	section.made.inner.news ul.news li.date {
	    margin-right: 0px;
	    width: 40%;
	}
	section.made.inner.news ul.news {
        padding: 0 5%;
	}
	section.made.inner.news ul.news li {
	    width: 60%;
	}
	span.da {
	    font-size: 1.1em;
	}
	section.made.inner.news ul.news li:last-child {
	    font-size: 1.1em;
	}
	section.made.inner.news p.list {
	    padding: 15px 5px;
	}
}