@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-style: normal;
}

article, aside, footer, header, nav, section, main, figure, figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #3C5CAF;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #96C9B1;
  text-decoration: underline;
}

ol, ul {
  list-style: none;
}

img, video, iframe {
  max-width: 100%;
}

img {
  border: none;
  vertical-align: top;
}

b, strong {
  font-weight: 500;
}

blockquote,
q {
  quotes: none;
}

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

hr {
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  line-height: 0;
  -webkit-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

a, area, button, [role="button"], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}

button:hover, button:active, button:focus {
  outline: none;
}

button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* 共通見出し（h2相当）*/
.news-heading {
  display: block;
  font-size: 3.4rem;
  line-height: 1.2;
  color: #422D1E;
  font-weight: 500;
  padding-bottom: .4em;
  margin-bottom: .7em;
  border-bottom: 4px solid #422D1E;
}

@media screen and (max-width: 1099.98px) {
  .news-heading {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 479.98px) {
  .news-heading {
    font-size: 2rem;
    border-bottom: 2px solid #422D1E;
  }
}

/* 共通見出し（h3相当）*/
.main-subheading {
  display: block;
  line-height: 1.2;
  font-size: 1.7rem;
  background-color: #fff;
  color: #422D1E;
  padding: .63em .8em .6em .8em;
  border-left: 11px solid #96C9B1;
  border-bottom: 1px dotted rgba(66, 45, 30, 0.3);
  font-weight: 600;
  margin-bottom: 2em;
}

@media screen and (max-width: 639.98px) {
  .main-subheading {
    font-size: 1.6rem;
    margin-bottom: 1.5em;
  }
}

.main-subheading span {
  font-size: 1.5rem;
  font-weight: 500;
}

.page-tag-area {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #422D1E;
  margin-bottom: 2em;
}

@media screen and (max-width: 639.98px) {
  .page-tag-area {
    margin-bottom: 1.5em;
  }
}

.page-tag-area span {
  position: relative;
  padding-left: 6.5em;
  font-weight: 500;
}

@media screen and (max-width: 479.98px) {
  .page-tag-area span {
    padding-left: 5.2em;
  }
}

.page-tag-area span::before {
  content: "";
  position: absolute;
  top: 49.9%;
  left: 0;
  display: block;
  width: 102px;
  height: 1px;
  background-color: #730004;
}

@media screen and (max-width: 479.98px) {
  .page-tag-area span::before {
    width: 82px;
  }
}

/* 共通リスト */
.main ul > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
  list-style-type: none;
}

.main ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  left: .5em;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ccc;
}

.main ul.list-style-none > li {
  padding-left: 0;
}

.main ul.list-style-none > li::before {
  display: none;
}

.main ul.list-style-note > li {
  padding-left: 1em;
}

.main ul.list-style-note > li::before {
  content: "※";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.main ul.list-style-disc > li {
  padding-left: 1.25em;
}

.main ul.list-style-disc > li::before {
  content: "●";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.main ul.list-style-square > li {
  padding-left: 1em;
}

.main ul.list-style-square > li::before {
  content: "■";
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.main ul.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}

.main ol > li {
  margin-left: 1.5em;
  line-height: 1.5;
  list-style-type: decimal;
}

.main ol.list-style-none > li {
  margin-left: 0;
  list-style-type: none;
}

.main ol.list-style-gutter li:not(:last-child) {
  margin-bottom: .3em;
}

/* 注釈（※）用インデント */
.note {
  margin-left: 1em;
  text-indent: -1em;
}

/* 注意文 */
.attention {
  font-weight: 500;
  color: #e83228;
}

/* 共通リンクボタン */
.more {
  margin-top: 1.5em;
  text-align: center;
}

.link-button2 {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: .71em 1.3em .7em 2.7em;
  background-color: #595757;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 767.98px) {
  .link-button2 {
    font-size: 1.6rem;
    padding: .71em 1.1em .68em 2.3em;
  }
}

.link-button2:hover {
  text-decoration: none;
  background-color: #96C9B1;
  color: #fff;
}

.link-button2::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}

@media screen and (max-width: 767.98px) {
  .link-button2::before {
    width: 10px;
    height: 10px;
  }
}

.link-button {
  position: relative;
  display: inline-block;
  max-width: 282px;
  width: 100%;
  background-color: #96C9B1;
  line-height: 1.2;
  padding: 1.5em 7em 1.25em 2em;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 767.98px) {
  .link-button {
    padding: 1.2em 7em 1em 1.5em;
  }
}

@media screen and (max-width: 479.98px) {
  .link-button {
    font-size: 1.3rem;
    max-width: 252px;
  }
}

.link-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 82px;
  height: 8px;
  background: url("../img/base/arrow-icon_black.svg") no-repeat center/cover;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

/* 共通リンクボタン（ホバー）*/
a.link-button:hover {
  background-color: #70050B;
  color: #fff;
  text-decoration: none;
}

a.link-button:hover::before {
  background: url("../img/base/arrow-icon_wht.svg") no-repeat center/cover;
}

/* 電話発信用リンク */
a.tel-link-wht {
  color: #fff;
}

a.tel-link-wht:hover {
  color: #fff;
}

a.tel-link-blk {
  color: #333333;
}

a.tel-link-blk:hover {
  color: #96C9B1;
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  z-index: -100;
}

/* --------------------------------

  Webフォント

-------------------------------- */
/*
 * "Noto Sans JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSansJP-Thin.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Light.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Regular.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Medium.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Bold.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * NotoSansJP-Black.otf: Copyright 2012 Google Inc. All Rights Reserved.
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/*
 * "Noto Serif JP" is lisenced under the SIL Open Font License, 1.1
 * NotoSerifJP-ExtraLight.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Light.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Regular.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Medium.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-SemiBold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Bold.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * NotoSerifJP-Black.otf: Copyright 2017 Adobe Systems Incorporated (http://www.adobe.com/).
 * https://www.google.com/fonts/attribution
 * https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web
 */
/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 320px;
  color: #333333;
  font-family: "游明朝", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: left;
  background-color: #fff;
}

html.nav-open,
html.contact-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .wrapper {
    overflow: visible;
  }
}

@media screen and (max-width: 1099.98px) {
  .wrapper .nav-shopping-more,
  .wrapper .pagetop {
    -webkit-transition: bottom .3s;
    transition: bottom .3s;
  }
  .wrapper.hide .pagetop {
    bottom: -50px;
  }
}

/* --------------------------------

  header

-------------------------------- */
.header {
  position: relative;
}

.header .inner {
  z-index: 1010;
  opacity: 1;
  background-color: rgba(150, 201, 177, 0.95);
  padding: 0;
}

@media screen and (min-width: 1100px), print {
  .header .inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1010;
    margin: 0;
    opacity: 1;
    padding: 1em 1em 1em 1em;
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (max-width: 1099.98px) {
  .header .inner {
    -webkit-transition-property: opacity, left;
    transition-property: opacity, left;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
  }
}

@media screen and (min-width: 1100px), print {
  #top .header .inner {
    position: absolute;
    left: 5%;
    top: 0;
    width: 288px;
    height: 570px;
    padding: 2.7em 1em 1em 1em;
  }
}

.header-logo {
  text-align: center;
}

@media screen and (max-width: 1099.98px) {
  .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    font-size: 100%;
    background-color: rgba(150, 201, 177, 0.95);
    z-index: 900;
  }
}

.header-logo .site-logo {
  display: inline-block;
  max-width: 228px;
}

@media screen and (max-width: 1099.98px) {
  .header-logo .site-logo {
    max-width: 180px;
    height: 41px;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .header.fixed .inner {
    position: fixed;
    top: -67px;
    -webkit-transform: translateY(67px);
            transform: translateY(67px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    width: 100%;
    height: 67px;
    left: 0;
    padding: 0;
    max-width: none;
  }
  #top .header.fixed .inner {
    position: fixed;
    top: -67px;
    width: 100%;
    height: 67px;
    left: 0;
    padding: 0;
    max-width: none;
  }
  .header.fixed .nav-shopping-more {
    position: fixed;
    top: -67px;
    right: 0;
    -webkit-transform: translateY(67px);
            transform: translateY(67px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    width: 188px;
    height: 67px;
    left: auto;
  }
  #top .header.fixed .nav-shopping-more {
    width: 188px;
    height: 67px;
    top: -67px;
    right: 0;
    left: auto;
  }
  .header.fixed .header-logo {
    position: fixed;
    top: -67px;
    left: 15px;
    height: 67px;
    -webkit-transform: translateY(67px);
            transform: translateY(67px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #top .header.fixed .header-logo {
    left: 15px;
    top: -67px;
    height: 67px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header.fixed .site-logo {
    max-width: 210px;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .header .inner {
    width: 100%;
    height: 67px;
    padding: 0;
    max-width: none;
  }
  #page-secondary .header .nav-shopping-more {
    width: 188px;
    height: 67px;
  }
  #page-secondary .header .header-logo {
    position: absolute;
    left: 15px;
    height: 67px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #page-secondary .header .site-logo {
    max-width: 210px;
  }
  #page-secondary .header .nav-shopping-more {
    right: 0;
    width: 188px;
    height: 67px;
    left: auto;
  }
  #page-secondary .header .nav-shopping-link {
    padding: 1em 2.2em;
  }
}

