@charset "UTF-8";
/* ==========================================
Root
========================================== */
:root {
  --color_base: #323232;
  --color_accent: #850d63;
  --font_base: "GenJyuuGothicLMonospace", serif;
  --font_accent: "EB Garamond", serif;
  --letter_spacing: 0.05em;
  --font_weight_base: 500;
  --input_bg: #fff;
  --input_border_color: #fff;
  --input_autofill: #fff;
  --placeholder_color: #cacaca;
  --focus_border: #ffc200;
}

/* ==========================================
Additional Reset
========================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
summary:focus {
  outline: 2px solid var(--focus_border);
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

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

ul, ol {
  list-style: none;
}

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

address {
  font-style: normal;
}

iframe {
  border-width: 0;
}

th {
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

fieldset {
  border: none;
}

select {
  color: var(--color_base);
  border-radius: 0;
}

/* =========================================
focus-visibleのIE、Safari対応
========================================= */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* ==========================================
Font Settings
========================================== */
/* Noto Serif JP 300/500 ------------ */
.genjyuu {
  font-family: "GenJyuuGothicLMonospace", sans-serif;
}

/* EB Garamond 500 ------------ */
.eb_garamond {
  font-family: "EB Garamond", serif;
}

/* ==========================================
bese
========================================== */
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-family: var(--font_base);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color_base);
  background-color: #fff;
  letter-spacing: var(--letter_spacing);
}

img {
  display: block;
  vertical-align: bottom;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
}
/* ==========================================
mousedeive / touchdevice
========================================== */
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.6;
  }
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* TouchDevice設定 ------------------ */
@media (pointer: none) {
  a:active {
    opacity: 0.6;
  }
}
/* ==========================================
layout
========================================== */
.ly_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 1200px;
  min-height: 100%;
  overflow: hidden;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .ly_wrapper {
    min-width: 320px;
  }
}
/* ==========================================
header
========================================== */
.ly_header {
  position: relative;
  width: 100%;
  height: 90px;
  z-index: 110;
}
.ly_header.__absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  padding-top: 19px;
}

.header_logo {
  margin: 1px 0 0 51px;
}
.header_logo a {
  display: block;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .ly_header {
    height: 42px;
  }
  .header_inner {
    position: fixed;
    padding: 0;
    min-width: initial;
    z-index: 100;
  }
  .header_logo {
    width: 130px;
    margin: 8px 0 0 15px;
  }
}
/* ==========================================
humberger
========================================== */
.humberger_open body {
  padding-right: var(--scrollbarWidth);
}

