@charset "UTF-8";
/**
 * 共通css
 */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: top;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  height: 100%;
  min-height: 100%;
  background-color: #f6f6f6;
  color: #333;
  font-size: 14px;
  font-family: HiraKakuProN-W3, HiraKakuPro-W3, Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  main {
    min-height: calc(100% - 61px - 139px);
  }
}
@media screen and (min-width: 768px) {
  main {
    min-height: calc(100% - 192px - 94px);
  }
}

ul, li {
  list-style: none inside;
}

img {
  vertical-align: top;
}

h1 {
  font-size: 250%;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 180%;
  }
}

h2 {
  font-size: 150%;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 140%;
  }
}

h3 {
  font-size: 120%;
}

h4, h5, h6 {
  font-size: 100%;
}

small {
  font-size: 90%;
}

@media screen and (max-width: 767px) {
  .pc-element {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-element {
    display: none !important;
  }
}

.contents-inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contents-inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .contents-inner {
    width: 700px;
  }
}
@media screen and (min-width: 1000px) {
  .contents-inner {
    width: 900px;
  }
}

a {
  color: #689b00;
  text-decoration: none;
}

.button {
  display: inline-block;
  padding: 0px;
  width: 150px;
  background: none;
  background-color: #888;
  border: 1px solid #888;
  border-radius: 3px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  transition: color 300ms ease, background 300ms ease;
}
.button:hover {
  color: #333333;
  background-color: transparent;
}
.button.small {
  width: 150px;
  font-size: 14px;
  line-height: 30px;
}
.button.large {
  width: 200px;
  font-size: 18px;
  line-height: 48px;
}
.button.main {
  background-color: #689b00;
  border-color: #689b00;
  color: #ffffff;
}
.button.main:hover {
  color: #689b00;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .button.large {
    width: 100%;
  }
}

/**
 * タッチデバイスではマウスオーバー表示を解除
 */
body.touch-device .button:hover {
  color: #fff;
  background-color: #888;
}
body.touch-device .button.main:hover {
  color: #fff;
  background-color: #689b00;
}

/**
 * ヘッダー
 */
header {
  position: relative;
  z-index: 30;
  box-sizing: border-box;
}
header .catch {
  font-size: 12px;
}
header .site-logo {
  display: inline-block;
}
header .contents-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px;
    height: 60px;
    border-bottom: 1px solid #dddddd;
  }
  header .catch {
    position: relative;
    z-index: 30;
    padding-left: 75px;
    line-height: 20px;
  }
  header .site-logo {
    position: absolute;
    z-index: 30;
    top: 0px;
    left: 0px;
    height: 40px;
  }
  header .site-logo img {
    width: auto;
    height: 40px;
  }
  header .menu-button {
    display: block;
    position: absolute;
    z-index: 30;
    top: 6px;
    right: 10px;
    width: 24px;
    height: 22px;
    border-top: 4px solid #333;
    border-bottom: 4px solid #333;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
  }
  header .menu-button:before {
    display: block;
    position: absolute;
    top: 5px;
    width: 100%;
    height: 4px;
    background-color: #333;
    content: "";
  }
  header .menu-button:after {
    display: block;
    position: absolute;
    bottom: -15px;
    width: 100%;
    font-size: 10px;
    content: "menu";
  }
}
@media screen and (min-width: 768px) {
  header .contents-inner {
    padding-top: 10px;
  }
  header .catch {
    margin-bottom: 10px;
  }
  header .site-logo {
    margin-bottom: 10px;
  }
  header .site-logo img {
    width: auto;
    height: 100px;
  }
  header + #prompter {
    margin-top: 20px;
  }
}

#headerMenu {
  z-index: 10;
  box-sizing: border-box;
}
#headerMenu .contact {
  overflow: hidden;
}
#headerMenu .contact .number {
  display: block;
  color: #333;
  font-weight: bold;
  letter-spacing: 2px;
}
#headerMenu .contact .number > span {
  display: inline-block;
}
#headerMenu .contact .office-time {
  margin-bottom: 10px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #headerMenu {
    position: fixed;
    z-index: 20;
    top: 0px;
    left: 0px;
    padding-top: 61px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translate(100%, 0%);
    transition: transform 300ms ease;
  }
  #headerMenu.show {
    transform: translate(0%, 0%);
  }
  #headerMenu.fade {
    transform: translate(100%, 0%);
  }
  #headerMenu:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background-color: #f6f6f6;
    border-bottom: 1px solid #dddddd;
    content: "";
  }
  #headerMenu .modal-inner {
    margin-top: 0px !important;
    background-color: #fff;
  }
  #headerMenu .contact {
    padding: 20px;
  }
  #headerMenu .contact .number {
    margin-bottom: 5px;
    font-size: 170%;
  }
  #headerMenu .contact .button {
    display: block;
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  #headerMenu .contact .button:last-child {
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) {
  #headerMenu .contact {
    position: absolute;
    top: 10px;
    right: 0px;
    text-align: right;
  }
  #headerMenu .contact .number {
    margin-bottom: 3px;
    font-size: 28px;
    text-align: right;
  }
  #headerMenu .contact .office-time {
    text-align: right;
  }
  #headerMenu .contact .button {
    margin-left: 16px;
    width: 140px;
  }
  #headerMenu .contact .button:first-of-type {
    margin-left: 0px;
  }
}

/**
 * グローバルナビゲーション
 */
#globalNavigation a {
  display: block;
  color: #333333;
}
@media screen and (max-width: 767px) {
  #globalNavigation {
    line-height: 30px;
  }
  #globalNavigation a {
    padding: 10px 20px;
    border-bottom: 1px solid #dddddd;
  }
}
@media screen and (min-width: 768px) {
  #globalNavigation {
    overflow: hidden;
  }
  #globalNavigation a {
    position: relative;
    float: left;
    margin-right: 50px;
    line-height: 50px;
  }
  #globalNavigation a:last-child {
    margin-right: 0px;
  }
  #globalNavigation a:after {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #dddddd;
    content: "";
    transition: height 300ms ease, background-color 300ms ease;
  }
  #globalNavigation a.current {
    color: #689b00;
    font-weight: bold;
  }
  #globalNavigation a.current:hover:after {
    background-color: #689b00;
  }
  #globalNavigation a.current:after {
    height: 3px;
    background-color: #689b00;
  }
  #globalNavigation a:hover {
    color: #689b00;
  }
  #globalNavigation a:hover:after {
    height: 5px;
    background-color: #999;
  }
}

a.button-cart {
  display: block;
  position: absolute;
  z-index: 50;
  position: fixed;
  background: url(../images/common/icon_cart01.png) center 50% no-repeat;
  box-sizing: border-box;
}
a.button-cart > span {
  position: absolute;
  width: 100%;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  a.button-cart {
    position: absolute;
    top: 10px;
    right: 50px;
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  a.button-cart > span {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  a.button-cart {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 70px;
    background-position: center 2px;
    background-size: 40px;
    border: 2px solid #689b00;
    border-radius: 4px;
  }
  a.button-cart > span {
    bottom: 5px;
  }
}

/**
 * メインエリア
 */
main {
  flex: 1;
}
main .contents-inner h1, main .contents-inner h2, main .contents-inner h3 {
  margin-bottom: 1em;
  line-height: 1.2;
}
main .contents-inner section.general {
  margin-top: 60px;
}
main .contents-inner section.general:first-child {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  main .contents-inner section.general {
    margin-top: 30px;
  }
}
main .contents-inner section.general section.general {
  margin-top: 40px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  main .contents-inner section.general section.general {
    margin-top: 20px;
  }
}
main .contents-inner section.general h2, main .contents-inner section.general h3 {
  margin-top: 2.5em;
}
main .contents-inner section.general h2:first-child, main .contents-inner section.general h3:first-child {
  margin-top: 0px;
}
main .contents-inner .notice {
  color: #f00;
}
main p {
  margin-bottom: 1em;
  line-height: 1.6;
}
main p:last-child {
  margin-bottom: 0px;
}
main p a {
  text-decoration: underline;
}
main ul.general {
  margin-bottom: 1em;
  line-height: 1.6;
}
main ul.general li {
  margin-left: 1.5em;
  list-style: disc none outside;
}
main dl.general {
  line-height: 1.6;
}
main dl.general dt {
  float: left;
}
@media screen and (max-width: 767px) {
  main dl.general dt {
    margin-bottom: 10px;
    padding-bottom: 5px;
    padding-right: 20px;
    border-bottom: 1px solid #dddddd;
  }
  main dl.general dd {
    clear: left;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  main dl.general {
    overflow: hidden;
  }
  main dl.general dt {
    clear: left;
    margin-bottom: 20px;
    width: 130px;
  }
  main dl.general dd {
    margin-bottom: 20px;
    margin-left: 150px;
    padding-left: 20px;
    border-left: 1px solid #dddddd;
  }
}
main table.general {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
main table.general th, main table.general td {
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-weight: normal;
  line-height: 1.6;
}
main table.general th {
  background-color: #eeeeee;
}
@media screen and (max-width: 767px) {
  main table.general {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  main table.general th, main table.general td {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding: 20px 10px 40px;
  }
}
@media screen and (min-width: 768px) {
  main {
    padding: 50px 0px 100px;
  }
}

/**
 * フッター
 */
footer {
  position: relative;
  z-index: 20;
  padding: 0px 10px;
  border-top: 1px solid #dddddd;
}
footer nav {
  position: relative;
  padding-top: 10px;
}
footer nav a {
  display: inline-block;
  margin: 0px 20px 10px 0px;
}
footer nav .page-top {
  position: absolute;
  top: -32px;
  right: 0px;
  background-color: transparent;
  border: 1px solid #dddddd;
  border-bottom: 1px solid #f6f6f6;
  color: #333;
}
footer nav .page-top:hover {
  background-color: #888888;
  color: #fff;
}
footer .credit {
  margin-top: 10px;
  padding-bottom: 10px;
}
footer .credit .site-name {
  font-weight: bold;
}
footer .credit .copyright {
  margin-top: 10px;
  color: #aaa;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  footer nav {
    font-size: 12px;
  }
  footer nav .page-top.button {
    top: -26px;
    width: 90px;
    font-size: 10px;
    line-height: 24px;
  }
  footer .credit .site-name {
    display: block;
    line-height: 2em;
  }
}
@media screen and (min-width: 768px) {
  footer .credit .site-name {
    display: inline-block;
    margin-right: 15px;
    font-size: 120%;
  }
}

body.touch-device footer nav .page-top:hover {
  background-color: transparent;
  color: #333;
}

#prompter {
  margin: 0 auto;
  box-sizing: border-box;
}
#prompter p {
  padding: 10px;
  margin: 0 auto 10px;
  background-color: #00ad15;
  color: #ffffff;
  line-height: 1.5;
}
#prompter p a {
  color: #fff;
}
#prompter p.caution {
  background-color: #ffa700;
}
#prompter p.caution a {
  color: #0079ff;
}
#prompter p.warning {
  background-color: #ff0000;
}
#prompter p:last-child {
  margin-bottom: 0px;
}