/* --------------------------------

  nav

-------------------------------- */
.nav {
  display: block;
  position: fixed;
  top: 0;
  left: -288px;
  width: 288px;
  height: 100%;
  z-index: 1010;
  opacity: 0;
}

@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    top: 0;
    height: 67px;
    width: auto;
    right: 188px;
    left: auto;
    margin: 0;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    background-color: transparent;
    padding: 0;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav {
    -webkit-transition-property: opacity, left;
    transition-property: opacity, left;
    -webkit-transition-duration: .3s;
            transition-duration: .3s;
  }
}

@media screen and (min-width: 1100px), print {
  #top .nav {
    position: absolute;
    top: 110px;
    left: 5%;
    right: auto;
    width: 288px;
    padding: 1em 1.3em;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav-open .nav {
    left: 0;
    opacity: 1;
    z-index: 1100;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav .inner {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    background-color: rgba(150, 201, 177, 0.95);
    z-index: 10;
  }
}

.nav-shopping-more {
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-more {
    height: 60px;
    width: 60px;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    position: fixed;
    z-index: 2000;
  }
}

#top .nav-shopping-more {
  height: 116px;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 1099.98px) {
  #top .nav-shopping-more {
    height: 60px;
    width: 60px;
    right: 0;
    left: auto;
    bottom: auto;
    top: 0;
    z-index: 2000;
    position: fixed;
  }
}

.nav-shopping-more.main-nav-active .nav-shopping-link {
  background-color: #70050B;
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-more.main-nav-active .nav-shopping-link::before {
    background: url("../img/base/shopping-icon_wht.svg") no-repeat center/cover;
  }
}

.nav-shopping-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #171715;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-link {
    position: relative;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: transparent;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    display: block;
    width: 25px;
    height: 25px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    background: url("../img/base/shopping-icon_blk.svg") no-repeat center/cover;
  }
}

#top .nav-shopping-link {
  padding: 1em 2.2em;
}

@media screen and (max-width: 1099.98px) {
  #top .nav-shopping-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.nav-shopping-link:hover {
  text-decoration: none;
  background-color: #70050B;
}

.nav-shopping-link:hover::before {
  background: url("../img/base/shopping-icon_wht.svg") no-repeat center/cover;
}

.nav-shopping-link span {
  position: relative;
  padding-left: 2.5em;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-link span {
    display: none;
  }
}

.nav-shopping-link span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  display: block;
  width: 28px;
  height: 28px;
  background: url("../img/base/shoping-icon.png") no-repeat center/cover;
}

@media screen and (max-width: 1099.98px) {
  .nav-shopping-link span::before {
    display: none;
  }
}

@media screen and (max-width: 1099.98px) {
  .nav-container {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .main-nav {
    padding: 70px 15px 15px;
    border-top: none;
  }
}

#top .main-nav {
  padding-top: .9em;
  padding-left: .3em;
  padding-right: .3em;
  border-top: 1px solid #555555;
}

@media screen and (max-width: 1099.98px) {
  #top .main-nav {
    padding: 65px 10px 15px;
    border-top: none;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    padding: 0;
    width: 565px;
    height: 100%;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-item:nth-child(4) {
    padding: .8em 0;
  }
  .main-nav .nav-item:nth-child(4) .menu-subnav {
    padding: 0 .5em;
  }
}

@media screen and (max-width: 1099.98px) {
  #top .main-nav .nav-item:nth-child(4) {
    padding: .8em .5em .5em .5em;
  }
}

#top .main-nav .nav-item {
  padding: .33em 0;
}

@media screen and (max-width: 1099.98px) {
  #top .main-nav .nav-item {
    padding: 0;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .main-nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.main-nav .nav-item.main-nav-active .nav-link {
  color: #70050B;
}

.main-nav .nav-link {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #422D1E;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

@media screen and (max-width: 1099.98px) {
  .main-nav .nav-link {
    display: block;
  }
}

.main-nav .nav-link span {
  font-weight: 500;
}

@media screen and (min-width: 1100px), print {
  #page-secondary .main-nav .nav-link span {
    position: relative;
    padding: .8em 0 0 0;
    margin-bottom: .35em;
  }
  #page-secondary .main-nav .nav-link span::after {
    content: attr(data-subttl);
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #70050B;
    display: inline-block;
    width: 150px;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
  }
}

@media screen and (max-width: 1099.98px) {
  #page-secondary .main-nav .nav-link span {
    position: relative;
    padding-right: 3.5em;
  }
  #page-secondary .main-nav .nav-link span::after {
    content: attr(data-subttl);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.3rem;
    color: #70050B;
    display: inline-block;
    width: 150px;
    padding-left: 1em;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
  }
}

@media screen and (min-width: 1100px), print {
  #top .main-nav .nav-link span {
    position: relative;
    padding-right: 3.5em;
  }
  #top .main-nav .nav-link span::after {
    content: attr(data-subttl);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.3rem;
    color: #70050B;
    display: inline-block;
    width: 150px;
    padding-left: 1em;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
  }
}

@media screen and (max-width: 1099.98px) {
  #top .main-nav .nav-link span {
    position: relative;
    padding-right: 3.5em;
  }
  #top .main-nav .nav-link span::after {
    content: attr(data-subttl);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-weight: 500;
    font-size: 1.3rem;
    color: #70050B;
    display: inline-block;
    width: 150px;
    padding-left: 1em;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .main-nav .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 1099.98px) {
  .main-nav a.nav-link {
    padding: .9em .5em .85em .5em;
  }
}

.main-nav a.nav-link:hover {
  text-decoration: none;
  color: #70050B;
}

.main-nav a.nav-link:hover span::before {
  color: #422D1E;
}

#top .main-nav a.nav-link:hover {
  color: #70050B;
  text-decoration: none;
}

/* ドロップダウンナビ */
@media screen and (max-width: 1099.98px) {
  .sub-nav-container {
    margin-top: .2em;
  }
}

#top .sub-nav-container {
  margin-top: .4em;
}

@media screen and (max-width: 1099.98px) {
  #top .sub-nav-container {
    margin-top: .2em;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .sub-nav-container {
    margin-top: 0;
  }
}

.sub-nav-item {
  padding: .3em 0;
}

.sub-nav-link {
  position: relative;
  padding-left: .6em;
  margin-left: .5em;
  font-size: 1.5rem;
  color: #422D1E;
  display: block;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.sub-nav-link:hover {
  color: #70050B;
  text-decoration: none;
}

.sub-nav-link:hover .sub-nav-subtitle {
  color: #422D1E;
}

.sub-nav-link::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #422D1E;
}

.sub-nav-title {
  font-weight: 500;
}

.sub-nav-subtitle {
  font-weight: 500;
  font-size: 1.3rem;
  color: #70050B;
  display: inline-block;
  padding-left: .6em;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

/* ドロップダウンナビボタン */
/* ドロップダウンナビボタン（ hover ）*/
/* ドロップダウンナビボタン（ active ）*/
/* ナビゲーション開閉ボタン */
.nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  z-index: 1011;
}

@media screen and (min-width: 1100px), print {
  .nav-button {
    display: none;
  }
}

.nav-open .nav-button {
  display: none;
}

.nav-button-icon {
  display: block;
  position: absolute;
  top: -14px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 18px;
  margin: auto;
  border-top: 2px solid #422D1E;
  border-bottom: 2px solid #422D1E;
}

.nav-button-icon::before, .nav-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid #422D1E;
}

.nav-button-icon::after {
  display: none;
}

.nav-button::after {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  color: #422D1E;
  text-align: center;
  letter-spacing: .1rem;
}

/* ナビゲーション開閉ボタン */
.nav-close-button {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav-close-button {
    display: none;
  }
}

.nav-close-button .nav-button-icon {
  border: none;
}

.nav-close-button .nav-button-icon::before, .nav-close-button .nav-button-icon::after {
  border-color: #422D1E;
}