/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .humberger {
    display: none;
  }
  .humberger_open body {
    position: static !important;
    width: 100% !important;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .humberger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    border: none;
    z-index: 110;
  }
  .humberger.is_active {
    right: var(--scrollbarWidth);
  }
  .humberger_inner {
    display: block;
    position: relative;
    width: 76px;
    height: 44px;
  }
  .humberger_line:before,
  .humberger_line:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 2px;
    margin: 0 auto;
    background-color: var(--color_accent);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .humberger_line:before {
    top: 16px;
  }
  .humberger_line:after {
    top: 27px;
  }
  /* is_active */
  .humberger.is_active .humberger_line::before {
    top: calc(50% - 1px);
    width: 44px;
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
  .humberger.is_active .humberger_line::after {
    top: calc(50% - 1px);
    width: 44px;
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
}
/* ==========================================
header_nav_area
========================================== */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .header_nav_area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .glNav {
    height: 100%;
  }
  .glNav_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
  }
  .glNav_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: 20px;
  }
  .glNav_link {
    display: block;
    position: relative;
    height: 60px;
    padding: 9px 29px 0;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
    white-space: nowrap;
  }
  .glNav_link .ja {
    display: block;
    font-size: 1.4rem;
  }
  .glNav_link .en {
    display: block;
    color: var(--color_accent);
    font-size: 1.2rem;
    font-family: var(--font_accent);
  }
  .glNav_accordionBtn {
    padding-block: 0;
  }
  .glNav_link.is_current {
    opacity: 1;
    outline: none !important;
  }
  .glNav_accordion {
    position: absolute;
    top: calc(100% - 10px);
    margin-top: -6px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 0.3s, top 0.3s;
    transition: opacity 0.3s, top 0.3s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    overflow: hidden;
  }
  .glNav_accordion::before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 19px;
    height: 11px;
    background: url(../../img/common/nav_nest_bg.svg) no-repeat 0 0/contain;
    opacity: 0.6;
  }
  .glNav_links_nest {
    position: relative;
    min-width: 120px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
  }
  .glNav_links_nest li + li {
    position: relative;
  }
  .glNav_links_nest li + li::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 20px);
    margin: 0 auto;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(25%, #fff), color-stop(25%, transparent), to(transparent));
    background-image: linear-gradient(to right, #fff 0%, #fff 25%, transparent 25%, transparent 100%);
    background-size: 4px 1px;
    background-repeat: repeat-x;
    opacity: 0.7;
  }
  .glNav_link_nest {
    display: block;
    width: 100%;
    padding: 6px 9px 5px;
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    -webkit-transition: background-color 0.1s;
    transition: background-color 0.1s;
  }
  .glNav_list .is_nav_active .glNav_link {
    opacity: 0.7;
  }
  .glNav_list .is_nav_active .glNav_accordion {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
}
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .glNav_link_nest:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .header_nav_area {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    max-height: 100%;
    visibility: hidden;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    opacity: 0;
  }
  .header_nav_area.is_active {
    visibility: visible;
    opacity: 1;
  }
  .glNav_inner {
    padding-top: 62px;
  }
  .glNav_inner li {
    position: relative;
  }
  .glNav_inner li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: calc(100% - 80px);
    height: 1px;
    margin: 0 auto;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color_accent)), color-stop(25%, var(--color_accent)), color-stop(25%, transparent), to(transparent));
    background-image: linear-gradient(to right, var(--color_accent) 0%, var(--color_accent) 25%, transparent 25%, transparent 100%);
    background-size: 4px 1px;
    background-repeat: repeat-x;
  }
  .glNav_link {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 25px;
    line-height: 1.6;
    font-size: 1.5rem;
    text-align: center;
  }
  .glNav_link .en {
    display: none;
  }
  .glNav_accordionBtn {
    position: relative;
  }
  .glNav_accordionBtn::before, .glNav_accordionBtn::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% + 84px);
    width: 15px;
    height: 2px;
    border-radius: 100vh;
    background-color: #464646;
  }
  .glNav_accordionBtn::after {
    top: calc(50% - 1px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .glNav_accordion {
    display: none;
    position: relative;
  }
  .glNav_accordion::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 80px);
    height: 1px;
    margin: 0 auto;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color_accent)), color-stop(25%, var(--color_accent)), color-stop(25%, transparent), to(transparent));
    background-image: linear-gradient(to right, var(--color_accent) 0%, var(--color_accent) 25%, transparent 25%, transparent 100%);
    background-size: 4px 1px;
    background-repeat: repeat-x;
  }
  .glNav_accordion.is_active {
    display: block;
  }
  .glNav_link_nest {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 25px;
    line-height: 1.6;
    font-size: 1.5rem;
    text-align: center;
  }
  .glNav_link_nest span {
    display: block;
  }
  .glNav_link_nest span::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-color: var(--color_accent);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .glNav_link_nest span.icon_none::before {
    display: none;
  }
  .glNav_accordionBtn[aria-expanded=true] {
    background-color: rgba(133, 13, 99, 0.1);
  }
  .glNav_accordionBtn[aria-expanded=true]::after {
    display: none;
  }
}
/* =========================================
glNav_list_sns
========================================= */
.glNav_list_sns {
  display: none;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .glNav_list_sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 29px;
    padding-bottom: 30px;
  }
  .glNav_list_sns li {
    width: 45px;
  }
  .glNav_list_sns li + li {
    margin-left: 34px;
  }
  .glNav_list_sns .sns_icon {
    display: block;
    border-radius: 100vh;
  }
}
/* =========================================
header .is_hide .is_show_standby .is_show
========================================= */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .is_hide.header_inner {
    -webkit-transform: translateY(calc(-100% - 10px));
            transform: translateY(calc(-100% - 10px));
  }
  .is_show_standby.header_inner {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    height: 70px;
    pointer-events: none;
  }
  .is_show_standby.header_inner .glNav_accordion {
    max-height: 0;
  }
  .is_show.header_inner {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding-top: 9px;
    pointer-events: auto;
  }
  .is_show.header_inner .glNav_accordion {
    max-height: 300px;
  }
}
/* =========================================
main
========================================= */
.ly_main {
  position: relative;
}

/* =========================================
footer
========================================= */
.ly_footer {
  position: relative;
}

.footer_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto 41px;
}

.footer_add {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 53px 0 0 144px;
}

.footer_logo {
  margin-bottom: 32px;
}

.footer_logo img {
  display: block;
}

