@charset "UTF-8";
.flex {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
}
.flex-between {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: justify;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: justify;
  /*--- IE10 ---*/
  -webkit-justify-content: space-between;
  /*--- safari（PC）用 ---*/
  justify-content: space-between;
}
.flex-center {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: center;
  /*--- IE10 ---*/
  -webkit-justify-content: center;
  /*--- safari（PC）用 ---*/
  justify-content: center;
}
.flex-end {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-pack: end;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-pack: end;
  /*--- IE10 ---*/
  -webkit-justify-content: flex-end;
  /*--- safari（PC）用 ---*/
  justify-content: flex-end;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-item-center {
  display: -webkit-box;
  /*--- Androidブラウザ用 ---*/
  display: -ms-flexbox;
  /*--- IE10 ---*/
  display: -webkit-flex;
  /*--- safari（PC）用 ---*/
  display: flex;
  -webkit-box-align: center;
  /*--- Androidブラウザ用 ---*/
  -ms-flex-align: center;
  /*--- IE10 ---*/
  -webkit-align-items: center;
  /*--- safari（PC）用 ---*/
  align-items: center;
}
.flex-self-center {
  -ms-flex-flex-item-align: center;
  /*--- IE10 ---*/
  -webkit-align-self: center;
  /*--- safari（PC）用 ---*/
  align-self: center;
}
.flex-self-end {
  -ms-flex-flex-item-align: flex-end;
  /*--- IE10 ---*/
  -webkit-align-self: flex-end;
  /*--- safari（PC）用 ---*/
  align-self: flex-end;
}
.flex-self-start {
  -ms-flex-flex-item-align: flex-start;
  /*--- IE10 ---*/
  -webkit-align-self: flex-start;
  /*--- safari（PC）用 ---*/
  align-self: flex-start;
}
.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.br-none br {
  display: none;
}
@media (max-width: 768px) {
  .pc-content {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 999px) {
  .sp-content {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  .sp-content {
    display: none !important;
  }
}
.text-ry {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-none {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.box-link {
  display: block;
  width: 100%;
  height: 100%;
  color: #2f2f2f;
  text-decoration: none;
}
.box-link img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}
*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}
::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}
* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
}
/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
summary {
  display: list-item;
  /* Add the correct display in all browsers */
}
small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}
[hidden],
template {
  display: none;
  /* Add the correct display in IE */
}
abbr[title] {
  border-bottom: 1px dotted;
  /* Add a bordered underline effect in all browsers */
  text-decoration: none;
  /* Remove text decoration in Firefox 40+ */
}
a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects;
  /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}
a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}
ul {
  list-style-type: none;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}
b,
strong {
  font-weight: bolder;
  /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}
dfn {
  font-style: italic;
  /* Address styling not present in Safari and Chrome */
}
/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}
/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}
/* Apply cursor pointer to button elements */
button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
  cursor: pointer;
}
/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}
[type="number"] {
  width: auto;
  /* Firefox 36+ */
}
[type="search"] {
  -webkit-appearance: textfield;
  /* Safari 8+ */
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Safari 8 */
}
textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}
optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule. */
}
button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}
/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}
/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}
button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}
/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}
/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}
select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}
select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}
legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}
[type="search"] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}
/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}
/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}
svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}
audio,
canvas,
progress,
video {
  display: inline-block;
  /* Internet Explorer 11+, Windows Phone 8.1+ */
}
/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~="screen"] {
    display: inherit;
  }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}
/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}
/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}
/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}
::selection {
  background-color: #b3d4fc;
  /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}