.nav-close-button .nav-button-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav-close-button .nav-button-icon::after {
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-close-button::after {
  content: "CLOSE";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  color: #422D1E;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

/* ナビゲーション背景 */
@media screen and (min-width: 1100px), print {
  .nav-screen {
    display: none;
  }
}

.nav-screen-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: auto;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.nav-open .nav-screen-overlay {
  pointer-events: auto;
  opacity: .4;
  cursor: pointer;
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .nav.fixed {
    position: fixed;
    top: -67px;
    -webkit-transform: translateY(67px);
            transform: translateY(67px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    height: 67px;
    width: auto;
    right: 188px;
    left: auto;
    padding: 0;
  }
  #top .nav.fixed {
    position: fixed;
    top: -67px;
    right: 188px;
    left: auto;
    -webkit-transform: translateY(67px);
            transform: translateY(67px);
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    height: 67px;
    width: auto;
    padding: 0;
  }
  .nav.fixed .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    padding: 0;
    width: 565px;
    height: 100%;
    padding-right: 20px;
  }
  #top .nav.fixed .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    padding: 0;
    width: 605px;
    height: 100%;
    padding-right: 20px;
  }
  .nav.fixed .nav-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  #top .nav.fixed .nav-item {
    padding: 0;
  }
  .nav.fixed .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
  }
  #page-secondary .nav.fixed .nav-link span {
    padding: .8em 0 0 0;
    margin-bottom: .35em;
  }
  #page-secondary .nav.fixed .nav-link span::after {
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
    font-size: 1.1rem;
  }
  #top .nav.fixed .nav-link span {
    padding: .8em 0 0 0;
    margin-bottom: .35em;
  }
  #top .nav.fixed .nav-link span::after {
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
    font-size: 1.1rem;
    padding: 0;
  }
  .nav.fixed .inner, .nav.fixed .nav-container {
    height: 100%;
  }
  .nav.fixed .sub-nav {
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    pointer-events: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
    width: 265px;
    z-index: 1010;
    background-color: rgba(150, 201, 177, 0.95);
    padding: .55em 1em;
  }
  .nav.fixed .sub-nav-subtitle {
    font-size: 1.2rem;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
  }
  .nav.fixed .sub-nav-container {
    margin-top: 0;
  }
  #top .nav.fixed .sub-nav-container {
    margin-top: 0;
  }
  .nav.fixed .sub-nav-link {
    margin-left: 0;
  }
  .nav.fixed .nav-menu {
    position: relative;
  }
  .nav.fixed .nav-menu .nav-link {
    cursor: pointer;
  }
  .nav.fixed .nav-menu .nav-link span {
    position: relative;
  }
  .nav.fixed .nav-menu .nav-link span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(150%);
            transform: translateX(-50%) translateY(150%);
    border-top: 8px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  .nav.fixed .nav-menu .nav-link:hover {
    color: #70050B;
  }
  .nav.fixed .nav-menu .nav-link:hover span::before {
    border-top: 8px solid #70050B;
  }
  .nav.fixed .nav-menu .nav-link.active + .sub-nav {
    opacity: 1;
    pointer-events: auto;
    bottom: -10px;
  }
}

/* 下層ヘッダー */
@media screen and (min-width: 1100px), print {
  #page-secondary .nav .inner, #page-secondary .nav .nav-container {
    height: 100%;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .sub-nav {
    opacity: 0;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    pointer-events: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(100%);
            transform: translateX(-50%) translateY(100%);
    width: 265px;
    z-index: 1010;
    background-color: rgba(150, 201, 177, 0.95);
    padding: .55em 1em;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .sub-nav-subtitle {
    font-size: 1.2rem;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .sub-nav-container {
    margin-top: 0;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .sub-nav-link {
    margin-left: 0;
  }
}

@media screen and (min-width: 1100px), print {
  #page-secondary .nav-menu {
    position: relative;
  }
  #page-secondary .nav-menu .nav-link {
    cursor: pointer;
  }
  #page-secondary .nav-menu .nav-link span {
    position: relative;
  }
  #page-secondary .nav-menu .nav-link span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(150%);
            transform: translateX(-50%) translateY(150%);
    border-top: 8px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  #page-secondary .nav-menu .nav-link:hover {
    color: #70050B;
  }
  #page-secondary .nav-menu .nav-link:hover span::before {
    border-top: 8px solid #70050B;
  }
  #page-secondary .nav-menu .nav-link.active + .sub-nav {
    opacity: 1;
    pointer-events: auto;
    bottom: -10px;
  }
}

/* --------------------------------

  main

-------------------------------- */
.main {
  display: block;
  position: relative;
  padding: 0 1em;
  overflow: hidden;
  z-index: 100;
  background: #fff;
}

#page-secondary .main {
  padding: 3em 1em;
}

#top .main {
  background: #f7f7f7;
}

@media screen and (min-width: 1100px), print {
  .main {
    overflow: hidden;
  }
  #page-secondary .main {
    padding: 3em 1em;
  }
}

.main > .inner {
  max-width: none;
}

/* --------------------------------

  footer

-------------------------------- */
.footer {
  background-color: #000;
  padding: 2.5em 1em 2.5em 1em;
}

@media screen and (min-width: 1100px), print {
  .footer {
    padding: 3em 2em 3em 2em;
  }
}

@media screen and (max-width: 639.98px) {
  .footer {
    padding: 2em 1em 2em 1em;
  }
}

.footer .inner {
  max-width: 1380px;
  padding: 0;
}

.footer-logo {
  text-align: center;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.7em;
}

@media screen and (max-width: 1099.98px) {
  .footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2.5em;
  }
}

.footer-sub-nav {
  margin-top: .2em;
  padding-left: .5em;
}

.footer-sub-nav-link {
  color: #fff;
  font-size: 1.5rem;
  padding: .4em 0;
  display: inline-block;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.footer-sub-nav-link:hover {
  text-decoration: none;
  color: #96C9B1;
}

.footer-sub-nav-link:hover .footer-sub-nav-subtitle {
  color: #fff;
}

.footer-sub-nav-subtitle {
  font-size: 1.3rem;
  color: #D6D6D6;
  display: inline-block;
  padding-left: 1em;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.footer-sub-nav-title {
  position: relative;
  padding-left: 1em;
}

.footer-sub-nav-title::before {
  content: "-";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}

.footer-nav-area {
  margin-right: 2.5em;
}

@media screen and (max-width: 1099.98px) {
  .footer-nav-area {
    margin-right: 0;
    margin-bottom: 2.5em;
  }
}

@media screen and (max-width: 639.98px) {
  .footer-nav-area {
    margin-bottom: 2em;
  }
}

.footer-nav-item:not(:last-child) {
  margin-bottom: 1em;
}

.footer-nav-link {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.footer-nav-link span {
  position: relative;
  padding-right: 3.7em;
}

.footer-nav-link span::after {
  content: attr(data-fnavttl);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 500;
  font-size: 1.3rem;
  color: #D6D6D6;
  display: inline-block;
  width: 150px;
  padding-left: 1em;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.footer-nav a.footer-nav-link:hover {
  text-decoration: none;
  color: #96C9B1;
}

.footer-nav a.footer-nav-link:hover span::before {
  color: #fff;
}

.footer-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -.5em -.5em 0;
}

@media screen and (max-width: 767.98px) {
  .footer-image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 639.98px) {
  .footer-image {
    margin: 0 0 -.5em 0;
  }
}

.footer-image-item {
  width: calc(33.33333% - 8px);
  margin: 0 .5em .5em 0;
}

@media screen and (max-width: 767.98px) {
  .footer-image-item {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 639.98px) {
  .footer-image-item {
    margin: 0 0 .5em 0;
    width: calc(100% - 8px);
    text-align: center;
  }
}

@media screen and (min-width: 1100px), print {
  .footer-image-item img {
    width: 100%;
    height: 243px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
  }
}

.footer .pagetop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 45px;
  height: 45px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (min-width: 768px), print {
  .footer .pagetop {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
  }
}

.footer .pagetop.fixed {
  opacity: 1;
  pointer-events: auto;
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #96C9B1;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

.footer .pagetop a:hover {
  text-decoration: none;
  background-color: #70050B;
}

.footer .pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: .5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: .8em;
  height: .8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* --------------------------------

  idxx　ページタイトル

-------------------------------- */
.page-title {
  display: block;
  position: relative;
  padding: 0 1em;
  overflow: hidden;
}

@media screen and (min-width: 1100px), print {
  .page-title {
    padding: 0 2.5em;
  }
}

.shopping-page .page-title {
  background: url("../img/pages/shopping/page_title_bg.jpg") no-repeat center/cover;
}

.company-page .page-title {
  background: url("../img/pages/company/page_title_bg.jpg") no-repeat center/cover;
}

.concept-page .page-title {
  background: url("../img/pages/concept/page_title_bg.jpg") no-repeat center/cover;
}

.menu-page .page-title {
  background: url("../img/pages/menu/page_title_bg.jpg") no-repeat center/cover;
}

.news-page .page-title {
  background: url("../img/pages/news/page_title_bg.jpg") no-repeat center/cover;
}

.page-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 170px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1099.98px) {
  .page-title-inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px), print {
  .page-title-inner {
    height: 210px;
  }
}

.page-title-name {
  margin-top: 1.8em;
  font-size: 3.6rem;
  display: inline-block;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 12px rgba(34, 34, 34, 0.65), -2px 2px 12px rgba(34, 34, 34, 0.65), 2px -2px 12px rgba(34, 34, 34, 0.65), -2px -2px 12px rgba(34, 34, 34, 0.65), 2px 0px 12px rgba(34, 34, 34, 0.65), 0px 2px 12px rgba(34, 34, 34, 0.65), -2px 0px 12px rgba(34, 34, 34, 0.65), 0px -2px 12px rgba(34, 34, 34, 0.65);
}

@media screen and (max-width: 767.98px) {
  .page-title-name {
    font-size: 3rem;
    margin-top: 1.9em;
  }
}

/* --------------------------------

  アニメーション

-------------------------------- */
#concept .anim-concept1 {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all .5s .2s ease;
  transition: all .5s .2s ease;
}

#concept .anim-concept2 {
  overflow: hidden;
  position: relative;
}

#concept .anim-concept2 img {
  display: block;
  opacity: 0;
  position: relative;
  -webkit-transition: all .2s .3s ease;
  transition: all .2s .3s ease;
  z-index: 0;
}

#concept .anim-concept2::before {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .5s 0s ease;
  transition: all .5s 0s ease;
  width: 100%;
  z-index: 1;
}