.footer_add_lists {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.footer_add_lists_shelf {
  position: relative;
}
.footer_add_lists_shelf + .footer_add_lists_shelf {
  margin-top: 1.4em;
}
.footer_add_lists_shelf dt {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.footer_add_lists_shelf dd {
  padding-left: 8em;
}

.footer_img {
  padding: 26px 78px 0 0;
}
.footer_img img {
  display: block;
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_nav li {
  margin: 0 24px;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
}
.footer_nav a {
  display: block;
  white-space: nowrap;
}

.footer_copyright {
  margin-top: 27px;
  padding: 18px 10px;
  text-align: center;
  line-height: 1;
  background-color: #5a0028;
  color: #fff;
}
.footer_copyright small {
  font-size: 1.3rem;
  letter-spacing: 0.025em;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .footer_column {
    display: block;
    margin: 0;
    padding-top: 27px;
    text-align: center;
  }
  .footer_add {
    padding: 0;
  }
  .footer_logo {
    margin-bottom: 37px;
  }
  .footer_logo img {
    width: 174px;
    margin: 0 auto;
  }
  .footer_add_lists {
    width: auto;
    margin-bottom: 16px;
    font-size: 1.3rem;
  }
  .footer_add_lists_shelf {
    position: relative;
    text-align: center;
  }
  .footer_add_lists_shelf + .footer_add_lists_shelf {
    margin-top: 1.4em;
  }
  .footer_add_lists_shelf.__sp_line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_add_lists_shelf dt {
    position: static;
  }
  .footer_add_lists_shelf dd {
    padding-left: 0;
  }
  .footer_img {
    padding: 0;
  }
  .footer_img img {
    position: relative;
    left: -7px;
    width: 257px;
    margin: 0 auto;
  }
  .footer_nav {
    display: none;
  }
  .footer_copyright {
    margin-top: 10px;
    padding: 13px 10px;
  }
  .footer_copyright small {
    font-size: 1.1rem;
  }
}
/* ==========================================
Module / Block
========================================== */
/* ==========================================
md_breadclumbs
========================================== */
.md_breadclumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 11px 50px 0;
  color: #646464;
  font-size: 1.3rem;
  font-weight: 400;
}
.md_breadclumbs li + li::before {
  content: "＞";
  display: inline-block;
  margin: 0 0.4em;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_breadclumbs {
    display: none;
  }
}
/* =========================================
md_arrow
========================================= */
.md_arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
}

.md_arrow_text {
  margin-right: 36px;
  letter-spacing: 0.1em;
}

.md_arrow_img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 20px;
  height: 20px;
}
.md_arrow_img::before {
  content: "";
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: var(--color_accent);
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 1px solid var(--color_accent);
}

.md_arrow_img svg {
  position: relative;
  z-index: 2;
  fill: #fff;
  -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: auto;
}

.md_arrow.__yellow .md_arrow_img::before {
  background-color: #ffc200;
  border-color: #ffc200;
}
.md_arrow.__yellow svg {
  fill: var(--color_accent);
}