/* INTERFACE */
html {
  font-size: 62.5%;
}
body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, "游ゴシック", "游ゴシック体", "YuGothic", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-image: url(../../img/common/icon/bg-pat.jpg);
  background-repeat: repeat;
  background-size: 249px 250px;
  font-family: 'Noto Serif JP', "Times New Roman", Times, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@keyframes my-fade-in {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  60% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.akataro {
  width: 0;
  height: 0;
  margin: auto;
  background: #fff;
  background-repeat: no-repeat;
  background-size: 300px 300px;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 9999;
  animation-name: my-fade-in;
  animation-duration: 3.5s;
}
.btn {
  display: inline-block;
  padding: 15px 45px 15px 25px;
  font-size: 1.5rem;
  line-height: 1.5em;
  text-decoration: none;
  font-family: 'Noto Serif JP', "Times New Roman", Times, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #444;
  border: 1px solid #888;
  background-image: url(../../img/common/icon/right-arrow.svg);
  background-size: 15px;
  background-position: right 20px center;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
.btn:hover {
  color: #fff;
  background-color: #6a421f;
  background-image: url(../../img/common/icon/right-arrow-white.svg);
  border: 1px solid #6a421f;
}
.btn.cv {
  padding: 25px 30px;
  font-size: 1.8rem;
  border-radius: 5px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  font-weight: bold;
  border: none;
  background-image: -webkit-linear-gradient(#fed6e3 0%, #ffaaaa 100%);
  background-image: linear-gradient(#fed67e 0%, #ffac0b 100%);
  background-size: initial;
  background-position: initial;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}
.btn.cv:hover {
  color: #444;
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-image: -webkit-linear-gradient(#fed6e3 0%, #ffbcbc 100%);
  background-image: linear-gradient(#fed6e3 0%, #ffbcbc 100%);
}
@media all and (-ms-high-contrast: none) {
  .btn.cv {
    background-image: none;
    background-color: #ffac0b;
  }
}
#global-header {
  margin: 0 auto;
  padding: 0 20px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#global-header:before,
#global-header:after {
  content: " ";
  display: table;
}
#global-header:after {
  clear: both;
}
#global-header .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#global-header .inner .logo {
  float: left;
  display: inline-block;
  width: 180px;
  line-height: 100px;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#global-header .inner .logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#global-header .inner .logo:hover {
  opacity: 0.8;
}
#global-header .inner .global-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  float: right;
  width: calc(100% - 190px);
}
#global-header .inner .global-nav .menu {
  text-align: right;
  overflow: hidden;
}
#global-header .inner .global-nav .menu .item {
  /*display: inline-block;*/
  margin: 0 0 0 30px;
  float: left;
}
#global-header .inner .global-nav .menu .item a {
  font-size: 1.7rem;
  color: #000;
  text-decoration: none;
  line-height: 100px;
  font-family: 'Noto Serif JP', "Times New Roman", Times, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#global-header .inner .global-nav .menu .item a:hover {
  color: #e11811;
}
#global-header .inner .global-nav .search {
  width: 160px;
  height: 35px;
  position: relative;
}
#global-header .inner .global-nav .search .search-box {
  vertical-align: top;
  margin: 0px;
  width: 100%;
  height: 35px;
  color: #222;
  line-height: 35px;
  font-size: 1.2rem;
  border-bottom: 1px solid #222;
  background-color: transparent;
  outline: none;
}
#global-header .inner .global-nav .search .search-box::placeholder {
  font-size: 1.1rem;
  color: #222;
}
#global-header .inner .global-nav .search .search-submit {
  width: 12px;
  height: 12px;
  padding: 10px 0 0;
  border: none;
  background-image: url(../../img/common/icon/search.svg);
  position: absolute;
  top: 10px;
  right: 0;
}
@media all and (-ms-high-contrast: none) {
  #global-header {
    transition: none 0 ease 0;
  }
  #global-header .inner .logo {
    transition: none 0 ease 0;
  }
}
#global-footer {
  margin: 100px 0 0;
  padding: 50px 20px 10px;
  background-color: #ecdbce;
}
#global-footer .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
  /*.site-map {
      width: calc(~"100% - 250px");
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;

      .content {
        width: calc(~"33.333333% - 20px");
        margin: 0 0 20px;

        .title {
          display: inline-block;
          font-size: 1.6rem;
          color: @color-brown;
          font-family: 'Noto Serif JP',"Times New Roman", Times, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
          font-weight: bold;
          text-decoration: none;
          &:hover {
            text-decoration: underline;
          }
        }

        .list {
          padding: 0 0 0 10px;

          .item {
            margin: 5px 0 0;

            a {
              font-size: 1.4rem;
              color: @color-gray06;
              text-decoration: none;
              &:hover {
                text-decoration: underline;
              }
            }
          }
        }
      }
    }*/
}
#global-footer .inner .pagetop_btn {
  display: table;
  padding: 10px 13px 10px 30px;
  border: 1px solid #6a421f;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  text-align-last: justify;
  text-justify: inter-ideograph;
  color: #6a421f;
  text-decoration: none;
  background-image: url(../../img/common/icon/pagetop.svg);
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: left 10px center;
  position: absolute;
  top: -120px;
  right: 0;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#global-footer .inner .pagetop_btn:hover {
  color: #fff;
  background-color: #6a421f;
  background-image: url(../../img/common/icon/pagetop-.svg);
}
#global-footer .inner .pagetop_btn span {
  display: block;
}
#global-footer .inner .address {
  width: 220px;
  margin: 0 20px 0 0;
  padding: 0 20px 0 0;
  border-right: 1px solid #aaa;
}
#global-footer .inner .address .logo {
  display: inline-block;
  width: 130px;
  margin: 0 0 15px;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#global-footer .inner .address .logo:hover {
  opacity: 0.8;
}
#global-footer .inner .address .logo img {
  width: 100%;
  height: auot;
  vertical-align: middle;
}
#global-footer .inner .address .text {
  font-size: 1.3rem;
  line-height: 1.5em;
}
#global-footer .inner .address .text a {
  text-decoration: none;
}
#global-footer .inner .address .btn {
  margin: 15px 0 0;
  padding: 10px 45px 10px 25px;
}
#global-footer .inner .footer-nav {
  width: calc(100% - 250px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#global-footer .inner .footer-nav .nav-product {
  width: 60%;
}
#global-footer .inner .footer-nav .nav-product > a {
  display: block;
  margin: 0 0 20px;
  font-size: 1.8rem;
  line-height: 1;
  color: #6a421f;
  text-decoration: none;
}
#global-footer .inner .footer-nav .nav-product > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#global-footer .inner .footer-nav .nav-product > div section {
  width: 50%;
  padding: 0 20px 0 0;
  box-sizing: border-box;
}
#global-footer .inner .footer-nav .nav-product > div section h2 {
  margin: 0 0 20px;
  font-size: 1.7rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-product > div section ul {
  margin: 0;
  padding: 0 0 0;
  font-size: 1.6rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-product > div section ul li {
  margin: 0 0 15px;
}
#global-footer .inner .footer-nav .nav-product > div section ul li a {
  color: #6a421f;
  text-decoration: none;
}
#global-footer .inner .footer-nav .nav-other {
  width: 35%;
}
#global-footer .inner .footer-nav .nav-other ul {
  margin: 0 0 0 20px;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-other ul li {
  margin: 0 0 20px;
}
#global-footer .inner .footer-nav .nav-other ul li a {
  color: #6a421f;
  text-decoration: none;
}
#global-footer .inner .footer-nav .nav-product2 {
  width: 65%;
}
#global-footer .inner .footer-nav .nav-product2 a {
  color: #6a421f;
  text-decoration: none;
}
#global-footer .inner .footer-nav .nav-product2 > ul {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li {
  margin: 0 0 15px;
  overflow: hidden;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul {
  width: 50%;
  margin: 20px 0 0;
  font-size: 1.7rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul:first-of-type {
  margin: calc(1.8rem + 20px) 0 0;
  float: right;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul:last-of-type {
  margin: 30px 0 0;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul > li {
  font-weight: bold;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul > li > ul {
  margin: 20px 0 0;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: normal;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul > li > ul > li {
  margin: 0 0 15px;
}
#global-footer .inner .footer-nav .nav-other2 {
  width: 40%;
}
#global-footer .inner .footer-nav .nav-other2 ul {
  margin: 0 0 35px 20px;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
}
#global-footer .inner .footer-nav .nav-other2 ul:last-of-type {
  margin: 0 0 0 20px;
}
#global-footer .inner .footer-nav .nav-other2 ul li {
  margin: 0 0 15px;
}
#global-footer .inner .footer-nav .nav-other2 ul li a {
  color: #6a421f;
  text-decoration: none;
}
#global-footer .inner .footer-nav .nav-other2 ul.mini {
  font-size: 1.5rem;
}
#global-footer .inner .footer-nav .nav-other2 ul.mini li {
  margin: 0 0 10px;
}
#global-footer .copy {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
}
#global-header .inner .logo {
  width: 110px;
  line-height: 80px;
}
#global-header .inner .global-nav {
  width: calc(100% - 120px);
}
#global-header .inner .global-nav .menu .item {
  height: 80px;
  margin: 0 0 0 10px;
}
#global-header .inner .global-nav .menu .item a {
  font-size: 1.6rem;
  line-height: 80px;
}
#global-header .inner .global-nav .search {
  height: 30px;
}
#global-header .inner .global-nav .search .search-box {
  height: 30px;
  line-height: 30px;
}
#global-footer .inner .address {
  margin: 0 10px 0 0;
  pading: 0 10px 0 0;
}
#global-footer .inner .footer-nav {
  width: calc(100% - 240px);
}
#global-footer .inner .footer-nav .nav-product {
  width: 63%;
}
#global-footer .inner .footer-nav .nav-product > a {
  font-size: 1.6rem;
}
#global-footer .inner .footer-nav .nav-product > div section h2 {
  font-size: 1.6rem;
}
#global-footer .inner .footer-nav .nav-product > div section ul {
  font-size: 1.5rem;
}
#global-footer .inner .footer-nav .nav-other {
  width: 37%;
}
#global-footer .inner .footer-nav .nav-other ul {
  margin: 0 0 0;
  font-size: 1.6rem;
}
#global-footer .inner .footer-nav .nav-product2 {
  width: 62%;
}
#global-footer .inner .footer-nav .nav-product2 > ul {
  font-size: 1.7rem;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul {
  font-size: 1.6rem;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul:first-of-type {
  margin: calc(1.7rem + 20px) 0 0;
}
#global-footer .inner .footer-nav .nav-product2 > ul > li > ul > li > ul {
  font-size: 1.4rem;
}
#global-footer .inner .footer-nav .nav-other2 {
  width: 38%;
}
#global-footer .inner .footer-nav .nav-other2 ul {
  font-size: 1.6rem;
}
#global-footer .inner .footer-nav .nav-other2 ul.mini {
  font-size: 1.4rem;
}
span.tel-pc {
  display: none !important;
}
a.tel-sp {
  text-decoration: none;
  color: #6a421f;
}
#home-view .key {
  margin: 100px 0 0;
  padding: 0 0 20px;
  box-sizing: content-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#home-view .key .swiper-container {
  max-width: 1300px;
  margin: 0 auto;
}
#home-view .key .swiper-container .swiper-wrapper {
  
}
#home-view .key .swiper-container .swiper-wrapper .swiper-slide {
  padding: 34% 0 0;
  background-size: contain;
  background-position: center center;
}
#home-view .key .swiper-container .swiper-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8a3329;
}
#home-view .alert_area {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 20px;
  background-color: #ed6d48;
}
#home-view .alert_area h2 {
  margin: 0 0 20px;
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}
#home-view .alert_area p {
  width: 80%;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}