#concept.active .anim-concept1 {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#concept.active .anim-concept2 img {
  opacity: 1;
}

#concept.active .anim-concept2::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

#menu .anim-menu1 {
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}

#menu .anim-menu1 .section-tag, #menu .anim-menu1 .section-heading {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}

#menu .anim-menu2 {
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}

#menu .anim-menu2 p {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 2s;
}

#menu.active .anim-menu1 {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#menu.active .anim-menu1 .section-tag, #menu.active .anim-menu1 .section-heading {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#menu.active .anim-menu2 {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#menu.active .anim-menu2 p {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#anim-menu3 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all .4s .2s ease;
  transition: all .4s .2s ease;
}

#anim-menu3.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#outline .anim-outline {
  overflow: hidden;
  position: relative;
}

#outline .anim-outline img {
  display: block;
  opacity: 0;
  position: relative;
  -webkit-transition: all .5s .3s ease;
  transition: all .5s .3s ease;
  z-index: 0;
}

#outline .anim-outline::before {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all .8s 0s ease;
  transition: all .8s 0s ease;
  width: 100%;
  z-index: 1;
}

#outline.active .anim-outline img {
  opacity: 1;
}

#outline.active .anim-outline::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

#news .anim-news {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all .4s .2s ease;
  transition: all .4s .2s ease;
}

#news.active .anim-news {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
}

.loader.loading {
  opacity: 1;
  pointer-events: auto;
}

.loader::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  border: 4px solid #ddd;
  border-top: 4px solid #96C9B1;
  border-radius: 50%;
  z-index: 1;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

.loader img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 140px;
  margin: auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* --------------------------------

  メインビジュアル

-------------------------------- */
.mainvisual {
  position: relative;
}

.mainvisual .inner {
  max-width: none;
}

.mainvisual-img {
  width: 100%;
}

@media screen and (min-width: 1100px), print {
  .mainvisual-img {
    height: 570px;
  }
}

.mainvisual-img img {
  width: 100%;
  height: 570px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 1099.98px) {
  .mainvisual-img img {
    height: 375px;
  }
}

@media screen and (max-width: 767.98px) {
  .mainvisual-img img {
    height: 270px;
  }
}

@media screen and (max-width: 639.98px) {
  .mainvisual-img img {
    height: 220px;
  }
}

@media screen and (max-width: 479.98px) {
  .mainvisual-img img {
    height: 170px;
  }
}

@media screen and (max-width: 359.98px) {
  .mainvisual-img img {
    height: 140px;
  }
}

@media screen and (max-width: 639.98px) {
  .mainvisual-catch {
    padding: 1em;
    background-color: #f7f7f7;
  }
}

@media screen and (min-width: 640px), print {
  .mainvisual-catch {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #fff;
    text-align: right;
  }
}

.mainvisual-heading {
  display: inline-block;
  font-size: 3.7rem;
  line-height: 1.2;
  letter-spacing: .023em;
  margin-bottom: .5em;
  text-shadow: 3px 3px 6px rgba(45, 3, 0, 0.3), -3px 3px 6px rgba(45, 3, 0, 0.3), 3px -3px 6px rgba(45, 3, 0, 0.3), -3px -3px 6px rgba(45, 3, 0, 0.3), 3px 0px 6px rgba(45, 3, 0, 0.3), 0px 3px 6px rgba(45, 3, 0, 0.3), -3px 0px 6px rgba(45, 3, 0, 0.3), 0px -3px 6px rgba(45, 3, 0, 0.3);
}

@media screen and (max-width: 1099.98px) {
  .mainvisual-heading {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767.98px) {
  .mainvisual-heading {
    font-size: 2.4rem;
    margin-bottom: .2em;
  }
}

@media screen and (max-width: 639.98px) {
  .mainvisual-heading {
    text-align: center;
    display: block;
    margin-bottom: .4em;
    color: #70050B;
    text-shadow: inherit;
    font-weight: 500;
  }
}

@media screen and (max-width: 479.98px) {
  .mainvisual-heading {
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
    font-size: 2.2rem;
  }
}

.mainvisual-text {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: .023em;
}

@media screen and (max-width: 767.98px) {
  .mainvisual-text {
    font-size: 1.4rem;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
    letter-spacing: inherit;
  }
}

@media screen and (max-width: 639.98px) {
  .mainvisual-text {
    text-align: center;
    background-color: #fff;
    padding: .8em 1em;
  }
}

@media screen and (max-width: 479.98px) {
  .mainvisual-text {
    padding: .7em .5em;
  }
}

@media screen and (max-width: 639.98px) {
  .mainvisual-text p {
    font-weight: 500;
  }
}

/* --------------------------------

  フォーム部品

-------------------------------- */
/* レイアウト用 */
.form-table {
  display: block;
  line-height: 1.5;
  padding: 0 1.5em;
}

@media screen and (max-width: 1099.98px) {
  .form-table {
    padding: 0;
  }
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: table;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-bottom: 1px dotted rgba(65, 44, 30, 0.3);
}

@media screen and (max-width: 767.98px) {
  .form-table tr {
    display: block;
    padding: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 767.98px) {
  .form-table tr:not(:last-child) {
    margin-bottom: 2em;
  }
}

.form-table th {
  position: relative;
  vertical-align: top;
  width: 11.5em;
  padding: .8em 0 .8em .3em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 767.98px) {
  .form-table th {
    display: block;
    width: auto;
    margin-bottom: 1em;
    padding: 0 0 .5em .3em;
    border-bottom: 1px dotted rgba(65, 44, 30, 0.3);
  }
}

.form-table th .br {
  display: block;
}

@media screen and (max-width: 767.98px) {
  .form-table th .br {
    display: none;
  }
}

.form-table td {
  vertical-align: middle;
  padding: .8em .3em .8em 3em;
}

@media screen and (max-width: 1099.98px) {
  .form-table td {
    padding-right: 0;
  }
}

@media screen and (max-width: 767.98px) {
  .form-table td {
    display: block;
    padding: 0 .3em;
  }
}

.form-table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1099.98px) {
  .form-table-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-table-container .form-data-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1099.98px) {
  .form-table-container .form-data-text {
    width: 100%;
    margin-top: .5em;
  }
}

@media screen and (max-width: 1099.98px) {
  .form-table-container .form-data-text .form-control.form-short {
    width: 100%;
    max-width: none;
  }
}

.form-table-container .form-data-text input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.form-table-container .form-data-text .form-title {
  font-size: 1.5rem;
}

@media screen and (max-width: 1099.98px) {
  .form-table-container .form-data-text .form-title {
    font-size: 1.5rem;
  }
}

/* レイアウト用：タイトル */
.form-label {
  max-width: 100%;
  min-width: 6em;
}

.form-add-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-add-text {
  display: inline-block;
  margin: 0 .8em;
}

.form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991.98px) {
  .form-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-wrap-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  max-width: 197px;
  margin-right: .5em;
}

@media screen and (max-width: 991.98px) {
  .form-wrap-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: .5em;
  }
}

.form-more {
  margin-left: 1em;
}

@media screen and (max-width: 991.98px) {
  .form-more {
    margin-left: .3em;
    margin-top: .5em;
  }
}

.form-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: #6AB291;
}

.form-attention {
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 1.3em;
}

@media screen and (max-width: 991.98px) {
  .form-attention {
    margin-left: 0;
    margin-top: .5em;
  }
}

/* レイアウト用：チェックボックス・ラジオボタン */
.form-check {
  width: 14em;
  margin: 0;
  padding: 0 0 .5em;
}

.form-check-wrap {
  padding: .5em 0 0;
}

/* フォーム部品：タイトル */
.form-title {
  display: inline-block;
  vertical-align: middle;
  padding: .72em 0;
  font-weight: 600;
  font-size: 1.5rem;
}

@media screen and (max-width: 1099.98px) {
  .form-title {
    font-size: 1.5rem;
    padding: .72em 0;
  }
}

@media screen and (max-width: 767.98px) {
  .form-title {
    padding: 0;
  }
}

/* フォーム部品：入力必須マーク */
.form-icon {
  display: block;
  float: right;
  width: 41px;
  margin: .72em 0 .72em .75em;
  line-height: 1.5em;
  font-size: 1.4rem;
  padding: .1em 0 0 0;
  color: #fff;
  text-align: center;
  border-radius: 0;
}

@media screen and (max-width: 1099.98px) {
  .form-icon {
    font-size: 1.4rem;
    width: 41px;
    margin: .72em 0 .72em .75em;
  }
}

@media screen and (max-width: 767.98px) {
  .form-icon {
    margin: 0 0 0 .5em;
  }
}

.form-icon-required {
  background-color: #8C4600;
}

.form-icon-required::before {
  content: "必須";
}

.form-icon-free {
  background-color: #eee;
  color: #333333;
}