#cartWidget {
  position: absolute;
  top: 46px;
  right: 10px;
  padding: 10px;
  background-color: #eee;
}
#cartWidget .title {
  margin-bottom: 10px;
  font-weight: bold;
}
#cartWidget li {
  margin-bottom: 10px;
}

.debug-paramater {
  position: fixed;
  overflow: scroll;
  bottom: 10px;
  right: 10px;
  padding: 10px;
  width: 300px;
  max-height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}
.debug-paramater p {
  margin-bottom: 1em;
  line-height: 1.5;
}
.debug-paramater p:last-child {
  margin-bottom: 0px;
}

.icon-question {
  display: inline-block;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border: 1px solid #689b00;
  border-radius: 8px;
  box-sizing: border-box;
  color: #689b00;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .icon-question {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    line-height: 20px;
  }
}

.js-balloon-supple {
  position: relative;
}
.js-balloon-supple > span.balloon {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0px;
  bottom: 20px;
  padding: 15px;
  width: 300px;
  min-height: 50px;
  background-color: #f6f6f6;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #999999;
  border-radius: 3px;
  box-sizing: border-box;
  color: #333333;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
}
.js-balloon-supple.show > span.balloon {
  display: block;
}
.js-balloon-supple .close-button {
  display: none;
  position: absolute;
  top: 3px;
  right: 3px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.js-balloon-supple .close-button:before, .js-balloon-supple .close-button:after {
  display: block;
  position: absolute;
  top: 0px;
  right: 9px;
  width: 2px;
  height: 20px;
  background-color: #333;
  content: "";
}
.js-balloon-supple .close-button:before {
  transform: rotate(45deg);
}
.js-balloon-supple .close-button:after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .js-balloon-supple > span.balloon {
    position: fixed;
    top: 10px;
    bottom: auto;
    left: 10px;
    padding: 10px;
    width: calc(100% - 20px);
  }
  .js-balloon-supple .close-button {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .js-balloon-supple:hover > span.balloon {
    display: block;
  }
}

:placeholder-shown {
  color: #bbb;
}

::-webkit-input-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  opacity: 1;
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

/**
 * フォーム
 */
input[type=text], input[type=number], input[type=password], input[type=email], input[type=tel] {
  appearance: none;
  margin: 0px;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  outline: 0px;
  box-sizing: border-box;
  font-size: 100%;
  line-height: 20px;
  vertical-align: top;
}
input[type=text].error, input[type=number].error, input[type=password].error, input[type=email].error, input[type=tel].error {
  background-color: #ffeeee;
  border-color: #f00;
}

select {
  appearance: none;
  margin: 0px;
  padding: 5px 30px 5px 10px;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  outline: 0px;
  box-sizing: border-box;
  font-size: 100%;
  line-height: 20px;
  vertical-align: top;
}
select:after {
  display: inline-block;
  content: "a";
}
select.error {
  border-color: #f00;
}

select::-ms-expand {
  display: none;
}

label.select-outer {
  display: inline-block;
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
}
label.select-outer:after {
  display: block;
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 10px;
  border-top: 8px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
}
label.select-outer.error {
  background-color: #ffeeee;
}
label.select-outer.error select {
  border-color: #f00;
}
label.select-outer select {
  position: relative;
  z-index: 2;
  background-color: transparent;
}

label.radio-outer {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  padding-left: 25px;
}
label.radio-outer .radio-mark {
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #bbbbbb;
  border-radius: 10px;
}
label.radio-outer .radio-mark:after {
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 6px;
  content: "";
}
label.radio-outer input[type=radio] {
  position: absolute;
  visibility: hidden;
  appearance: none;
  top: 50%;
  left: 4px;
  margin: -6px 0px 0px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  outline: 0px;
  vertical-align: middle;
}
label.radio-outer input[type=radio]:checked {
  background-color: #689b00;
}
label.radio-outer input[type=radio]:checked + .radio-mark:after {
  background-color: #689b00;
}

label.checkbox-outer {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}
label.checkbox-outer .checkbox-mark {
  display: block;
  position: absolute;
  top: 7px;
  left: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background-color: #fff;
  box-sizing: border-box;
}
label.checkbox-outer .checkbox-mark:after {
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  content: "";
}
label.checkbox-outer input[type=checkbox] {
  position: absolute;
  visibility: hidden;
}
label.checkbox-outer input[type=checkbox]:checked + .checkbox-mark:after {
  background-color: #689b00;
}

textarea {
  appearance: none;
  margin: 0px;
  padding: 5px 10px;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  font-size: 100%;
  line-height: 1.6;
}
textarea.error {
  background-color: #ffeeee;
  border-color: #f00;
}

form, .form-confirm {
  position: relative;
}
form p.explanation span.necessary, .form-confirm p.explanation span.necessary {
  display: inline-block;
  margin-right: 3px;
  color: #f00;
  font-size: 120%;
}
form p.error, .form-confirm p.error {
  display: none;
  color: #f00;
}
form dl, .form-confirm dl {
  line-height: 1.6;
}
form dl:after, .form-confirm dl:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
form dt, .form-confirm dt {
  position: relative;
  clear: left;
}
form dt.necessary:after, .form-confirm dt.necessary:after {
  display: inline-block;
  color: #f00;
  font-size: 120%;
  content: "*";
}
form dd, .form-confirm dd {
  margin-bottom: 20px;
}
form dd:after, .form-confirm dd:after {
  display: block;
  visibility: hidden;
  clear: left;
  content: "";
}
form dd label, .form-confirm dd label {
  display: inline-block;
  line-height: 32px;
}
form dd label > span, .form-confirm dd label > span {
  display: inline-block;
  margin-right: 10px;
}
form dd p, .form-confirm dd p {
  margin-top: 5px;
  margin-bottom: 0px;
}
form dd p.note, .form-confirm dd p.note {
  font-size: 90%;
}
form dd.error p.error, .form-confirm dd.error p.error {
  display: block;
}
form .button-area, .form-confirm .button-area {
  clear: both;
}
form .button-area .note, .form-confirm .button-area .note {
  font-size: 90%;
}
@media screen and (max-width: 767px) {
  form input[type=text], form input[type=number], form input[type=password], form input[type=email], form input[type=tel], form textarea, .form-confirm input[type=text], .form-confirm input[type=number], .form-confirm input[type=password], .form-confirm input[type=email], .form-confirm input[type=tel], .form-confirm textarea {
    width: 100%;
  }
  form dt, .form-confirm dt {
    margin-bottom: 5px;
    font-weight: bold;
  }
  form dt.necessary:after, .form-confirm dt.necessary:after {
    margin-left: 5px;
  }
  form dd, .form-confirm dd {
    margin-bottom: 20px;
  }
  form dd label.double, .form-confirm dd label.double {
    display: block;
    float: right;
    width: calc(50% - 5px);
  }
  form dd label.double:first-of-type, .form-confirm dd label.double:first-of-type {
    float: left;
  }
  form dd label.double ~ p, .form-confirm dd label.double ~ p {
    margin-top: 0px;
    padding-top: 5px;
  }
  form dd p, .form-confirm dd p {
    clear: both;
  }
  form .button-area, .form-confirm .button-area {
    margin-top: 20px;
  }
  form .button-area .button, .form-confirm .button-area .button {
    margin-top: 20px;
  }
  form .button-area .button:first-child, .form-confirm .button-area .button:first-child {
    margin-top: 0px;
  }
  form .button-area .note + .button, .form-confirm .button-area .note + .button {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  form dt, .form-confirm dt {
    float: left;
    padding-top: 5px;
    width: 150px;
    text-align: right;
  }
  form dt.necessary:after, .form-confirm dt.necessary:after {
    position: absolute;
    top: 0px;
    right: -10px;
  }
  form dd, .form-confirm dd {
    margin-left: 20px;
    margin-left: 170px;
    padding-left: 20px;
    border-left: 1px solid #dddddd;
  }
  form dd label, .form-confirm dd label {
    margin-right: 20px;
  }
  form dd label:last-child, .form-confirm dd label:last-child {
    margin-right: 0px;
  }
  form .button-area, .form-confirm .button-area {
    margin-top: 40px;
  }
  form .button-area .button, .form-confirm .button-area .button {
    margin-left: 20px;
  }
  form .button-area .button:first-child, .form-confirm .button-area .button:first-child {
    margin-left: 0px;
  }
  form .button-area .note + .button, .form-confirm .button-area .note + .button {
    margin-left: 0px;
  }
}

@media screen and (min-width: 768px) {
  .form-confirm dt {
    padding-top: 0px;
  }
}

.form-note {
  margin-top: 24px;
  font-size: 90%;
  line-height: 1.4;
  padding-left: 1em;
}
.form-note li {
  text-indent: -1em;
}

/**
 * フォームのステップ表示
 */
.form-steps {
  margin-left: -15px;
  margin-right: -15px;
  text-align: center;
}
.form-steps ul {
  display: table;
  overflow: hidden;
  margin: 0px auto;
  border-collapse: separate;
  border-spacing: 15px 0px;
  text-align: center;
}
.form-steps ul li {
  display: inline-block;
  display: table-cell;
  position: relative;
  background-color: #ddd;
  vertical-align: middle;
}
.form-steps ul li:after {
  display: block;
  position: absolute;
  top: 0px;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 10px solid #ddd;
  content: "";
}
.form-steps ul li:last-child:after {
  display: none;
}
.form-steps ul li.current {
  color: #fff;
  font-weight: bold;
  background-color: #689b00;
}
.form-steps ul li.current:after {
  border-left-color: #689b00;
}
.form-steps ul li > span {
  display: block;
}
@media screen and (max-width: 767px) {
  .form-steps {
    margin-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
    font-size: 12px;
  }
  .form-steps ul {
    width: 100%;
    table-layout: auto;
    border-spacing: 10px 0px;
  }
  .form-steps ul li {
    padding: 0px 5px;
    min-width: 20px;
    height: 40px;
  }
  .form-steps ul li:after {
    right: -8px;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 8px;
  }
  .form-steps ul li.current > span {
    display: block;
  }
  .form-steps ul li > span {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .form-steps {
    margin-bottom: 30px;
  }
  .form-steps ul li {
    padding: 0px 15px;
    height: 50px;
  }
  .form-steps ul li:after {
    right: -12px;
    border-left-width: 12px;
  }
}

/**
 * メッセージ表示エリアとのマージン
 */
#prompter + form,
#prompter + .form-confirm {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #prompter + form,
  #prompter + .form-confirm {
    margin-top: 20px;
  }
}

/**
 * トップページ
 */
@media screen and (min-width: 768px) {
  body.page-top header {
    margin-bottom: -192px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  body.page-top #globalNavigation a:after {
    background-color: #fff;
    background-color: #689b00;
  }
  body.page-top a.button-cart {
    background-color: #f6f6f6;
  }
}

main.page-top {
  position: relative;
  z-index: 5;
  min-height: 100%;
  padding: 0 0 40px;
}
@media screen and (min-width: 768px) {
  main.page-top {
    padding: 0 0 100px;
  }
}
@media screen and (max-width: 767px) {
  main.page-top {
    padding-left: 0px;
    padding-right: 0px;
  }
}
main.page-top #mainVisual {
  position: relative;
  z-index: 8;
  overflow: hidden;
  background: url(../images/index/mainVisual01.jpg) center top no-repeat, #689b00;
  background-size: cover;
  color: #fff;
}
main.page-top #mainVisual .logo {
  position: relative;
  z-index: 2;
}
main.page-top #mainVisual .logo img {
  width: 300px;
  height: auto;
}
main.page-top #mainVisual .catch {
  position: absolute;
  z-index: 3;
  width: 100%;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  line-height: 1.5em;
  text-align: center;
}
main.page-top #mainVisual .motto {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
}
main.page-top #mainVisual .button-scroll {
  display: block;
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  animation: scroll-arrow 1500ms ease-in 0s infinite normal;
}
main.page-top #mainVisual .button-scroll:before {
  display: block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