#home-view .alert_area p a {
  color: #fff;
  text-decoration: none;
}
#home-view .alert_area p a:hover {
  text-decoration: underline;
}
#home-view .alert_area02 {
    border: solid 3px #6a421f;
  max-width: 1000px;
  margin: 60px auto 30px;
  padding: 50px 20px;
}
#home-view .alert_area02 h2 {
color: #6a421f;
  margin: 0 0 20px;
  font-size: 2.4rem;
  line-height: 1.6;
  text-align: center;
}
#home-view .alert_area02 p {
  width: 80%;
  margin:15px auto;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: center;
}
#home-view .alert_area02 p a {
  text-decoration: underline;
  color: #000;
}
#home-view .bnr-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 100px;
}

/*-----冬季宅配不可期間の2枠表示----
#home-view .bnr-area .list {
  display: flex;
  justify-content: space-between;
}
#home-view .bnr-area .list .item {
  width: calc(33.33333% - 40px);
  text-align: center;
}
*/
/*-----夏季宅配不可期間の2枠表示----*/
#home-view .bnr-area .list {
  display: flex;
  justify-content: center;
    flex-wrap: wrap;
}
#home-view .bnr-area .list .item {
  width: calc(45% - 20px);
    text-align: center;
    margin: 15px 30px;
}