@media screen and (max-width: 767.98px) {
  .form-icon-free {
    background-color: #eee;
  }
}

.form-icon-free::before {
  content: "任意";
}

/* radio button */
.form-radio-attention {
  font-size: 1.6rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  margin-top: .3em;
}

@media screen and (max-width: 1099.98px) {
  .form-radio-attention {
    font-size: 1.4rem;
  }
}

.form-radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 479.98px) {
  .form-radio-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-radio-item {
  padding: .5em 3.5em .5em .5em;
}

@media screen and (max-width: 1099.98px) {
  .form-radio-item {
    padding: .5em 2em .5em .5em;
  }
}

.form-radio-item span {
  font-size: 2rem;
}

@media screen and (max-width: 1099.98px) {
  .form-radio-item span {
    font-size: 1.8rem;
  }
}

.form-radio-item input[type="radio"] {
  display: none;
}

.form-radio-item input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background-color: #3C5CAF;
  border-radius: 100%;
}

@media screen and (max-width: 1099.98px) {
  .form-radio-item input[type="radio"]:checked + label::after {
    width: 13px;
    height: 13px;
  }
}

.form-radio-item label {
  position: relative;
  display: inline-block;
  padding-left: 2.3em;
}

.form-radio-item label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 29px;
  height: 29px;
  border-radius: 100%;
  border: 1px solid #333333;
  background-color: #eee;
}

@media screen and (max-width: 1099.98px) {
  .form-radio-item label::before {
    width: 25px;
    height: 25px;
  }
}

/* select box */
.form-select {
  position: relative;
  max-width: 197px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

@media screen and (max-width: 991.98px) {
  .form-select {
    width: 100%;
  }
}

.form-select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #333333;
  z-index: 0;
}

.form-select select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  border: 1px solid #D6D6D6;
  font-family: "游明朝", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 500;
  max-width: 252px;
  width: 100%;
  font-size: 1.5rem;
  height: 44px;
  padding: .6em 2em .5em 1em;
}

.form-select select::-ms-expand {
  display: none;
}

.form-select select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #3C5CAF;
}

/* フォーム部品：入力欄 */
.form-control {
  width: 100%;
  height: 44px;
  padding: .73em .5em .6em 1em;
  color: #333333;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1.5;
  border: 1px solid #D6D6D6;
  background-color: #fff;
}

.form-control:focus, .form-control:active {
  outline: none;
  border-color: #333333;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control.form-short {
  max-width: 197px;
}

.form-control.form-vshort {
  max-width: 136px;
}

.form-control.form-middle {
  max-width: 310px;
}

@media screen and (max-width: 1099.98px) {
  .form-control.form-middle {
    max-width: 100%;
  }
}

.form-control.form-low {
  height: 1.6em;
}

@media screen and (max-width: 767.98px) {
  .form-control.form-low {
    height: 2.0em;
  }
}

.form-control.form-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.form-control.form-inline-right {
  margin-left: .5em;
}

.form-control.form-inline-left {
  margin-right: .5em;
}

.form-control.form-inline-both {
  margin-right: .5em;
  margin-left: .5em;
}

.form-control.form-textarea {
  resize: vertical;
  vertical-align: top;
  height: 21.7em;
  min-height: 2.5em;
  max-height: 30em;
  padding: .5em .5em 0;
}

@media screen and (max-width: 639.98px) {
  .form-control.form-textarea {
    height: 17em;
  }
}

.form-control.form-textarea-low {
  height: 10.5em;
}

.form-control.form-textarea-high {
  height: 10em;
}

.form-control.form-textarea-maxhigh {
  height: 16.5em;
}

/* フォーム部品：セレクト */
.select-wrap {
  position: relative;
  color: #333333;
  background-color: #fff;
}

.select-wrap select {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 1.5em;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select-wrap select::-ms-expand {
  display: none;
}

.select-wrap .select-icon {
  display: block;
  position: absolute;
  top: -2px;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  pointer-events: none;
  z-index: 1;
}

/* フォーム部品：ラジオボタン、チェックボックス共通 */
.form-box {
  position: absolute;
  opacity: 0;
}

.form-box + label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding-left: 26px;
  cursor: pointer;
}

.form-box + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 1px solid #ccc;
  background: #fff;
}

.form-box + label::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
}

.form-box:checked + label {
  color: #96C9B1;
}

.form-box:checked + label::before {
  border-color: #96C9B1;
}

/* フォーム部品：ラジオボタン */
.form-box-radio + label::before {
  border-radius: 100%;
}

.form-box-radio + label::after {
  top: 0;
  bottom: 0;
  left: 4px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 100%;
  opacity: 1;
}

.form-box-radio:checked + label::after {
  background-color: #96C9B1;
  opacity: 1;
}

/* フォーム部品：チェックボックス */
.form-box-check + label::before {
  border-radius: 0;
}

.form-box-check + label::after {
  top: -10px;
  bottom: 0;
  left: 3px;
  width: 20px;
  height: 10px;
  border-left: 3px solid #96C9B1;
  border-bottom: 3px solid #96C9B1;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.form-box-check:checked + label::after {
  opacity: 1;
}

/* フォーム部品：エラーメッセージ */
input.validate-error,
select.validate-error,
textarea.validate-error {
  border-color: #e83228;
}

span.validate-error {
  display: block !important;
  font-size: .85em;
  color: #e83228;
}

span.validate-error:first-of-type {
  margin-top: .7em;
}

span.validate-error:last-of-type {
  margin-bottom: -.7em;
}

.error-message-check span.validate-error:first-of-type {
  margin-top: 0;
  margin-bottom: -.7em;
}

.error-message-check span.validate-error:not(:first-of-type) {
  display: none !important;
}

/* フォーム部品：送信ボタン */
.form-buttons {
  text-align: center;
  margin-top: 1.5em;
}

.form-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  min-width: 100px;
  margin: 0 auto;
  max-width: 333px;
  width: 100%;
  line-height: 1.1;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: inherit;
  color: #333333;
  background-color: #96C9B1;
  padding: 1.15em 4em .9em 2em;
  text-align: left;
  border: 0;
  background: none;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 1099.98px) {
  .form-button {
    font-size: 1.6rem;
    padding: 1em 4em .9em 2em;
  }
}

.form-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 82px;
  height: 8px;
  background: url("../img/base/arrow-icon_black.svg") no-repeat center/cover;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.form-button-send {
  border-color: #96C9B1;
  background: #96C9B1;
}

.form-button-send:hover {
  background-color: #70050B;
  color: #fff;
  text-decoration: none;
}

.form-button-send:hover::before {
  background: url("../img/base/arrow-icon_wht.svg") no-repeat center/cover;
}

.form-button-back {
  border-color: #999;
  background: #999;
}

.form-button-back:hover {
  border-color: #ccc;
  background: #ccc;
}

.form-button-inline {
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding: .7em 1em;
  font-size: .9em;
}

.form-button-inline::after {
  display: none;
}

.form-button-search {
  border-color: #3C5CAF;
  background: #3C5CAF;
}

.form-button-search:hover {
  border-color: #96C9B1;
  background: #96C9B1;
}

.form-button-upload {
  margin: 0;
  padding: .8em 1em;
  font-size: 1.1em;
  color: #fff;
  background: #e21664;
}

.form-button-upload:hover {
  color: #fff;
  text-decoration: none;
  background: #e94709;
}

.form-button-upload::after {
  display: none;
}

/* --------------------------------

  id01　トップページ

-------------------------------- */
/* ページ内共通 */
.section {
  margin-right: -1em;
  margin-left: -1em;
}

@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
}

.section-secondary {
  padding-right: 1em;
  padding-left: 1em;
}

@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 2em;
    padding-left: 2em;
  }
}

.section-secondary:not(:last-child) {
  margin-bottom: 5em;
}

.section-secondary .inner {
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}