/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .md_arrow.__aspect .md_arrow {
    min-height: max(50px, 4.167vw);
  }
  .md_arrow.__aspect .md_arrow_text {
    margin-right: max(36px, 3vw);
    font-size: max(1.5rem, 1.25vw);
  }
  .md_arrow.__aspect .md_arrow_img {
    width: max(20px, 1.667vw);
    height: max(20px, 1.667vw);
  }
  .md_arrow.__aspect .md_arrow_img::before {
    width: max(35px, 2.917vw);
    height: max(35px, 2.917vw);
  }
}
/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .md_arrow:hover {
    opacity: 1;
  }
  .md_arrow:hover .md_arrow_img::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: transparent;
  }
  .md_arrow:hover .md_arrow_img svg {
    fill: var(--color_accent);
  }
  .md_arrow.__yellow:hover svg {
    fill: #ffc200;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_arrow_text {
    margin-right: 27px;
    font-size: 1.4rem;
  }
}
/* =========================================
md_onlineshop
========================================= */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .md_onlineshop {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
  }
  .md_onlineshop_mask {
    position: absolute;
    top: 0;
    left: calc(50% - 1095px);
    width: 2226px;
    height: 280px;
    background: url(../../img/common/onlineshop_mask_border.svg) 0 center/100% 100% no-repeat, url(../../img/common/bg_pattern_02.jpg) 0 center/auto repeat;
    -webkit-mask-image: url(../../img/common/onlineshop_mask.svg);
            mask-image: url(../../img/common/onlineshop_mask.svg);
  }
  .md_onlineshop_inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--color_accent);
  }
  .md_onlineshop_title {
    position: absolute;
    top: 94px;
    left: 494px;
    padding-left: 84px;
    font-family: var(--font_accent);
    font-size: 4rem;
    mix-blend-mode: multiply;
    opacity: 0.6;
    letter-spacing: 0.05em;
  }
  .md_onlineshop_title::before {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 65px;
    height: 65px;
    background: url(../../img/common/icon_cart.svg) no-repeat 0 0/contain;
  }
  .md_onlineshop_text {
    position: absolute;
    top: 72px;
    left: 580px;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .md_onlineshop_img {
    display: block;
    position: absolute;
    top: 20px;
    left: 153px;
  }
  .md_onlineshop_link {
    position: absolute;
    top: 153px;
    left: 650px;
  }
  .md_onlineshop_link .md_arrow_text {
    margin-right: 24px;
    font-size: 1.3rem;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_onlineshop_mask {
    padding: 16px 0 30px;
    background: url(../../img/common/onlineshop_mask_sp.svg) center bottom/768px 82px no-repeat, url(../../img/common/bg_pattern_02.jpg) 0 center/auto repeat;
  }
  .md_onlineshop_inner {
    display: -ms-grid;
    display: grid;
    grid-auto-rows: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
        grid-template-areas: "img" "text" "title" "link";
    max-width: 320px;
    margin: 0 auto;
    color: var(--color_accent);
  }
  .md_onlineshop_title {
    grid-area: title;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin: 0 15px;
    font-family: var(--font_accent);
    font-size: 2.9rem;
    mix-blend-mode: multiply;
    opacity: 0.6;
    letter-spacing: 0.05em;
  }
  .md_onlineshop_title::before {
    content: "";
    display: block;
    top: 1px;
    left: 0;
    width: 52px;
    height: 52px;
    margin-right: 15px;
    background: url(../../img/common/icon_cart.svg) no-repeat 0 0/contain;
  }
  .md_onlineshop_text {
    grid-area: text;
    margin-top: -2px;
    padding-left: 84px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .md_onlineshop_img {
    grid-area: img;
  }
  .md_onlineshop_img img {
    display: block;
    position: relative;
    left: 6px;
    width: 203px;
    margin: 0 auto 1px;
  }
  .md_onlineshop_link {
    grid-area: link;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: -10px;
    padding-right: 30px;
  }
  .md_onlineshop_link .md_arrow_text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px){
  .md_onlineshop_title {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .md_onlineshop_text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .md_onlineshop_img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .md_onlineshop_link {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
}
/* =========================================
md_sidebar
========================================= */
.md_sidebar {
  position: fixed;
  top: calc(50% - 100px);
  right: 0;
  z-index: 100;
  width: 117px;
}

.md_sidebar li + li {
  margin-top: 20px;
}

.md_sidebar_link {
  display: block;
  width: 25px;
  margin: 0 auto;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}
.md_sidebar_link.__googlemap, .md_sidebar_link.__instagram {
  opacity: 0.7;
}

.md_sidebar_link.__shop {
  width: 65px;
  height: 65px;
  padding-top: 7px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 100vh;
  color: var(--color_accent);
  font-family: var(--font_accent);
  text-align: center;
  font-size: 1.3rem;
  line-height: 1;
}
.md_sidebar_link.__shop img {
  display: block;
  margin: 0 auto 4px;
}

/* MouseDevice設定 ------------------ */
@media (hover: hover) and (pointer: fine) {
  .md_sidebar_link.__googlemap:hover,
  .md_sidebar_link.__instagram:hover {
    opacity: 0.3;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_sidebar {
    display: none;
  }
}
/* =========================================
md_pagetop
========================================= */
.md_pagetop {
  display: block;
  position: absolute;
  right: 50px;
  bottom: 17px;
  width: 70px;
  height: 70px;
  background: url(../../img/common/btn_pagetop.svg) no-repeat 0 0/contain;
}
.md_pagetop span {
  display: none;
}

/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .md_pagetop {
    display: block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    background-image: url(../../img/common/btn_pagetop_s.svg);
  }
}
/* ==========================================
helper - pc and sp setting
========================================== */
/* PC調整 ---------------------------- */
@media not screen and (max-width: 768px) {
  .sp_br,
  .sp_only {
    display: none !important;
  }
}
/* SP調整 ---------------------------- */
@media screen and (max-width: 768px) {
  .pc_br,
  .pc_only {
    display: none !important;
  }
  .sp_noSpace {
    display: none;
  }
  .sp_brNoSpace {
    display: block;
    text-indent: -1em;
  }
  .sp_nowrap {
    white-space: nowrap;
  }
}
/* ==========================================
print
========================================== */
@page {
  size: A4 portrait;
  margin: 10mm;
}
@media print {
  body {
    position: relative;
    width: 1200px !important;
    page-break-after: always;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    zoom: 0.8;
  }
}