#home-view .bnr-area .list .item a {
  display: inline-block;
  width: 100%;
  padding: 40px 10px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1em;
  text-decoration: none;
  position: relative;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#home-view .bnr-area .list .item a:hover {
  opacity: 0.5;
}
#home-view .bnr-area .list .item a .border-frame {
  position: absolute;
  border: 1px solid #fff;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}
#home-view .section {
  padding: 30px 20px;
}
#home-view .section .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#home-view .section.ise {
  /*background-color: #fafafa;*/
}
#home-view .section.ise .title-area {
  display: flex;
  margin: 0 0 40px;
}
#home-view .section.ise .title-area .title {
  order: 1;
  width: 100px;
  margin: 0 auto 0;
  font-size: 8rem;
  color: #6a421f;
  font-family: 'Noto Serif JP', serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#home-view .section.ise .title-area .pic {
  order: 2;
  /*width: calc(100% - 260px);*/
  width: calc(100% - 200px);
  /*padding: 0 0 40px 40px;*/
  position: relative;
}
#home-view .section.ise .title-area .pic:after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-image: url(../../img/common/icon/bg-pat.jpg);
  background-repeat: repeat;
  background-size: 249px 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
#home-view .section.ise .title-area .pic img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
#home-view .section.ise .content-area {
  padding: 0 80px 0 40px;
  text-align: left;
}
#home-view .section.ise .content-area .header {
  margin: 0 0 20px;
}
#home-view .section.ise .content-area .header .date {
  font-size: 2.2rem;
  line-height: 1em;
}
#home-view .section.ise .content-area .header .title {
  font-size: 4.8rem;
  color: #6a421f;
  line-height: 1.5em;
  font-family: 'Noto Serif JP', serif;
}
#home-view .section.ise .content-area .body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#home-view .section.ise .content-area .body .text {
  width: calc(100% - 200px);
  font-size: 1.8rem;
  line-height: 1.8em;
  text-align: justify;
  color: #444;
}
#home-view .section.content {
  /*
      .title-area {
        margin: 0 0 40px;
        padding: 60px 0 0;
        position: relative;

        .title {
          padding: 20px 5px 20px 0;
          font-size: 7.0rem;
          line-height: 1.5em;
          letter-spacing: 0.1em;
          color: @color-concept-light;
          background-color: @color-brown;
		  font-family: 'Noto Serif JP', serif;
          -webkit-writing-mode: vertical-rl;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
          position: absolute;
          top: 0;
          right: 40px;
        }

        .pic {
          img {
            width: 100%;
            height: auto;
            vertical-align: middle;
          }
        }
      }
			*/
}
#home-view .section.content .title-area {
  margin: 0 0 40px;
  padding: 60px 0 0;
  overflow: hidden;
}
#home-view .section.content .title-area .title {
  margin: -50px 5% 0 0;
  padding: 20px 5px 20px 0;
  font-size: 7rem;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #eddbcf;
  background-color: #6a421f;
  font-family: 'Noto Serif JP', serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  float: left;
}
#home-view .section.content .title-area .title.limited {
  background-color: #fff;
  color: #6a421f;
}
#home-view .section.content .title-area .sub-title {
  width: 10%;
  float: left;
}
#home-view .section.content .title-area .sub-title.limited {
  font-size: 7.4rem;
  line-height: 1.5em;
  font-weight: bold;
  white-space: nowrap;
  color: #6a421f;
  font-family: 'Noto Serif JP', serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#home-view .section.content .title-area .sub-title img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#home-view .section.content .title-area .pic {
  width: 65%;
  float: right;
}
#home-view .section.content .title-area .pic img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#home-view .section.content .content-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#home-view .section.content .content-area .header {
  display: flex;
  align-items: flex-start;
  width: 25%;
}
#home-view .section.content .content-area .header .date {
  order: 1;
  margin: 15px 0 0;
  font-size: 2.5rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#home-view .section.content .content-area .header .title {
  order: 0;
  width: 50%;
  margin: 0 5% 0 10%;
  font-size: 5rem;
  color: #6a421f;
  font-family: 'Noto Serif JP', serif;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#home-view .section.content .content-area .header .title img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#home-view .section.content .content-area .body {
  width: 70%;
  overflow: hidden;
}
#home-view .section.content .content-area .body .text {
  margin: 0 0 40px;
  font-size: 1.8rem;
  line-height: 1.8em;
  text-align: justify;
  color: #444;
}
#home-view .section.content .content-area .body .btn {
  float: right;
}
#home-view .section.content.campaign .title-area .title {
  color: #6a421f;
  background-color: #fff;
  font-family: 'Noto Serif JP', serif;
}
#home-view .section.content.content02 .content-area {
  align-items: flex-end;
}
#home-view .section.content.content02 .content-area .text {
  width: 80%;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}