@media screen and (max-width: 767px) {
  main.page-top #mainVisual {
    height: 250px;
    margin-top: 0;
  }
  main.page-top #mainVisual .logo {
    margin-top: 20px;
    text-align: center;
  }
  main.page-top #mainVisual .logo img {
    width: 150px;
  }
  main.page-top #mainVisual .catch {
    bottom: 20px;
    font-size: 18px;
  }
  main.page-top #mainVisual .motto {
    top: -10px;
    right: -10px;
    height: 80%;
  }
}
@media screen and (min-width: 768px) {
  main.page-top #mainVisual {
    min-height: 100vh;
    height: auto;
    background-attachment: fixed;
  }
  main.page-top #mainVisual .logo {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  main.page-top #mainVisual .catch {
    top: 50%;
    margin-top: -72px;
    font-size: 32px;
  }
  main.page-top #mainVisual .motto {
    bottom: -10%;
    right: -10%;
    height: 90%;
  }
}
main.page-top .contents-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  main.page-top .contents-inner {
    padding-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  main.page-top .contents-inner {
    padding-top: 30px;
  }
}
main.page-top #news li {
  margin-bottom: 1em;
  line-height: 1.6;
}
main.page-top #news li a {
  display: block;
}
main.page-top #news li .post_date {
  display: block;
  float: left;
}
@media screen and (max-width: 767px) {
  main.page-top #news {
    padding-left: 10px;
    padding-right: 10px;
  }
  main.page-top #news li {
    font-size: 90%;
  }
  main.page-top #news li a {
    margin-left: 110px;
  }
}
@media screen and (min-width: 768px) {
  main.page-top #news li a {
    margin-left: 120px;
  }
}
main.page-top #service a {
  display: block;
  margin-bottom: 10px;
  border: 2px solid #689b00;
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
}
main.page-top #service a:hover {
  background-color: #689b00;
  color: #fff;
}
main.page-top #service a strong {
  display: inline-block;
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  main.page-top #service {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  main.page-top #service a {
    margin-top: 20px;
    padding: 10px;
    width: calc(50% - 20px);
    height: 60px;
    font-size: 18px;
    line-height: 36px;
  }
  main.page-top #service a.teiki {
    font-size: 30px;
  }
  main.page-top #service a.recipe {
    font-size: 30px;
  }
  main.page-top #service a strong {
    margin-left: 10px;
    font-size: 36px;
  }
  main.page-top #service a:nth-child(-n+2) {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  main.page-top #service {
    padding: 0px 10px;
  }
  main.page-top #service a {
    padding: 6px;
    height: 48px;
    line-height: 32px;
  }
  main.page-top #service a.teiki {
    font-size: 20px;
  }
  main.page-top #service a.recipe {
    font-size: 20px;
  }
}
main.page-top #products ul {
  overflow: hidden;
}
main.page-top #products ul li {
  position: relative;
  float: left;
  overflow: hidden;
}
main.page-top #products ul li a {
  display: block;
  background-position: center 50%;
  background-size: cover;
}
main.page-top #products ul li .product-name {
  display: block;
  position: absolute;
  color: #000;
  text-align: center;
}
main.page-top #products ul li .product-image {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  width: auto;
}
main.page-top #products ul li .spacer {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  main.page-top #products h2 {
    margin-left: 10px;
    margin-right: 10px;
  }
  main.page-top #products li {
    width: 50%;
  }
  main.page-top #products li .product-name {
    bottom: 10px;
    left: 10px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  main.page-top #products li .spacer {
    width: 100%;
    height: auto;
  }
  main.page-top #products .button-area {
    margin: 10px;
  }
  main.page-top #products .button-area a.button {
    width: 100%;
    font-size: 18px;
    line-height: 48px;
  }
}
@media screen and (min-width: 768px) {
  main.page-top #products ul {
    margin-bottom: 20px;
  }
  main.page-top #products li a {
    width: 100%;
    height: 100%;
  }
  main.page-top #products li a:hover .product-name {
    opacity: 1;
  }
  main.page-top #products li .product-name {
    opacity: 0;
    width: 100%;
    background-color: rgba(246, 246, 246, 0.7);
    font-size: 150%;
    font-weight: bold;
    transition: opacity 300ms ease;
  }
  main.page-top #products li .spacer {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-top #products li {
    width: 175px;
    height: 175px;
  }
  main.page-top #products li .product-name {
    line-height: 175px;
  }
}
@media screen and (min-width: 1000px) {
  main.page-top #products li {
    width: 225px;
    height: 225px;
  }
  main.page-top #products li .product-name {
    line-height: 225px;
  }
}
main.page-top #links {
  overflow: hidden;
}
main.page-top #links .banners {
  float: left;
  width: 350px;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-top #links .banners {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  main.page-top #links .banners {
    float: none;
    margin: 0px auto;
    max-width: 90%;
  }
}
main.page-top #links .banners a {
  display: block;
  margin-bottom: 20px;
  padding: 10px 20px 12px;
  border: 1px solid #aaa;
  color: #333;
  font-size: 20px;
}
main.page-top #links .banners a:hover {
  border-color: #689b00;
  color: #689b00;
}
@media screen and (max-width: 767px) {
  main.page-top #links .banners a {
    margin-bottom: 15px;
  }
}
main.page-top #links .banners a > span {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
main.page-top #links .banners a.sns {
  border: 0px;
  padding-left: 40px;
  background: url(../images/index/icon_instagram.png) 0px 50%/30px no-repeat;
}
main.page-top #links .fb-page {
  display: block;
  float: right;
  width: 500px;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-top #links .fb-page {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  main.page-top #links .fb-page {
    float: none;
    margin: 0px auto;
    max-width: 90%;
  }
}

/**
 * スクロール矢印
 */