@media screen and (min-width: 1100px), print {
  .section-secondary .inner {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.section-dummy {
  padding-right: 1em;
  padding-left: 1em;
  padding-top: 2em;
  padding-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .section-dummy {
    padding-right: 2em;
    padding-left: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

.section-dummy:not(:last-child) {
  margin-bottom: 5em;
}

.section-dummy .inner {
  max-width: none;
  text-align: center;
}

.section-dummy_wide {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.section-dummy_wide .inner {
  margin-right: -23%;
  margin-left: -23%;
}

@media screen and (min-width: 1100px), print {
  .section-dummy_wide .inner {
    margin-right: -250px;
    margin-left: -250px;
  }
}

.section-header {
  margin-bottom: 1em;
}

.section-tag {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 6.5em;
  margin-bottom: 1.3em;
}

@media screen and (max-width: 767.98px) {
  .section-tag {
    font-size: 1.6rem;
    padding-left: 5.2em;
    margin-bottom: 1em;
  }
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 102px;
  height: 1px;
  display: block;
}

@media screen and (max-width: 767.98px) {
  .section-tag::before {
    width: 70px;
  }
}

.section-tag._accent1 {
  color: #422D1E;
}

.section-tag._accent1::before {
  background-color: #70050B;
}

.section-tag._accent2 {
  color: #fff;
}

.section-tag._accent2::before {
  background-color: #fff;
}

.section-heading {
  display: block;
  line-height: 1.2;
  font-weight: 500;
}

.section-heading._center {
  text-align: center;
}

.section-heading._accent1 {
  color: #70050B;
  font-size: 3rem;
}

@media screen and (max-width: 1099.98px) {
  .section-heading._accent1 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767.98px) {
  .section-heading._accent1 {
    font-size: 1.8rem;
  }
}

.section-heading._accent1 span {
  font-size: 3.7rem;
  font-weight: 500;
  padding-left: .25em;
}

@media screen and (max-width: 1099.98px) {
  .section-heading._accent1 span {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767.98px) {
  .section-heading._accent1 span {
    font-size: 2rem;
  }
}

.section-heading._accent2 {
  font-size: 3.7rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  color: #fff;
}

@media screen and (max-width: 1099.98px) {
  .section-heading._accent2 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767.98px) {
  .section-heading._accent2 {
    font-size: 1.8rem;
    text-align: center;
  }
}

@media screen and (max-width: 479.98px) {
  .section-heading._accent2 {
    font-size: 1.6rem;
  }
}

/* Concept */
.cleauventerre-concept-section {
  padding: 3em 1em;
}

@media screen and (min-width: 1100px), print {
  .cleauventerre-concept-section {
    padding: 5em 2em;
  }
}

@media screen and (max-width: 639.98px) {
  .cleauventerre-concept-section {
    padding: 1.5em 1em 3em 1em;
  }
}

.cleauventerre-concept-section .inner {
  max-width: 1388px;
  padding: 0;
}

.cleauventerre-concept-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1279.98px) {
  .cleauventerre-concept-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cleauventerre-concept-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  z-index: 1;
  margin-right: -3em;
}

@media screen and (max-width: 1279.98px) {
  .cleauventerre-concept-main {
    margin-right: 0;
    margin-bottom: 1em;
    width: 100%;
  }
}

.cleauventerre-concept-body {
  position: relative;
}

.cleauventerre-concept-more {
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cleauventerre-concept-text {
  padding: 1.5em 1.5em 3em 1.5em;
  background-color: #fff;
  line-height: 2;
  font-size: 1.7rem;
  color: #422D1E;
  text-align: center;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-concept-text {
    font-size: 1.4rem;
    padding: 1.2em 1em 2.5em 1em;
  }
}

@media screen and (max-width: 639.98px) {
  .cleauventerre-concept-text {
    line-height: 1.8;
  }
}

.cleauventerre-concept-text .accent {
  color: #70050B;
  font-weight: 500;
}

.cleauventerre-concept-text .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .cleauventerre-concept-text .br {
    display: block;
  }
}

/* MENU */
.cleauventerre-menu-section {
  padding: 3em 1em;
  background-color: #171715;
}

@media screen and (min-width: 1100px), print {
  .cleauventerre-menu-section {
    padding: 5em 2em;
  }
}

.cleauventerre-menu-section .inner {
  max-width: 1388px;
  padding: 0;
}

.cleauventerre-menu-description {
  color: #fff;
  line-height: 1.77;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  margin-bottom: 2.5em;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2em;
    text-align: center;
  }
}

.cleauventerre-menu-description .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .cleauventerre-menu-description .br {
    display: block;
  }
}

.cleauventerre-menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1em -2.5em 0;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-wrap {
    margin: 0 0 -2.5em 0;
  }
}

.cleauventerre-menu-item {
  position: relative;
  width: calc(25% - 16px);
  margin: 0 1em 2.5em 0;
  padding-bottom: 4.5em;
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-menu-item {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-item {
    width: 100%;
    max-width: 453px;
    margin: 0 0 2.5em 0;
  }
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-menu-image {
    text-align: center;
  }
}

.cleauventerre-menu-body {
  padding-top: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-body {
    padding-top: 1.3em;
  }
}

.cleauventerre-menu-heading {
  font-size: 4.8rem;
  line-height: 1.15;
  font-weight: 500;
  color: #fff;
  font-family: "Alex Brush", cursive;
  text-align: center;
  margin-bottom: .4em;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-heading {
    font-size: 3.8rem;
    margin-bottom: .25em;
  }
}

.cleauventerre-menu-heading span {
  font-family: "游明朝", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-menu-heading span {
    font-size: 1.4rem;
  }
}

.cleauventerre-menu-text {
  line-height: 1.77;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  color: #fff;
}

.cleauventerre-menu-text .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .cleauventerre-menu-text .br {
    display: block;
  }
}

.cleauventerre-menu-more {
  margin-top: 1em;
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 288px;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-menu-more {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-menu-more {
    max-width: 252px;
  }
}

/* Outline */
.cleauventerre-outline-section .inner {
  max-width: none;
  padding: 0;
}

.cleauventerre-outline-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 638px;
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cleauventerre-outline-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  width: 55%;
}

@media screen and (max-width: 1279.98px) {
  .cleauventerre-outline-image {
    width: 50%;
  }
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-image {
    width: 100%;
  }
}

.cleauventerre-outline-image img {
  width: 100%;
  height: 638px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-image img {
    height: 610px;
  }
}

@media screen and (max-width: 991.98px) {
  .cleauventerre-outline-image img {
    height: 530px;
  }
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-outline-image img {
    height: 430px;
  }
}

@media screen and (max-width: 575.98px) {
  .cleauventerre-outline-image img {
    height: 310px;
  }
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-outline-image img {
    height: 255px;
  }
}

@media screen and (max-width: 359.98px) {
  .cleauventerre-outline-image img {
    height: 220px;
  }
}

.cleauventerre-outline-main {
  width: 45%;
}

@media screen and (max-width: 1279.98px) {
  .cleauventerre-outline-main {
    width: 50%;
  }
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-main {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 319px;
  }
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-outline-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

.cleauventerre-outline-body {
  padding: 2.7em 3em 2em 3em;
  background-color: #fff;
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-body {
    padding: 2.5em 1em 1.5em 1em;
  }
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-outline-body {
    padding: 1.5em 1em 1.5em 2em;
  }
}

@media screen and (max-width: 639.98px) {
  .cleauventerre-outline-body {
    padding: 1em;
  }
}

.cleauventerre-outline-table {
  display: table;
  width: 100%;
}

.cleauventerre-outline-table th, .cleauventerre-outline-table td {
  vertical-align: top;
  padding: .5em 1em;
  color: #422D1E;
  font-weight: 500;
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-outline-table th, .cleauventerre-outline-table td {
    display: block;
    padding: 0;
  }
}

.cleauventerre-outline-table th {
  width: 8em;
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-outline-table th {
    width: 100%;
    padding-bottom: .2em;
    margin-bottom: .32em;
    border-bottom: 1px dotted #422D1E;
  }
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-outline-table td {
    margin-bottom: .5em;
    padding-left: .5em;
  }
}

.cleauventerre-outline-table .tel-link {
  font-weight: 500;
  font-size: 1.6rem;
}

@media screen and (max-width: 1099.98px) {
  .cleauventerre-outline-map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

@media screen and (max-width: 639.98px) {
  .cleauventerre-outline-map {
    position: relative;
    width: 100%;
    padding-top: 75%;
  }
  .cleauventerre-outline-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-outline-map {
    padding-top: 90%;
  }
}

/* News & Topics */
.cleauventerre-news-section {
  padding: 5em 1em;
  background: url("../img/top/news-img1.jpg") no-repeat center/cover;
}

@media screen and (min-width: 1100px), print {
  .cleauventerre-news-section {
    padding: 7em 2em;
  }
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-news-section {
    padding: 3.5em 1em 5em 1em;
  }
}

@media screen and (max-width: 639.98px) {
  .cleauventerre-news-section {
    padding: 3em 1em 3.5em 1em;
  }
}

.cleauventerre-news-section .inner {
  padding: 0;
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-news-section .section-heading._accent2 {
    font-size: 2rem;
  }
}

.cleauventerre-news-container {
  margin-top: 2em;
}

.cleauventerre-news-main {
  max-width: 954px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2.5em 3em;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 767.98px) {
  .cleauventerre-news-main {
    padding: 2em 1.5em;
  }
}

@media screen and (max-width: 575.98px) {
  .cleauventerre-news-main {
    padding: 1.5em 1.5em 2em 1.5em;
  }
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-news-main {
    padding: 1.2em 1em 1.8em 1em;
  }
}

.cleauventerre-news-more {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  max-width: 288px;
  width: 100%;
}

@media screen and (max-width: 479.98px) {
  .cleauventerre-news-more {
    max-width: 252px;
  }
}

.menu-section {
  padding: 2em 1em;
}

@media screen and (min-width: 1100px), print {
  .menu-section {
    padding: 2em 2em;
  }
}

/* --------------------------------

  Shopping

-------------------------------- */
.shopping-header {
  display: block;
  position: relative;
  padding: .96em 1em .74em 1em;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 479.98px) {
  .shopping-header {
    padding: .96em 1em .74em .5em;
  }
}

.shopping-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  z-index: -1;
  background-color: #412C1E;
}

.shopping-heading {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: .027em;
}

@media screen and (max-width: 639.98px) {
  .shopping-heading {
    font-size: 1.6rem;
  }
}

.shopping-heading span {
  font-weight: 500;
}

.shopping-contact-section .inner {
  padding: 0;
  max-width: 1200px;
}

.shopping-contact-all {
  position: fixed;
  right: 0;
  bottom: 15%;
  background-color: #000;
  color: #fff;
  padding: 1.1em 1.7em 1em 1.7em;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-all {
    padding: .85em 1.4em .7em 1.3em;
  }
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-all {
    bottom: 22%;
  }
}

.shopping-contact-all span {
  position: relative;
  padding-left: 1.7em;
  font-size: 2.7rem;
  line-height: 1.2;
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-all span {
    font-size: 2rem;
  }
}

.shopping-contact-all span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 28px;
  height: 28px;
  background: url("../img/base/shoping-icon.png") no-repeat center/cover;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-all span::before {
    width: 20px;
    height: 20px;
  }
}

.shopping-contact-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5em;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-method {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 3em;
  }
}

.shopping-contact-method-item:not(:last-child) {
  margin-right: 3em;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-method-item:not(:last-child) {
    margin-right: 1.5em;
  }
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-method-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5em;
  }
}