#home-view .section.content.content02 .content-area .btn {
  white-space: nowrap;
}
#home-view .section.news {
  background-color: #fafafa;
  padding: 80px;
}
#home-view .section.news .title {
  font-size: 2.8rem;
  margin: 0 0 40px;
  color: #6a421f;
  text-align: center;
  position: relative;
}
#home-view .section.news .title:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 10px auto 0;
  background-color: #aaa;
}
#home-view .section.news .list {
  width: 660px;
  margin: 0 auto;
}
#home-view .section.news .list .item {
  margin: 0 0 40px;
}
#home-view .section.news .list .item a {
  color: #444;
  text-decoration: none;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#home-view .section.news .list .item a:hover {
  opacity: 0.5;
}
#home-view .section.news .list .item a .info {
  margin: 0 0 13px;
}
#home-view .section.news .list .item a .info .date {
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 1.7rem;
}
#home-view .section.news .list .item a .info .cate {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 2px 10px 0;
  line-height: 1.6em;
  border: 1px solid #444;
  font-size: 1.6rem;
}
#home-view .section.news .list .item a .info .cate.important {
  border: 1px solid #e11811;
  color: #e11811;
}
#home-view .section.news .list .item a .text {
  font-size: 1.8rem;
}
#home-view .section.news .btn {
  display: block;
  width: 160px;
  margin: 0 auto;
}
#home-view .footer-bnr-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
#home-view .footer-bnr-area .list {
  display: flex;
  flex-wrap: wrap;
}
#home-view .footer-bnr-area .list .item {
  width: calc(33.33333% - 20px);
  margin: 0 30px 30px 0;
}
#home-view .footer-bnr-area .list .item:nth-of-type(3n) {
  margin: 0 0 30px 0;
}
#home-view .footer-bnr-area .list .item a {
  width: 100%;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -moz-transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  -o-transitino: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
  transition: all 0.8s cubic-bezier(0.24, 0.8, 0.55, 0.94) 0s;
}
#home-view .footer-bnr-area .list .item a:hover {
  opacity: 0.5;
}
#home-view .footer-bnr-area .list .item a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
#home-view .footer-bnr-area .list .item a .title {
  margin: 13px 0 8px;
  font-size: 2rem;
  line-height: 1.5em;
  font-weight: bold;
  color: #6a421f;
}
#home-view .footer-bnr-area .list .item a .text {
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: justify;
  color: #444;
}
#home-view {
  min-width: 100%;
}
#home-view .key {
  margin: 80px 0 0;
  padding: 0;
}
#home-view .key .swiper-container .swiper-wrapper {
}
#home-view .key .swiper-container .swiper-wrapper .swiper-slide {
  padding: 34% 0 0;
  background-position: center center;
}
#home-view .alert_area {
  margin: 60px 20px 0;
}
#home-view .alert_area p {
  width: 90%;
}

#home-view .bnr-area .list .item a {
  font-size: 1.9rem;
}
#home-view .section.content .title-area .title {
  font-size: 5.5rem;
}
#home-view .section.content .title-area .sub-title {
  width: 10%;
  float: left;
}
#home-view .section.content .title-area .sub-title.limited {
  font-size: 6rem;
}
#home-view .section.content .title-area .pic {
  width: 68%;
}
#home-view .section.content.content02 .content-area .text {
  width: 72%;
}