@keyframes scroll-arrow {
  0% {
    opacity: 1;
    transform: translate(0%, -50%) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translate(0px, 0%) rotate(45deg);
  }
}
@-moz-keyframes scroll-arrow {
  0% {
    opacity: 1;
    -moz-transform: translate(0%, -50%) rotate(45deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translate(0px, 0%) rotate(45deg);
  }
}
@-webkit-keyframes scroll-arrow {
  0% {
    opacity: 1;
    -webkit-transform: translate(0%, -50%) rotate(45deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0px, 0%) rotate(45deg);
  }
}
/**
 * 農業福島園について
 */
main.page-about .greeting p {
  font-size: 15px;
  line-height: 2;
}
main.page-about .greeting figure {
  display: block;
}
main.page-about .greeting figure img {
  width: 100%;
}
main.page-about .greeting .signature {
  font-size: 120%;
  text-align: right;
}
main.page-about .profiles h3 {
  margin-top: 2em;
}
main.page-about .profiles .profile-image {
  position: relative;
}
main.page-about .profiles .profile-image img {
  max-width: 100%;
}
main.page-about .profiles .member {
  font-size: 16px;
}
main.page-about .profiles .member li {
  display: flex;
  margin-top: 0.6em;
  line-height: 1.5;
}
main.page-about .profiles .member .member-charge {
  display: inline-block;
  font-size: 14px;
  flex: 0 0 13.5em;
  line-height: 24px;
  margin-bottom: 0.5;
  width: 13.5em;
}
main.page-about .profiles .member .member-name {
  flex: 1 0 auto;
}
main.page-about .profiles .member small {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  main.page-about .greeting .text {
    margin-bottom: -20px;
  }
  main.page-about .greeting .image {
    margin-bottom: 20px;
    height: auto;
    text-align: center;
  }
  main.page-about .greeting figure {
    margin-left: -10px;
    margin-right: -10px;
  }
  main.page-about .profiles .member {
    margin-bottom: 20px;
    padding-left: 1em;
  }
  main.page-about #access .google-map {
    margin-bottom: 20px;
    width: 100%;
  }
  main.page-about #access .google-map iframe {
    max-width: 100%;
    height: 300px;
  }
}
@media screen and (min-width: 768px) {
  main.page-about .greeting h3 {
    clear: left;
  }
  main.page-about .greeting .text {
    margin: 0px auto -30px;
    writing-mode: vertical-rl;
  }
  main.page-about .greeting .text p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 2.8;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 999px) {
  main.page-about .greeting .text p {
    line-height: 2.4;
  }
}
@media screen and (min-width: 768px) {
  main.page-about .greeting .image {
    float: right;
    margin-left: 20px;
  }
  main.page-about .profiles .profile-image {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: left;
    margin-top: 40px;
  }
  main.page-about .profiles .profile-image .photo1 {
    flex: 0 1 100%;
    width: 100%;
    min-width: 400px;
  }
  main.page-about .profiles .member {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  main.page-about #access {
    overflow: hidden;
  }
  main.page-about #access .google-map {
    float: right;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-about .greeting .left-block {
    width: 380px;
  }
}

/**
 * 福島園のお約束
 */