.shopping-contact-method-card {
  position: relative;
}

.shopping-contact-method-attention {
  position: absolute;
  left: 0;
  bottom: -30px;
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-method-attention {
    font-size: 1.4rem;
  }
}

.shopping-contact-method-more {
  max-width: 459px;
  width: 100%;
}

.shopping-contact-method-more .link-button {
  width: 459px;
  max-width: none;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-method-more .link-button {
    width: 100%;
    padding-left: 1em;
    padding-right: 8em;
  }
}

.shopping-contact-method input[type="radio"] {
  display: none;
}

.shopping-contact-method input[type="radio"]:checked + label::after {
  content: "";
  position: absolute;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  display: block;
  width: 11px;
  height: 11px;
  background-color: #412C1E;
  border-radius: 100%;
}

.shopping-contact-method-radio {
  position: relative;
  display: inline-block;
  padding-left: 1.9em;
  font-size: 1.8rem;
  letter-spacing: .027em;
  font-weight: 500;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-method-radio {
    font-size: 1.6rem;
    letter-spacing: inherit;
  }
}

.shopping-contact-method-radio::before {
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 100%;
  border: 1px solid #333333;
  background-color: #fff;
}

.shopping-contact-intro {
  line-height: 2;
  margin-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .shopping-contact-intro {
    font-size: 1.7rem;
    letter-spacing: .05em;
    margin-bottom: 2.5em;
  }
}

.shopping-contact-intro p {
  font-weight: 500;
}

.shopping-contact-intro .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .shopping-contact-intro .br {
    display: block;
  }
}

.shopping-contact-merchandise {
  margin-top: 3.5em;
}

.shopping-contact-merchandise-heading {
  display: block;
  background-color: #000;
  margin-bottom: 1em;
}

.shopping-contact-merchandise-heading span {
  display: inline-block;
  color: #fff;
  background-color: #700000;
  padding: .8em .6em .7em .6em;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: .053em;
  font-weight: 600;
}

@media screen and (max-width: 639.98px) {
  .shopping-contact-merchandise-heading span {
    font-size: 1.7rem;
    letter-spacing: inherit;
  }
}

.shopping-contact-merchandise-category {
  padding: 0 1.3em;
}

@media screen and (max-width: 1279.98px) {
  .shopping-contact-merchandise-category {
    padding: 0;
  }
}

.shopping-contact-merchandise-category:not(:last-child) {
  margin-bottom: 4em;
}

.shopping-contact-merchandise-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -2em -1em 0;
}

@media screen and (max-width: 1279.98px) {
  .shopping-contact-merchandise-wrap {
    margin: 0 -1em -1em 0;
  }
}

@media screen and (max-width: 1199.98px) {
  .shopping-contact-merchandise-wrap {
    margin: 0 0 -1em 0;
  }
}

@media screen and (max-width: 639.98px) {
  .shopping-contact-merchandise-wrap {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: -1em;
  }
}

.shopping-contact-merchandise-item {
  width: calc(50% - 32px);
  margin: 0 2em 1em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1279.98px) {
  .shopping-contact-merchandise-item {
    margin: 0 1em 1em 0;
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 1199.98px) {
  .shopping-contact-merchandise-item {
    margin: 0 0 1em 0;
    width: 95%;
    margin: 0 auto 1em auto;
  }
}

@media screen and (max-width: 639.98px) {
  .shopping-contact-merchandise-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.shopping-contact-merchandise-main {
  border: 1px solid #D6D6D6;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

@media screen and (max-width: 1199.98px) {
  .shopping-contact-merchandise-main {
    position: relative;
  }
}

.shopping-contact-merchandise-side img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

@media screen and (max-width: 639.98px) {
  .shopping-contact-merchandise-side img {
    height: auto;
  }
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-side img {
    width: 100%;
    height: auto;
  }
}

.shopping-contact-merchandise-title {
  display: block;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: .05em;
  color: #700000;
  padding: .95em 1em .85em 1em;
  font-weight: 700;
  background-color: rgba(112, 0, 0, 0.08);
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-title {
    font-size: 1.6rem;
    padding: .85em 1em .75em 1em;
  }
}

.shopping-contact-merchandise-body {
  padding: .9em 1em .5em 1em;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-body {
    padding: .7em .9em .5em .9em;
  }
}

.shopping-contact-merchandise-text {
  font-size: 1.5rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  line-height: 1.2;
  letter-spacing: .05em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (min-width: 1200px), print {
  .shopping-contact-merchandise-text {
    max-height: 110px;
    overflow: hidden;
  }
}

.shopping-contact-merchandise-text p {
  font-weight: 500;
}

.shopping-contact-merchandise-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: .8em;
  margin-top: .9em;
  border-top: 1px dotted #cdcdcd;
}

@media screen and (max-width: 1199.98px) {
  .shopping-contact-merchandise-foot {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    width: 96%;
    margin-top: .6em;
    padding: .8em .5em .5em .5em;
  }
}

@media screen and (max-width: 639.98px) {
  .shopping-contact-merchandise-foot {
    position: static;
    left: auto;
    bottom: auto;
    -webkit-transform: inherit;
            transform: inherit;
    padding: .8em 0 0 0;
    width: auto;
    margin-top: .9em;
  }
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-foot {
    margin-top: .7em;
  }
}

.shopping-contact-merchandise-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-num {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.shopping-contact-merchandise-fee {
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: .05em;
  color: #700000;
  margin-right: 1em;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-fee {
    font-size: 2.2rem;
  }
}

.shopping-contact-merchandise-fee span {
  position: relative;
  font-weight: 600;
  display: inline-block;
  padding-left: 1.5em;
}

.shopping-contact-merchandise-fee span::before {
  content: attr(data-feettl);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-fee span::before {
    font-size: 1.4rem;
  }
}

.shopping-contact-merchandise-select {
  position: relative;
  width: 61px;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-select {
    width: 55px;
  }
}

.shopping-contact-merchandise-select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #333333;
  z-index: 0;
}

.shopping-contact-merchandise-select select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  border: 1px solid #D6D6D6;
  width: 61px;
  font-size: 2.1rem;
  font-family: "游明朝", "YuMincho", "Yu Mincho", "Noto Serif JP", serif;
  padding: .12em .5em .08em .6em;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-merchandise-select select {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise-select select {
    width: 55px;
  }
}

.shopping-contact-merchandise-select select::-ms-expand {
  display: none;
}

.shopping-contact-merchandise-select select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #700000;
}

.shopping-contact-merchandise .select-text {
  font-size: 2rem;
  font-weight: 500;
  display: inline-block;
  margin-left: .5em;
}

@media screen and (max-width: 479.98px) {
  .shopping-contact-merchandise .select-text {
    font-size: 1.8rem;
  }
}

.shopping-contact-table-mes {
  margin-top: 1.3em;
  padding: 0 1.3em;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-table-mes {
    padding: 0;
  }
}

.shopping-contact-table-postage {
  padding: 0 1.3em;
  font-size: 1.5rem;
  line-height: 2;
}

@media screen and (max-width: 1099.98px) {
  .shopping-contact-table-postage {
    padding: 0;
  }
}

.shopping-contact-table-postage p {
  font-weight: 500;
}

.shopping-contact-table-area {
  margin-top: 5em;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-table-area {
    margin-top: 3em;
  }
}

.shopping-contact-table-block:not(:last-child) {
  margin-bottom: 4em;
}

.shopping-contact-table-block .main-subheading {
  margin-bottom: .5em;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-table-block .main-subheading {
    margin-bottom: 1em;
  }
}

.shopping-contact-table-intro {
  margin-bottom: 2.5em;
  font-size: 1.7rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  line-height: 2;
}

@media screen and (max-width: 767.98px) {
  .shopping-contact-table-intro {
    font-size: 1.5rem;
  }
}

.shopping-contact-table-intro .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .shopping-contact-table-intro .br {
    display: block;
  }
}

.shopping-contact-table-intro .accent {
  font-weight: 500;
  color: #6AB291;
}

.shopping-contact-table-intro p {
  font-weight: 500;
}

.shopping-privacy-section .inner {
  padding: 0;
  max-width: 1200px;
}

.shopping-privacy-section .main-subheading {
  margin-bottom: 1.2em;
}

.shopping-privacy-intro {
  line-height: 1.7;
  margin-bottom: 2em;
}

@media screen and (min-width: 1100px), print {
  .shopping-privacy-intro {
    font-size: 1.7rem;
    letter-spacing: .05em;
    margin-bottom: 2em;
    line-height: 2;
  }
}

.shopping-privacy-intro p {
  font-weight: 500;
}

.shopping-privacy-intro .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .shopping-privacy-intro .br {
    display: block;
  }
}