main.page-policy .policy-list {
  margin-top: 30px;
}
main.page-policy .policy-list dt {
  font-size: 120%;
  font-weight: bold;
}
main.page-policy .policy-list dt .number:after {
  display: inline-block;
  content: ".";
}
main.page-policy .policy-list dd strong {
  color: #689b00;
}
main.page-policy .policy-list dd .button {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  main.page-policy dt {
    margin-bottom: 10px;
    line-height: 1.3;
  }
  main.page-policy dd {
    margin-bottom: 40px;
  }
  main.page-policy .button-area a.button {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  main.page-policy dt {
    margin-bottom: 15px;
    font-size: 120%;
  }
  main.page-policy dd {
    margin-bottom: 60px;
  }
  main.page-policy .button-area a.button {
    margin-right: 20px;
  }
}

/**
 * 商品ページ
 */
main.page-products {
  /**
   * 商品一覧
   */
  /**
   * 商品詳細
   */
}
main.page-products .products-list-toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
main.page-products .products-list-toolbar h1 {
  margin: 0;
}
main.page-products .products-list-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
main.page-products .products-category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
main.page-products .products-category-filter__label {
  font-size: 0.95em;
}
main.page-products .products-category-filter__field {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
main.page-products .products-category-filter__field::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.28rem;
  border-right: 2px solid rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
  transition: border-color 0.15s ease;
}
main.page-products .products-category-filter:hover .products-category-filter__field::after {
  border-color: #4a7c3f;
}
main.page-products .products-category-filter__select {
  min-width: 13em;
  max-width: 100%;
  padding: 0.5em 2.15em 0.5em 0.75em;
  font-size: inherit;
  line-height: 1.45;
  box-sizing: border-box;
  color: #222;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.45rem;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease,
    transform 0.1s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
main.page-products .products-category-filter__select:hover {
  border-color: rgba(74, 124, 63, 0.45);
  background-color: #f8faf7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
main.page-products .products-category-filter__select:focus {
  outline: none;
  border-color: #4a7c3f;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(74, 124, 63, 0.25), 0 2px 8px rgba(0, 0, 0, 0.06);
}
main.page-products .products-category-filter__select:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
main.page-products .products-in-stock-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95em;
  cursor: pointer;
  user-select: none;
}
main.page-products .products-in-stock-toggle__label {
  line-height: 1.3;
}
main.page-products .products-toggle-switch {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  flex-shrink: 0;
}
main.page-products .products-toggle-switch__input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
main.page-products .products-toggle-switch__ui {
  position: absolute;
  inset: 0;
  display: block;
  background: #c8c8c8;
  border-radius: 999px;
  transition: background 0.2s ease;
  pointer-events: none;
}
main.page-products .products-toggle-switch__ui::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
main.page-products .products-toggle-switch__input:checked + .products-toggle-switch__ui {
  background: #4a7c3f;
}
main.page-products .products-toggle-switch__input:checked + .products-toggle-switch__ui::after {
  transform: translateX(1.25rem);
}
main.page-products .products-toggle-switch__input:focus-visible + .products-toggle-switch__ui {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #4a7c3f;
}
main.page-products ul.products-list {
  overflow: hidden;
}
main.page-products ul.products-list > li {
  position: relative;
  float: left;
  box-sizing: border-box;
}
main.page-products ul.products-list > li.soldout:after {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 10px;
  background-color: #f00;
  color: #fff;
  content: "売り切れ";
}
main.page-products ul.products-list > li.soldout .product-image .image-outer:after {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
}
main.page-products ul.products-list .product-image {
  display: block;
}
main.page-products ul.products-list .product-image .image-outer {
  display: inline-block;
  position: relative;
  width: 100%;
  outline-offset: -1px;
  text-align: center;
  vertical-align: middle;
}
main.page-products ul.products-list .product-image .image-outer:before {
  display: inline-block;
  height: 100%;
  line-height: 100%;
  width: 0px;
  vertical-align: middle;
  content: "";
}
main.page-products ul.products-list .product-image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  vertical-align: middle;
  transition: opacity 300ms ease;
}
main.page-products ul.products-list .product-name {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.5;
}
main.page-products ul.products-list .price {
  line-height: 1.5;
}
main.page-products ul.products-list .cart-control {
  margin-top: 10px;
}
main.page-products ul.products-list .cart-control .select-quantity:before {
  display: block;
  display: none;
  position: absolute;
  top: 1px;
  right: 30px;
  content: attr(data-unit);
  line-height: 30px;
}
main.page-products ul.products-list .cart-control .select-quantity select {
  padding-right: 45px;
}
@media screen and (max-width: 767px) {
  main.page-products ul.products-list > li {
    margin-bottom: 20px;
    width: 50%;
  }
  main.page-products ul.products-list > li:nth-child(2n-1) {
    clear: left;
    padding-right: 10px;
  }
  main.page-products ul.products-list > li:nth-child(2n) {
    padding-left: 10px;
  }
  main.page-products ul.products-list .product-image .image-outer {
    height: 160px;
  }
  main.page-products ul.products-list .cart-control .select-quantity {
    margin-bottom: 10px;
    width: 100%;
  }
  main.page-products ul.products-list .cart-control .select-quantity select {
    width: 100%;
  }
  main.page-products ul.products-list .cart-control button {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  main.page-products ul.products-list .product-image:hover img {
    opacity: 0.8;
  }
  main.page-products ul.products-list .product-image .image-outer {
    height: 210px;
    line-height: 210px;
  }
  main.page-products ul.products-list .product-image img {
    line-height: 210px;
    vertical-align: middle;
  }
  main.page-products ul.products-list .product-name {
    font-size: 120%;
  }
  main.page-products ul.products-list .cart-control {
    overflow: hidden;
  }
  main.page-products ul.products-list .cart-control button.small.main {
    float: right;
    width: 125px;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-products ul.products-list > li {
    margin-bottom: 40px;
    margin-right: 35px;
    width: 210px;
  }
  main.page-products ul.products-list > li:nth-child(3n) {
    margin-right: 0px;
  }
  main.page-products ul.products-list > li:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1000px) {
  main.page-products ul.products-list > li {
    margin-bottom: 30px;
    margin-right: 20px;
    width: 210px;
  }
  main.page-products ul.products-list > li:nth-child(4n) {
    margin-right: 0px;
  }
  main.page-products ul.products-list > li:nth-child(4n+1) {
    clear: left;
  }
}
main.page-products .product-detail:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
main.page-products .product-detail .product-image {
  position: relative;
}
main.page-products .product-detail .product-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: auto;
  max-height: none;
  vertical-align: middle;
}
main.page-products .product-detail .product-image .thumbnails li {
  float: left;
  cursor: pointer;
  text-align: center;
}
main.page-products .product-detail .product-image .thumbnails li:last-child {
  margin-right: 0px;
}
main.page-products .product-detail .product-image .thumbnails li img {
  vertical-align: middle;
}
main.page-products .product-detail .product-information {
  margin-bottom: 30px;
}
main.page-products .product-detail .product-information .price {
  margin-bottom: 30px;
  vertical-align: baseline;
}
main.page-products .product-detail .product-information .price > span {
  display: block;
}
main.page-products .product-detail .product-information .price .genmai {
  display: inline-block;
  margin-left: 20px;
}
main.page-products .product-detail .product-information .price .continued_price {
  margin-top: 10px;
  padding: 0px 5px 5px;
  border: 2px solid #ddd;
}
main.page-products .product-detail .product-information .price .continued_price > label {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: -5px;
  padding: 5px;
  background-color: #ddd;
  font-size: 90%;
}
main.page-products .product-detail .product-information .price .price-number {
  font-size: 180%;
  font-weight: bold;
  vertical-align: baseline;
}
main.page-products .product-detail .product-information .price .tax {
  margin-top: 1em;
  font-size: 90%;
}
main.page-products .product-detail .product-information .soldout {
  color: #f00;
  font-size: 150%;
}
main.page-products .product-detail .product-information .out-of-order {
  color: #f00;
}
main.page-products .product-detail .product-information .cart-control {
  margin-bottom: 20px;
}
main.page-products .product-detail .product-information .cart-control .note {
  margin-top: 5px;
  color: #689b00;
}
main.page-products .product-detail .product-information + .button-area {
  clear: both;
}
@media screen and (max-width: 767px) {
  main.page-products .product-detail .product-image {
    margin: 0px auto 20px;
    width: 300px;
  }
  main.page-products .product-detail .product-image .thumbnails {
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  main.page-products .product-detail .product-image .thumbnails li {
    margin-right: 5px;
    width: 50px;
    height: 50px;
    outline: 2px solid #fff;
    outline-offset: -2px;
    line-height: 49px;
    background-color: rgba(255, 255, 255, 0.8);
  }
  main.page-products .product-detail .product-image .thumbnails li img {
    max-width: 50px;
    max-height: 50px;
  }
}
@media screen and (min-width: 768px) {
  main.page-products .product-detail .product-image {
    float: left;
    margin-bottom: 30px;
  }
  main.page-products .product-detail .product-image .main-image {
    width: 100%;
  }
  main.page-products .product-detail .product-image .thumbnails {
    margin-top: 10px;
  }
  main.page-products .product-detail .product-image .thumbnails li {
    margin-right: 10px;
    width: 80px;
    height: 80px;
    outline: 1px solid #dddddd;
    outline-offset: -1px;
    line-height: 79px;
  }
  main.page-products .product-detail .product-image .thumbnails li img {
    max-height: 100%;
    max-width: 100%;
  }
  main.page-products .product-detail .product-information {
    float: right;
  }
  main.page-products .product-detail .product-information .price .continued_price {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-products .product-detail .product-image {
    width: 300px;
  }
  main.page-products .product-detail .product-information {
    width: 360px;
  }
}
@media screen and (min-width: 1000px) {
  main.page-products .product-detail .product-image {
    width: 400px;
  }
  main.page-products .product-detail .product-information {
    width: 460px;
  }
}

/**
 * お知らせページ
 */
main.page-news ul.news-list {
  overflow: hidden;
}
main.page-news ul.news-list li {
  margin-bottom: 1em;
  line-height: 1.6;
}
main.page-news ul.news-list li .post-date {
  display: block;
  float: left;
}
main.page-news ul.news-list li a {
  display: block;
}
@media screen and (max-width: 767px) {
  main.page-news ul.news-list li {
    font-size: 90%;
  }
  main.page-news ul.news-list li a {
    margin-left: 110px;
  }
}
@media screen and (min-width: 768px) {
  main.page-news ul.news-list li a {
    margin-left: 120px;
  }
}
main.page-news .year-list {
  padding-top: 1em;
  border-top: 1px solid #dddddd;
}
main.page-news .year-list a {
  display: inline-block;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  main.page-news .year-list a {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  main.page-news .year-list a {
    margin-right: 20px;
  }
}
main.page-news.detail .post-date {
  display: block;
  margin-bottom: 30px;
}
main.page-news.detail .news-body {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #dddddd;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  main.page-news.detail h1 {
    font-size: 200%;
  }
}

/**
 * お買い物かごページ
 */
main.page-cart .cart-table-title {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
}
main.page-cart .cart-table-title .delete-product {
  top: auto;
}
main.page-cart ul.product-list {
  margin-bottom: 50px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
main.page-cart ul.product-list li {
  position: relative;
  border-bottom: 1px solid #dddddd;
}
main.page-cart ul.product-list li.discount {
  display: none;
}
main.page-cart ul.product-list li.discount.show {
  display: block;
}
main.page-cart ul.product-list .product-name {
  padding-top: 6px;
  line-height: 20px;
}
main.page-cart ul.product-list .product-name + .product-group .add-product, main.page-cart ul.product-list .product-name + .product-group .icon-question {
  display: inline-block;
}
main.page-cart ul.product-list .product-price {
  line-height: 32px;
}
main.page-cart ul.product-list .product-quantity {
  position: relative;
  line-height: 32px;
}
main.page-cart ul.product-list .product-quantity .js-plus-quantity,
main.page-cart ul.product-list .product-quantity .js-minus-quantity {
  display: block;
  position: absolute;
  top: 4px;
  width: 24px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  line-height: 24px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
}
main.page-cart ul.product-list .product-quantity .js-plus-quantity {
  left: 0px;
}
main.page-cart ul.product-list .product-quantity .js-minus-quantity {
  right: 0px;
}
main.page-cart ul.product-list .product-amount {
  padding-top: 6px;
  line-height: 20px;
}
main.page-cart ul.product-list .product-amount .tag {
  display: none;
}
main.page-cart ul.product-list .add-product, main.page-cart ul.product-list .icon-question {
  display: none;
}
main.page-cart ul.product-list .delete-product {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
main.page-cart ul.product-list .delete-product:before, main.page-cart ul.product-list .delete-product:after {
  display: block;
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background-color: #000;
  content: "";
}
main.page-cart ul.product-list .delete-product:before {
  transform: rotate(45deg);
}
main.page-cart ul.product-list .delete-product:after {
  transform: rotate(-45deg);
}
main.page-cart ul.product-list .discount-label {
  display: inline-block;
}
main.page-cart ul.product-list .discount-amount {
  display: inline-block;
  text-align: right;
}
main.page-cart ul.product-list .warning {
  display: block;
  color: #f00;
}
main.page-cart .product-name {
  display: inline-block;
}
main.page-cart .product-group {
  position: relative;
}
main.page-cart .product-seimai-rate {
  display: inline-block;
}
main.page-cart .product-price {
  display: inline-block;
}
main.page-cart .product-quantity {
  display: inline-block;
  text-align: center;
}
main.page-cart .product-quantity .js-quantity:after {
  display: inline-block;
  content: attr(data-unit);
}
main.page-cart .product-amount {
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.page-cart ul.product-list li {
    padding: 10px 0px;
  }
  main.page-cart ul.product-list li.seimai {
    padding-bottom: 60px;
  }
  main.page-cart .product-group {
    display: block;
    position: static;
    margin-bottom: 10px;
  }
  main.page-cart .product-group:last-child {
    margin-bottom: 0px;
  }
  main.page-cart .product-name {
    display: block;
    margin: 0px 0px 10px;
  }
  main.page-cart .product-price {
    margin-right: 20px;
    width: 50px;
  }
  main.page-cart .product-seimai-rate + .product-quantity {
    margin-left: 10px;
  }
  main.page-cart .product-quantity {
    margin-left: 102px;
    width: 100px;
  }
  main.page-cart .product-amount {
    float: right;
  }
  main.page-cart .add-product {
    position: absolute;
    left: 0px;
    bottom: 20px;
  }
  main.page-cart .icon-question {
    position: absolute;
    bottom: 25px;
    left: 160px;
  }
  main.page-cart .delete-product {
    position: relative;
    float: right;
    top: 6px;
    margin-left: 10px;
  }
  main.page-cart .discount-amount {
    float: right;
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  main.page-cart ul.product-list li {
    padding: 20px 0px;
  }
  main.page-cart ul.product-list li .product-amount {
    position: relative;
  }
  main.page-cart ul.product-list li .product-amount .tag {
    display: inline-block;
    position: absolute;
    top: 3px;
    right: -60px;
    padding: 3px 0px;
    width: 50px;
    background-color: #689b00;
    color: #fff;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
  }
  main.page-cart ul.product-list .warning {
    margin-top: 1em;
    margin-left: 173px;
  }
  main.page-cart .product-name {
    margin-right: 20px;
    width: 150px;
  }
  main.page-cart .product-name + .product-group {
    margin-top: -26px;
  }
  main.page-cart .product-group {
    display: block;
    margin-top: 10px;
    margin-left: 173px;
  }
  main.page-cart .product-seimai-rate {
    position: relative;
    margin-right: 20px;
    width: 180px;
  }
  main.page-cart .product-seimai-rate + .product-quantity {
    margin-left: 0px;
  }
  main.page-cart .product-price {
    margin-right: 30px;
    width: 70px;
    text-align: right;
  }
  main.page-cart .product-quantity {
    margin-left: 203px;
    margin-right: 40px;
    width: 125px;
  }
  main.page-cart .product-amount {
    width: 70px;
  }
  main.page-cart .add-product {
    position: relative;
    margin-left: 5px;
    padding-left: 3px;
    width: 70px;
    text-align: left;
  }
  main.page-cart .add-product > span {
    display: inline-block;
    position: absolute;
    top: 2px;
    font-size: 12px;
    line-height: 14px;
  }
  main.page-cart .add-product > span.single {
    line-height: 26px;
  }
  main.page-cart .icon-question {
    position: absolute;
    top: 8px;
    right: -10px;
  }
  main.page-cart .delete-product {
    position: absolute;
    top: 6px;
    right: 0px;
  }
  main.page-cart .discount-label {
    width: 538px;
  }
  main.page-cart .discount-amount {
    width: 70px;
  }
}
main.page-cart .nologin-message {
  margin-bottom: 40px;
}
main.page-cart .button-area.shopping {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  main.page-cart .button-area {
    margin-bottom: 40px;
  }
  main.page-cart .button-area .button {
    margin-bottom: 20px;
  }
  main.page-cart .button-area .button:last-child {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  main.page-cart .button-area {
    margin-bottom: 30px;
  }
  main.page-cart .button-area .button {
    margin-right: 20px;
  }
}

/**
 * ご注文
 */
main.page-shopping-address .select-address label.radio-outer {
  display: block;
  margin-bottom: 20px;
  padding-left: 30px;
  line-height: 1.6;
}
main.page-shopping-address .select-address label.radio-outer:last-child {
  margin-bottom: 0px;
}
main.page-shopping-address .select-address label.radio-outer .radio-mark {
  top: 0px;
  margin-top: 0px;
}
main.page-shopping-address .select-address label.radio-outer .name {
  display: block;
  font-weight: bold;
}
main.page-shopping-address .select-address label.radio-outer .name .tag {
  display: inline-block;
  margin-left: 10px;
  padding: 1px 5px;
  background-color: #eee;
  font-size: 85%;
  font-weight: normal;
}
main.page-shopping-address .select-address label.radio-outer .zipcode {
  display: block;
}
main.page-shopping-address .contents-inner section.general section.general.other-address {
  padding-left: 0px;
}
main.page-shopping-address section.other-address.general.hide {
  display: none;
}
/* 会員登録先あり: dl の下に来る新しいお届け先ブロック用の余白 */
main.page-shopping-address #ship-form.form--has-registered-addr #ship-new-block {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main.page-shopping-address #ship-form.form--has-registered-addr #ship-new-block {
    margin-top: 20px;
  }
}
main.page-shopping-address form .select-address-addr {
  display: block;
  font-weight: normal;
  margin-top: 0.25em;
  line-height: 1.6;
  white-space: pre-line;
}

main.page-shopping-payment label.input-coupon.hide {
  display: none;
}
main.page-shopping-payment dt.send_hope_date.hide,
main.page-shopping-payment dd.send_hope_date.hide {
  display: none;
}
main.page-shopping-payment .delivery-direct.note {
  color: #f00;
}
main.page-shopping-payment .delivery-direct.hide {
  display: none;
}
@media screen and (max-width: 767px) {
  main.page-shopping-payment dd.coupon input[type=text] {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  main.page-shopping-payment dd.coupon > label {
    margin-right: 0px;
  }
  main.page-shopping-payment textarea.comment {
    width: 400px;
  }
}

main.page-shopping-confirm table.cart-detail,
main.page-shopping-complete table.cart-detail,
.order-history-detail table.cart-detail {
  width: 100%;
}
main.page-shopping-confirm table.cart-detail tr.amount_sum td,
main.page-shopping-complete table.cart-detail tr.amount_sum td,
.order-history-detail table.cart-detail tr.amount_sum td {
  text-align: right;
}
main.page-shopping-confirm table.cart-detail tr.price_sum td,
main.page-shopping-complete table.cart-detail tr.price_sum td,
.order-history-detail table.cart-detail tr.price_sum td {
  border-top: 3px double #aaa;
}
main.page-shopping-confirm table.cart-detail tr.same-product .product-name, main.page-shopping-confirm table.cart-detail tr.same-product .seimai-rate,
main.page-shopping-complete table.cart-detail tr.same-product .product-name,
main.page-shopping-complete table.cart-detail tr.same-product .seimai-rate,
.order-history-detail table.cart-detail tr.same-product .product-name,
.order-history-detail table.cart-detail tr.same-product .seimai-rate {
  border-top: 0px;
}
main.page-shopping-confirm table.cart-detail th, main.page-shopping-confirm table.cart-detail td,
main.page-shopping-complete table.cart-detail th,
main.page-shopping-complete table.cart-detail td,
.order-history-detail table.cart-detail th,
.order-history-detail table.cart-detail td {
  padding: 7px 5px;
  line-height: 1.6;
}
main.page-shopping-confirm table.cart-detail td,
main.page-shopping-complete table.cart-detail td,
.order-history-detail table.cart-detail td {
  border-top: 1px solid #dddddd;
}
main.page-shopping-confirm table.cart-detail td.quantity,
main.page-shopping-complete table.cart-detail td.quantity,
.order-history-detail table.cart-detail td.quantity {
  text-align: right;
}
main.page-shopping-confirm table.cart-detail td.amount,
main.page-shopping-complete table.cart-detail td.amount,
.order-history-detail table.cart-detail td.amount {
  text-align: right;
  min-width: 65px;
}
main.page-shopping-confirm table.cart-detail td.discount:before,
main.page-shopping-complete table.cart-detail td.discount:before,
.order-history-detail table.cart-detail td.discount:before {
  display: inline-block;
  content: "▲";
}
main.page-shopping-confirm table.cart-detail td.total,
main.page-shopping-complete table.cart-detail td.total,
.order-history-detail table.cart-detail td.total {
  font-size: 120%;
  font-weight: bold;
}
main.page-shopping-confirm table.cart-detail td .tag,
main.page-shopping-complete table.cart-detail td .tag,
.order-history-detail table.cart-detail td .tag {
  display: inline-block;
  padding: 0px 3px;
  font-size: 80%;
  color: #ffffff;
  vertical-align: middle;
  background-color: #689b00;
}
main.page-shopping-confirm .notice-list,
main.page-shopping-complete .notice-list,
.order-history-detail .notice-list {
  padding: 20px;
  background-color: #eee;
}
main.page-shopping-confirm .notice-list .notice-title,
main.page-shopping-complete .notice-list .notice-title,
.order-history-detail .notice-list .notice-title {
  font-size: 100%;
}
main.page-shopping-confirm .notice-list ul,
main.page-shopping-complete .notice-list ul,
.order-history-detail .notice-list ul {
  padding-left: 1.2em;
}
main.page-shopping-confirm .notice-list li,
main.page-shopping-complete .notice-list li,
.order-history-detail .notice-list li {
  margin-bottom: 0.2em;
  line-height: 1.6;
  list-style: disc outside;
}
main.page-shopping-confirm .notice-list li:last-child,
main.page-shopping-complete .notice-list li:last-child,
.order-history-detail .notice-list li:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  main.page-shopping-confirm .notice-list,
  main.page-shopping-complete .notice-list,
  .order-history-detail .notice-list {
    font-size: 90%;
  }
}
@media screen and (min-width: 768px) {
  main.page-shopping-confirm table.cart-detail th, main.page-shopping-confirm table.cart-detail td,
  main.page-shopping-complete table.cart-detail th,
  main.page-shopping-complete table.cart-detail td,
  .order-history-detail table.cart-detail th,
  .order-history-detail table.cart-detail td {
    padding: 10px 8px;
  }
}

/**
 * お買い物ガイド
 */
main.page-guide #steps dt {
  position: relative;
}
@media screen and (max-width: 767px) {
  main.page-guide #steps dt .step-number {
    margin-right: 5px;
  }
  main.page-guide #steps dt .step-number:after {
    display: inline-block;
    content: ".";
  }
}
@media screen and (min-width: 768px) {
  main.page-guide #steps dt {
    width: 140px;
  }
  main.page-guide #steps dt .step-number {
    position: absolute;
    top: 50px;
    right: 0px;
    color: #ccc;
    font-size: 80px;
    line-height: 1em;
  }
}
@media screen and (min-width: 768px) {
  main.page-guide #steps dd {
    margin-left: 160px;
    min-height: 130px;
  }
}
main.page-guide table.postage {
  margin-bottom: 10px;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
main.page-guide table.postage th, main.page-guide table.postage td {
  padding: 5px 10px;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
main.page-guide table.postage th {
  text-align: left;
}
main.page-guide table.postage thead {
  background-color: #eee;
}
main.page-guide table.postage thead th:first-child {
  border-right: 3px double #dddddd;
}
main.page-guide table.postage tbody th {
  min-width: 50px;
  border-right: 3px double #dddddd;
}
main.page-guide table.postage tbody td {
  text-align: right;
}
main.page-guide table.postage tbody td.prefecture {
  min-width: 60px;
  width: 26%;
  text-align: left;
}
main.page-guide table.postage tbody td.prefecture > span:before {
  display: inline-block;
  content: "、";
}
main.page-guide table.postage tbody td.prefecture > span:first-child:before {
  display: none;
  content: "";
}
@media screen and (max-width: 767px) {
  main.page-guide table.postage {
    width: 100%;
  }
  main.page-guide table.postage th, main.page-guide table.postage td {
    padding: 5px;
  }
}
main.page-guide .postage-outer {
  overflow-x: scroll;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
main.page-guide .continual strong {
  color: #689b00;
}
main.page-guide #payment .payway-list > li {
  margin-bottom: 3em;
  padding-left: 1em;
}
main.page-guide #payment .payway-list .payway-name {
  display: inline-block;
  text-indent: -1em;
  margin-bottom: 5px;
  font-weight: bold;
}
main.page-guide #payment .account-list {
  margin-top: 20px;
  padding: 10px;
  background-color: #eee;
}
main.page-guide #payment .payment-fee li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 250px;
  line-height: 1.5;
}
main.page-guide #payment .payment-fee li span {
  display: inline-block;
  position: absolute;
  left: 0px;
}
@media screen and (max-width: 767px) {
  main.page-guide #payment img.card-brand {
    margin-left: -1em;
  }
  main.page-guide #payment .payment-fee li {
    padding-left: 0px;
    text-align: right;
  }
  main.page-guide #payment .payment-fee li span {
    display: block;
    position: relative;
    text-align: left;
  }
}

/**
 * よくある質問
 */
main.page-faq dl {
  line-height: 1.6;
}
main.page-faq dl dt {
  margin-top: 40px;
  margin-bottom: 5px;
  font-size: 120%;
  font-weight: bold;
}
main.page-faq dl dd {
  padding-left: 10px;
  border-left: 5px solid #eee;
}
main.page-faq dl dd .answer {
  display: block;
  color: #689b00;
  font-weight: bold;
}
/**
 * お問い合わせページ
 */
main.page-contact .phone-number {
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #eee;
}
main.page-contact .phone-number dt {
  float: left;
}
main.page-contact .phone-number dd {
  margin-bottom: 5px;
  color: #689b00;
}
main.page-contact .phone-number dd.office-time {
  color: #333;
  font-size: 50%;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  main.page-contact .phone-number {
    padding: 15px 10px;
    font-size: 200%;
  }
  main.page-contact .phone-number dd {
    margin-left: 70px;
  }
  main.page-contact .caution-title {
    margin-bottom: 5px;
    font-size: 100%;
  }
  main.page-contact .caution {
    font-size: 90%;
  }
}
@media screen and (min-width: 768px) {
  main.page-contact .phone-number {
    padding: 20px;
    font-size: 300%;
  }
  main.page-contact .phone-number dd {
    margin-left: 100px;
  }
  main.page-contact form[name=contact] dd.note {
    margin-left: 0px;
    padding-left: 0px;
    border-left: 0px;
  }
}