.shopping-privacy-block:not(:last-child) {
  margin-bottom: 2.5em;
}

@media screen and (min-width: 640px), print {
  .shopping-privacy-block:not(:last-child) {
    margin-bottom: 4em;
  }
}

@media screen and (min-width: 1100px), print {
  .shopping-privacy-body {
    padding: 0 1.3em;
  }
}

.shopping-privacy-text {
  line-height: 1.58;
}

@media screen and (min-width: 1100px), print {
  .shopping-privacy-text {
    font-size: 1.7rem;
    letter-spacing: .05em;
  }
}

.shopping-privacy-text p {
  font-weight: 500;
}

.shopping-privacy-text .br {
  display: none;
}

@media screen and (min-width: 640px), print {
  .shopping-privacy-text .br {
    display: block;
  }
}

.shopping-privacy-list {
  display: block;
  padding: 1.1em 1em 1em 1em;
  margin-top: 1.2em;
  background-color: rgba(51, 51, 51, 0.15);
}

@media screen and (min-width: 640px), print {
  .shopping-privacy-list {
    padding: 1.3em 1em 1.2em 1.2em;
  }
}

.shopping-privacy-list li {
  font-size: 1.5rem;
  color: #333333;
  letter-spacing: .05em;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 479.98px) {
  .shopping-privacy-list li {
    font-size: 1.4rem;
  }
}

.shopping-privacy-table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

@media screen and (max-width: 639.98px) {
  .shopping-privacy-table._accent th, .shopping-privacy-table._accent td {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 639.98px) {
  .shopping-privacy-table._accent th {
    padding: .2em .2em .3em .2em;
  }
}

@media screen and (max-width: 639.98px) {
  .shopping-privacy-table._accent td {
    border-bottom: none;
    padding: .5em .2em 1em .8em;
  }
}

.shopping-privacy-table th, .shopping-privacy-table td {
  vertical-align: top;
  font-size: 1.6rem;
  font-weight: 500;
}

.shopping-privacy-table th {
  width: 11em;
  padding: .6em .5em .6em .2em;
  border-bottom: 1px dotted rgba(112, 0, 0, 0.3);
}

.shopping-privacy-table td {
  padding: .6em .2em .6em 0;
  border-bottom: 1px dotted rgba(112, 0, 0, 0.3);
}

.shopping-fax-modal {
  display: none;
  position: fixed;
  z-index: 2999;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.shopping-fax-modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #70050B;
  color: #fff;
  max-width: 1000px;
  width: 100%;
}

@media screen and (max-width: 1099.98px) {
  .shopping-fax-modal-inner {
    width: 97%;
  }
}

.shopping-fax-modal-content {
  position: relative;
  display: block;
  padding: 5em 1em;
  text-align: center;
}

@media screen and (max-width: 991.98px) {
  .shopping-fax-modal-content {
    padding: 3em 1em;
  }
}

.shopping-fax-modal-text {
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  .shopping-fax-modal-text {
    font-size: 1.5rem;
  }
}

.shopping-fax-modal-more {
  margin: 1.5em 0;
}

.shopping-fax-modal-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  margin-top: 1em;
}

.shopping-fax-modal-tel dt {
  font-size: 2rem;
  font-weight: 500;
  margin-right: .3em;
  margin-top: 3px;
}

@media screen and (max-width: 479.98px) {
  .shopping-fax-modal-tel dt {
    font-size: 1.8rem;
  }
}

.shopping-fax-modal-tel dd {
  font-size: 3.2rem;
  font-weight: 500;
}

@media screen and (max-width: 479.98px) {
  .shopping-fax-modal-tel dd {
    font-size: 2.6rem;
  }
}

.shopping-fax-modal-link {
  display: inline-block;
  background-color: #fff;
  color: #70050B;
  padding: 1em 1.5em 1em 1.5em;
  font-size: 2.4rem;
  border: 2px solid #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 639.98px) {
  .shopping-fax-modal-link {
    font-size: 1.8rem;
    padding: 1em 1em 1em 1em;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
  }
}

@media screen and (max-width: 359.98px) {
  .shopping-fax-modal-link {
    font-size: 1.6rem;
  }
}

.shopping-fax-modal-link span {
  position: relative;
  padding-left: 3em;
  font-weight: 700;
}

.shopping-fax-modal-link span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 50px;
  height: 55px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  background: url("../img/base/pdf-icon.svg") no-repeat center/cover;
}

@media screen and (max-width: 639.98px) {
  .shopping-fax-modal-link span::before {
    width: 41px;
    height: 45px;
  }
}

.shopping-fax-modal-link:hover {
  text-decoration: none;
  background-color: #70050B;
  color: #fff;
}

.shopping-fax-modal-link:hover span::before {
  background: url("../img/base/pdf-icon_wht.svg") no-repeat center/cover;
}

.shopping-fax-modal-attention {
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  font-weight: 500;
  font-size: 1.5rem;
}

.shopping-fax-modal .faxclosebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  font-weight: 700;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  cursor: pointer;
}

.shopping-fax-modal .faxclosebtn:hover {
  opacity: .7;
}

/* --------------------------------

  idxx　お知らせ

-------------------------------- */
.news {
  padding: 0 2em;
}

@media screen and (max-width: 1099.98px) {
  .news {
    padding: 0;
  }
}

.news-section {
  padding: 1em 1em 3em 1em;
}

@media screen and (max-width: 1099.98px) {
  .news-section {
    padding: 0 1em 1em 1em;
  }
}

.news-section .inner {
  padding: 0;
}

.news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #444444;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 575.98px) {
  .news-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.news-link:hover {
  color: #70050B;
  text-decoration: none;
}

.news-link:hover .news-date {
  background-color: #70050B;
  color: #fff;
}

.news-topics {
  padding: .5em 0;
}

.news-date {
  display: inline-block;
  max-width: 142px;
  width: 100%;
  border-radius: 10em;
  background-color: #96C9B1;
  line-height: 1.2;
  text-align: center;
  padding: .55em .5em .45em .5em;
  font-size: 1.7rem;
  color: #000;
  margin-right: 1.3em;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

@media screen and (max-width: 767.98px) {
  .news-date {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 575.98px) {
  .news-date {
    margin-right: 0;
    padding: .5em .5em .4em .5em;
    max-width: 122px;
    margin-bottom: .5em;
  }
}

.news-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-break: break-all;
  word-wrap: break-word;
  font-size: 1.7rem;
}

@media screen and (max-width: 767.98px) {
  .news-title {
    font-size: 1.6rem;
  }
}

.news-back {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  margin-top: 5em;
  padding-top: 2em;
  border-top: 2px solid #eee;
}

@media screen and (max-width: 639.98px) {
  .news-back {
    margin-top: 2em;
  }
}

.news-detail-section {
  padding: 1em 1em 3em 1em;
  color: #422D1E;
}

@media screen and (max-width: 1099.98px) {
  .news-detail-section {
    padding: 1em 1em 2em 1em;
  }
}

.news-detail-date {
  text-align: right;
  padding-right: 2em;
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 2em;
}

@media screen and (max-width: 639.98px) {
  .news-detail-date {
    font-size: 1.6rem;
    margin-bottom: 1em;
    padding-right: 1em;
  }
}

.news-detail-text {
  font-size: 1.7rem;
  -webkit-font-feature-settings: 'palt';
          font-feature-settings: 'palt';
  line-height: 2;
}

@media screen and (max-width: 639.98px) {
  .news-detail-text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.news-detail-text p {
  font-weight: 500;
}

/*210919 追加修正*/
#must-table {
  display: table;
}

#must-table tr {
  display: table-row;
  margin: 0;
  padding: 0;
}

#must-table th,
#must-table td {
  display: table-cell;
  margin: 0;
}

/* concept */
.conceptBox {
  padding: 50px 0;
  line-height: 2;
  background: #412C1E;
  color: #fff;
}

.conceptBox h2 {
  margin-bottom: 1em;
  font-size: 2em;
}

/* company */
.common-h2 {
  border-left: 10px solid #96C9B1;
  border-bottom: 1px dotted #ccc;
  padding: 13px;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.common-table {
  width: 100%;
}

.common-table th,
.common-table td {
  border-bottom: 1px dotted #ccc;
  padding: 1em;
}

.lh-2 {
  line-height: 2em;
}

.gallery img {
  width: 100%;
  margin-bottom: 10px;
}

.accent {
  color: #422D1E;
  font-weight: bold;
}