/**
 * お客様の声
 */
main.page-voice .voice-list {
  overflow: hidden;
}
main.page-voice .voice-list li {
  position: relative;
  box-sizing: border-box;
}
main.page-voice .voice-list a {
  display: block;
  box-sizing: border-box;
  color: #333333;
  line-height: 1.6;
}
main.page-voice .voice-list a > span {
  display: block;
}
main.page-voice .voice-list a > span.name {
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.page-voice .voice-list li {
    border-bottom: 1px solid #dddddd;
  }
  main.page-voice .voice-list li:first-child {
    border-top: 1px solid #dddddd;
  }
  main.page-voice .voice-list a {
    padding: 15px 40px 15px 0px;
  }
  main.page-voice .voice-list a:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -8px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #aaa;
    border-right: 3px solid #aaa;
    content: "";
    transform: rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  main.page-voice .voice-list {
    margin-top: 50px;
  }
  main.page-voice .voice-list li {
    float: left;
    border: 1px solid #dddddd;
    border-radius: 3px;
    transition: border 300ms ease;
  }
  main.page-voice .voice-list li:hover {
    border-color: #689b00;
  }
  main.page-voice .voice-list a {
    padding: 20px;
    height: 100%;
  }
  main.page-voice .voice-list a span.name {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    color: #999;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-voice .voice-list li {
    margin-bottom: 62px;
    margin-right: 62px;
    width: 192px;
    height: 192px;
  }
  main.page-voice .voice-list li:nth-child(3n) {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1000px) {
  main.page-voice .voice-list li {
    margin-bottom: 44px;
    margin-right: 44px;
    width: 192px;
    height: 192px;
  }
  main.page-voice .voice-list li:nth-child(4n) {
    margin-right: 0px;
  }
}
main.page-voice .voice-image img {
  max-width: 100%;
}
main.page-voice .comment {
  margin-bottom: 30px;
}
main.page-voice .button-area {
  margin-top: 30px;
}

/**
 * LPページ
 */
@media screen and (max-width: 767px) {
  main.page-komegura h1 {
    font-size: 170%;
  }
}
main.page-komegura .komegura-comic {
  clear: both;
  display: block;
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  main.page-komegura .komegura-comic {
    margin-bottom: 20px;
  }
}
main.page-komegura .komegura-comic img {
  max-width: 100%;
  height: auto;
}
main.page-komegura .komegura-comic #komeguraComic {
  display: none;
}
main.page-komegura .komegura-comic #komeguraComic.slick-initialized {
  display: block;
}
main.page-komegura .komegura-comic .comic-page {
  background-color: #fff;
  display: block;
  aspect-ratio: 1280/1810;
  width: 100%;
}
main.page-komegura .komegura-comic .slick-slide {
  height: auto;
}
main.page-komegura .komegura-comic .slick-arrow {
  appearance: none;
  border: 0px;
  border-radius: 50%;
  background-color: #689b00;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 36px;
  height: 36px;
  top: calc(100% + 16px);
  text-indent: -100px;
}
main.page-komegura .komegura-comic .slick-arrow::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  box-sizing: border-box;
  content: "";
  width: 30%;
  height: 30%;
  position: absolute;
  top: 35%;
  left: 30%;
  transform: rotate(45deg);
}
main.page-komegura .komegura-comic .slick-arrow.slick-next {
  right: 0px;
}
main.page-komegura .komegura-comic .slick-arrow.slick-prev {
  left: 0px;
}
main.page-komegura .komegura-comic .slick-arrow.slick-prev::after {
  left: 40%;
  transform: rotate(-135deg);
}
main.page-komegura .komegura-comic .slick-arrow[aria-disabled=true] {
  background-color: #aaa;
  pointer-events: none;
}
main.page-komegura .komegura-comic .dots {
  margin-top: -36px;
}
main.page-komegura .komegura-comic .slick-dots {
  display: flex;
  justify-content: center;
}
main.page-komegura .komegura-comic .slick-dots > li {
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: center;
  height: 36px;
  overflow: hidden;
  width: 36px;
  text-indent: -100px;
  font-size: 0;
}
main.page-komegura .komegura-comic .slick-dots > li.slick-active {
  cursor: default;
}
main.page-komegura .komegura-comic .slick-dots > li.slick-active button {
  background-color: #689b00;
}
main.page-komegura .komegura-comic .slick-dots > li.slick-active button::after {
  content: "";
}
main.page-komegura .komegura-comic .slick-dots button {
  appearance: none;
  background-color: #999;
  border-radius: 50%;
  border: 0px;
  height: 12px;
  padding: 0;
  position: relative;
  width: 12px;
  text-indent: -100px;
}
main.page-komegura .komegura-comic .slick-dots button::after {
  border: 1px solid #689b00;
  border-radius: 50%;
  box-sizing: border-box;
  height: 18px;
  left: -3px;
  position: absolute;
  top: -3px;
  width: 18px;
}
main.page-komegura .komegura-comic .arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
main.page-komegura .contents-inner > section {
  overflow: hidden;
  margin-bottom: 2em;
}
main.page-komegura .contents-inner > section.about .merit {
  margin-bottom: 10px;
  padding: 15px;
  border: 3px solid #689b00;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  main.page-komegura .contents-inner > section.about .merit {
    float: left;
    margin-bottom: 30px;
    width: calc(50% - 15px);
  }
  main.page-komegura .contents-inner > section.about .merit.fukushima {
    float: right;
  }
}
main.page-komegura .contents-inner > section.about .merit h3 {
  margin-bottom: 0.5em;
}
main.page-komegura .contents-inner > section.about .merit li {
  padding-left: 1em;
  line-height: 1.5;
  text-indent: -1em;
}
main.page-komegura .contents-inner > section.flow li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 60px;
}
main.page-komegura .contents-inner > section.flow li:before {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  padding-top: 15px;
  width: 40px;
  height: 100%;
  background-color: #689b00;
  box-sizing: border-box;
  color: #fff;
  font-size: 150%;
  text-align: center;
  content: attr(data-number);
}
main.page-komegura .contents-inner > section.flow li:after {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0px;
  border-top: 20px solid #689b00;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  content: "";
}
main.page-komegura .contents-inner > section.flow li:last-child:after {
  display: none;
}
main.page-komegura .contents-inner > section.flow li h3 {
  margin-bottom: 0.5em;
}
main.page-komegura .contents-inner > section.flow li h4 {
  margin-bottom: 0.3em;
  color: #689b00;
}
main.page-komegura .contents-inner > section.flow .example {
  padding: 15px;
  border: 2px dotted #333;
}
main.page-komegura .contents-inner > section.flow .example em {
  font-style: normal;
  text-decoration: underline;
  line-height: 1.5;
}
main.page-komegura .contents-inner > section.flow .example p em {
  font-weight: bold;
  text-decoration: none;
}
main.page-komegura .contents-inner > section.flow .example p strong {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  main.page-komegura .contents-inner > section.offer a {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  main.page-komegura .contents-inner > section.offer a {
    margin-bottom: 15px;
  }
}
main.page-komegura .contents-inner > section.offer h3 {
  margin-top: 30px;
}
main.page-komegura p strong {
  color: #689b00;
}
main.page-komegura #term {
  padding: 20px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  main.page-komegura #term {
    padding: 20px 10px;
  }
}
main.page-komegura #term h2 {
  text-align: center;
}
main.page-komegura #term dt {
  margin-bottom: 0.5em;
  font-weight: bold;
}
main.page-komegura #term dd {
  margin-bottom: 2em;
  line-height: 1.6;
}
main.page-komegura #term dd:last-child {
  margin-bottom: 0px;
}
main.page-komegura #term dd.date {
  text-align: right;
}

main.page-teikibin .lead {
  font-size: 18px;
}
main.page-teikibin .lead strong {
  color: #689b00;
}
main.page-teikibin .recommend ul {
  padding: 10px 10px 10px 30px;
  border: 3px dotted #aaa;
  border-radius: 10px;
}
main.page-teikibin .recommend li {
  line-height: 1.5;
  list-style: disc outside none;
}
main.page-teikibin .character {
  margin-top: 30px;
}
main.page-teikibin .character li {
  margin-bottom: 15px;
}
main.page-teikibin .character li em {
  display: block;
  margin-bottom: 5px;
  color: #689b00;
  font-size: 120%;
  font-weight: bold;
  font-style: normal;
}
main.page-teikibin .character li p {
  padding-left: 1em;
}
main.page-teikibin .character h3 {
  margin-top: 30px;
}
main.page-teikibin .character .caution {
  padding-left: 1em;
}
main.page-teikibin .character .caution li {
  margin-bottom: 1em;
  line-height: 1.5;
  text-indent: -1em;
}
main.page-teikibin .offer h3 {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  main.page-teikibin .offer a.button {
    margin-right: 15px;
  }
}

main.page-recipe .recipe-list {
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  main.page-recipe .recipe-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  main.page-recipe .recipe-list > li {
    margin-top: 25px;
  }
  main.page-recipe .recipe-list > li:first-child {
    margin-top: 0px;
  }
}
@media screen and (min-width: 768px) {
  main.page-recipe .recipe-list > li {
    width: calc(50% - 20px);
  }
}
main.page-recipe .recipe-list iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.page-recipe .recipe-list iframe {
    height: calc(56.25vw - 11px);
  }
}
@media screen and (min-width: 768px) {
  main.page-recipe .recipe-list iframe {
    height: 242px;
  }
}
@media screen and (max-width: 767px) {
  main.page-recipe .recipe-list h2 {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  main.page-recipe .recipe-list h2 {
    font-size: 16px;
  }
}

/**
 * 会員ページ
 */
main.page-mypage ul.mypage-menu {
  margin-top: 30px;
}
main.page-mypage ul.mypage-menu li {
  margin-bottom: 1.2em;
  line-height: 1.5em;
}
main.page-mypage ul.mypage-menu li a {
  font-weight: bold;
}
main.page-mypage dl.general + .button-area {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  main.page-mypage .button-area .button {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  main.page-mypage .button-area .button {
    margin-right: 20px;
  }
}
main.page-mypage .yearly-menu {
  overflow: hidden;
  margin-bottom: 20px;
}
main.page-mypage .yearly-menu a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 1em;
  padding-right: 15px;
  border-right: 1px solid #dddddd;
}
main.page-mypage .yearly-menu a:last-child {
  margin-right: 0px;
  border-right: 0px;
}
main.page-mypage .yearly-menu a.current {
  color: #000000;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main.page-mypage .yearly-menu {
    font-size: 12px;
  }
  main.page-mypage .yearly-menu a {
    display: block;
    margin-bottom: 8px;
    margin-right: 0px;
    padding-right: 0px;
    border-right: 0px;
  }
}
main.page-mypage #orderHistoriesList {
  margin-bottom: 20px;
}
main.page-mypage #orderHistoriesList li {
  padding: 20px 0px;
  border-top: 1px solid #dddddd;
  line-height: 1.5;
}
main.page-mypage #orderHistoriesList li:last-child {
  border-bottom: 1px solid #dddddd;
}
main.page-mypage #orderHistoriesList li dt {
  float: left;
}
main.page-mypage #orderHistoriesList li dd {
  margin-bottom: 1em;
  padding-left: 120px;
}
main.page-mypage #orderHistoriesList li a.button.small {
  margin-top: 5px;
}
main.page-mypage #orderHistoriesList li .detail {
  text-align: right;
}
@media screen and (max-width: 767px) {
  main.page-mypage #orderHistoriesList li {
    font-size: 12px;
  }
  main.page-mypage #orderHistoriesList li dd {
    padding-left: 7em;
  }
  main.page-mypage #orderHistoriesList li a.button.small {
    font-size: 12px;
    line-height: 26px;
  }
}
main.page-mypage .order-history-detail {
  margin-bottom: 40px;
}
main.page-mypage .order-history-detail .order-detail-base dt {
  float: left;
  margin-right: 20px;
}
main.page-mypage .continual-orders-list li {
  position: relative;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  line-height: 1.5;
}
main.page-mypage .continual-orders-list li:first-child {
  margin-top: 0px;
}
main.page-mypage .continual-orders-list li.status-2 {
  background-color: #eee;
  color: #666;
}
main.page-mypage .continual-orders-list li dt {
  float: left;
  width: 100px;
  clear: left;
}
main.page-mypage .continual-orders-list li dd {
  margin-bottom: 15px;
  padding-left: 100px;
}
main.page-mypage .continual-orders-list li dd.products span {
  display: inline-block;
  margin-right: 10px;
}
main.page-mypage .continual-orders-list li dd .error {
  color: #f00;
}
main.page-mypage .continual-orders-list li dd .note {
  font-size: 12px;
}
main.page-mypage .continual-orders-list li p {
  margin-bottom: 0px;
}
main.page-mypage .continual-orders-list li .status-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px;
  background-color: #aaa;
  color: #000;
  font-size: 12px;
}
main.page-mypage .continual-orders-list + .button-area {
  margin-top: 30px;
}
main.page-mypage dl.continual-order-detail dt {
  margin-bottom: 8px;
  font-weight: bold;
}
main.page-mypage dl.continual-order-detail dd {
  margin-bottom: 1.5em;
  line-height: 1.5em;
}
main.page-mypage dl.continual-order-detail dd.error {
  color: #f00;
}
main.page-mypage dl.continual-order-detail dd p.out-of-sale {
  color: #666;
}
main.page-mypage dl.continual-order-detail dd p.out-of-sale .out-of-sale {
  color: #f00;
}
main.page-mypage dl.continual-order-detail .note {
  font-size: 12px;
}
main.page-mypage form.continual-offer .address label {
  padding-top: 6px;
  padding-bottom: 5px;
  line-height: 1.5;
}
main.page-mypage form.continual-offer .select-interval > div {
  margin-bottom: 10px;
}
main.page-mypage form.continual-offer .select-interval > div p {
  padding-left: 25px;
  line-height: 32px;
}
main.page-mypage form.continual-offer .select-interval > div p input[type=text], main.page-mypage form.continual-offer .select-interval > div p input[type=number] {
  width: 60px;
}
main.page-mypage form.continual-offer dd.products .products-list {
  margin-bottom: 10px;
}
main.page-mypage form.continual-offer dd.products .products-list > p {
  position: relative;
}
main.page-mypage form.continual-offer dd.products input[name^=amount] {
  width: 70px;
}
@media screen and (max-width: 767px) {
  main.page-mypage form.continual-offer dd.products .select-outer.products {
    max-width: 100%;
  }
  main.page-mypage form.continual-offer dd.products .select-outer.products select {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  main.page-mypage form.continual-offer dd.products .select-outer.products {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  main.page-mypage form.continual-offer dd.products .select-outer.products {
    margin-bottom: 5px;
  }
}
main.page-mypage form.continual-offer dd.products .select-outer.seimai {
  display: none;
}
main.page-mypage form.continual-offer dd.products .seimai-1 .select-outer.seimai {
  display: inline-block;
}
main.page-mypage form.continual-offer dd.products span.unit {
  display: inline-block;
  padding-left: 5px;
  line-height: 32px;
}
main.page-mypage form.continual-offer dd.products span.price-button {
  display: block;
  margin-top: 5px;
  magin-left: 10px;
  line-height: 32px;
  text-align: right;
}
main.page-mypage form.continual-offer dd.products span.price {
  display: inline-block;
  margin-left: 10px;
}
main.page-mypage form.continual-offer dd.products .js-delete-product {
  width: 70px;
}
@media screen and (min-width: 768px) {
  main.page-mypage form.continual-offer textarea[name=comment] {
    width: 400px;
  }
}
main.page-mypage .continual-offer-complete .button-area {
  margin-top: 40px;
}
main.page-mypage .reserve-no-acceptable {
  padding: 10px;
  background-color: #dddddd;
}
main.page-mypage .reserve-list li {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  line-height: 1.5;
}
main.page-mypage .reserve-list li.status-2 {
  background-color: #eee;
  color: #666;
}
main.page-mypage .reserve-list li span {
  display: block;
}
@media screen and (min-width: 768px) {
  main.page-mypage .reserve-list li span.date {
    float: left;
    margin-right: 30px;
    font-size: 12px;
  }
  main.page-mypage .reserve-list li span.product-name {
    float: left;
    width: 210px;
    height: 2em;
  }
}
main.page-mypage .reserve-list li span.tag {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0px 5px;
  background-color: #bbb;
  line-height: 20px;
  color: #000;
  font-size: 12px;
}
main.page-mypage .reserve-list li span.product-name {
  color: #689b00;
  font-weight: bold;
}
main.page-mypage .reserve-list li span.no-payment {
  text-align: right;
}
main.page-mypage .reserve-list li .amount .balance {
  font-size: 16px;
  font-weight: bold;
}
main.page-mypage .reserve-list + .button-area {
  margin-top: 40px;
}
main.page-mypage .reserve-deposit {
  border-bottom: 1px solid #ccc;
  margin-top: 40px;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  main.page-mypage .reserve-deposit {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
  }
}
main.page-mypage .reserve-deposit dt {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  main.page-mypage .reserve-deposit dd {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  main.page-mypage .reserve-deposit dd {
    margin-top: 10px;
    font-size: 20px;
  }
}
main.page-mypage .reserve-deposit strong {
  font-weight: 700;
}
main.page-mypage .reserve-deposit + .button-area {
  margin-top: 40px;
}
main.page-mypage form.reserve-offer .products-list .amount {
  display: inline-block;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  main.page-mypage form.reserve-offer .products-list .amount input {
    width: 60px;
  }
}
main.page-mypage form.reserve-offer .products-list .js-delete-product {
  margin-left: 10px;
  width: 50px;
}
@media screen and (max-width: 767px) {
  main.page-mypage form.reserve-offer .products-list .js-delete-product {
    margin-left: 5px;
    width: 30px;
    font-size: 12px;
  }
}
main.page-mypage form.reserve-offer .products-list .plus {
  margin-top: 15px;
}
main.page-mypage form.reserve-offer .js-open-standard:after {
  display: inline-block;
  content: "▼";
}
main.page-mypage form.reserve-offer .js-open-standard.open:after {
  content: "▲";
}
main.page-mypage form.reserve-offer .amount-standard {
  display: none;
}
main.page-mypage form.reserve-offer .amount-standard em {
  font-weight: bold;
  font-style: normal;
}
main.page-mypage .resign .warning {
  color: #ff0000;
}
main.page-mypage .resign .error-disabled {
  margin-top: 40px;
  padding: 15px;
  background-color: #eeeeee;
}
main.page-mypage .resign .uncompleted-order li {
  line-height: 1.5;
}
main.page-mypage .resign .uncompleted-order li:not(:first-child) {
  margin-top: 2em;
}
main.page-mypage .resign .enquite-block {
  margin-bottom: 20px;
}
main.page-mypage .resign textarea {
  width: 100%;
  max-width: 500px;
}