@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : RSCSSベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 1039px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 1040px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 1039px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 1040px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 599px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 600px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  content: "";
  display: block;
  clear: both;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: 16px;
}

html {
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

body {
  font-family: "", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  min-width: 375px;
  padding: 0px;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "", "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

button,
input[type=button],
input[type=submit] {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

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

a {
  text-decoration: underline;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

body._ios a:hover {
  opacity: 1;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* structure 構造を定義 */
/**************************************************/
.l-page-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: url(../../images/bg-main02.png) repeat-y left top/100% auto, url(../../images/bg-main.png) repeat left top/auto;
}

.l-page-contents {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0 40px;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  .l-page-contents {
    padding: 0 20px;
  }
}

.l-header,
.l-footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 16px;
}
.l-header .logo,
.l-footer .logo {
  display: block;
  max-width: 100%;
  width: 149px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header .logo,
  .l-footer .logo {
    width: 100px;
  }
}

.c-menuBtn {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
}
.c-menuBtn > .bar {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -13px;
}
.c-menuBtn > .bar, .c-menuBtn > .bar::before, .c-menuBtn > .bar::after {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background: #281284;
  border-radius: 2px;
  content: "";
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.c-menuBtn > .bar::before {
  top: -8px;
}
.c-menuBtn > .bar::after {
  top: 8px;
}
.c-menuBtn.-open > .bar {
  background-color: transparent;
}
.c-menuBtn.-open > .bar::before {
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-menuBtn.-open > .bar::after {
  top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media (max-width: 1039px) {
  .c-menuBtn {
    display: block;
  }
}

.l-global-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  line-height: 1;
  height: 80px;
}
@media (max-width: 1039px) {
  .l-global-nav {
    display: none;
  }
}

.c-gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  padding: 15px 30px;
  gap: 40px;
}
.c-gnav-list > li {
  position: relative;
  min-width: 100px;
  line-height: 1;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.c-gnav-list > li > .btn {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 1em 0;
  color: #281284;
  text-decoration: none;
  font-weight: bold;
}
.c-gnav-list > li > .btn:hover, .c-gnav-list > li > .btn.-current {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, transparent), color-stop(20%, transparent), color-stop(20%, #FFFF01), color-stop(40%, #FFFF01), color-stop(40%, transparent), to(transparent));
  background: linear-gradient(0, transparent 0, transparent 20%, #FFFF01 20%, #FFFF01 40%, transparent 40%, transparent 100%);
  opacity: 1;
}

.l-sp-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  padding-top: 56px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
.l-sp-nav.-open {
  display: block;
}
.l-sp-nav > .container {
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.l-sp-nav > .container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1040px) {
  .l-sp-nav {
    display: none !important;
  }
}

.c-spnav-list {
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
}
.c-spnav-list > li a {
  display: block;
  padding: 20px 0;
  color: #281284;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.c-spnav-list > li a.-current, .c-spnav-list > li a:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, transparent), color-stop(35%, transparent), color-stop(35%, #FFFF01), color-stop(45%, #FFFF01), color-stop(45%, transparent), to(transparent));
  background: linear-gradient(0, transparent 0, transparent 35%, #FFFF01 35%, #FFFF01 45%, transparent 45%, transparent 100%);
  opacity: 1;
}

.l-main-visual {
  position: relative;
}
.l-main-visual > .image > img {
  width: 100%;
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-text-a {
  font-size: 1rem;
  margin: 0;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-text-a {
    font-size: 0.875rem;
  }
}

.c-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(70%, transparent), color-stop(60%, #FEE05D), to(#FEE05D));
  background: linear-gradient(transparent 0, transparent 70%, #FEE05D 60%, #FEE05D 100%);
  font-weight: 700;
}

.c-heading-a {
  margin: 30px 0 0 0;
  padding-bottom: 12px;
  padding-left: 1.4em;
  font-size: 1.1875rem;
  color: #E8380D;
  position: relative;
  border-bottom: solid 2px #E8380D;
  line-height: 1.5;
}
.c-heading-a::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1em;
  height: 1.1em;
  margin: auto;
  background: url(../img/icon-heading-a.png) no-repeat center/contain;
}
.c-heading-a:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-heading-a {
    font-size: 1rem;
  }
}

.c-heading-b {
  position: relative;
  font-size: 1.1875rem;
  color: #13AE67;
  margin: 0;
  padding-left: 31px;
  padding-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .c-heading-b {
    font-size: 1rem;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
.c-heading-b::before {
  position: absolute;
  content: "";
  background: #13AE67;
  -webkit-mask-image: url(../img/icon-expmark.svg);
          mask-image: url(../img/icon-expmark.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 22px;
  height: 22px;
  top: calc(50% - 5px);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-heading-b::before {
    width: 16px;
    height: 16px;
    background-size: contain;
  }
}
.c-heading-b::after {
  position: absolute;
  content: "";
  background: #13AE67;
  -webkit-mask-image: url(../img/decoration-pinkcircle.svg);
          mask-image: url(../img/decoration-pinkcircle.svg);
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
}

.c-heading-c {
  font-size: 1.125rem;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .c-heading-c {
    font-size: 1rem;
  }
}

.c-heading-d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.625rem;
  text-align: center;
  padding: 15px 45px 8px;
  box-sizing: border-box;
  color: white;
  background-image: repeating-linear-gradient(120deg, transparent, transparent 24px, rgba(255, 255, 255, 0.1) 24px, rgba(255, 255, 255, 0.1) 48px);
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 18px) 50%, 100% 100%, 0% 100%, 18px 50%);
}
.c-heading-d::before, .c-heading-d::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 4px;
  border-top: 1.5px solid white;
  border-bottom: 2.5px dotted white;
}
.c-heading-d > .txt {
  position: relative;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px;
  -webkit-transform: translateY(-0.15em);
          transform: translateY(-0.15em);
}
.c-heading-d > .txt::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 28px;
  margin-right: 10px;
  background: url(../img/icon-attention.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  .c-heading-d {
    font-size: 1.125rem;
  }
  .c-heading-d > .txt {
    padding: 0 10px;
  }
  .c-heading-d > .txt::before {
    width: 21px;
    margin-right: 6px;
  }
}
@media (max-width: 599px) {
  .c-heading-d {
    padding: 12px 14px 8px;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 10px) 50%, 100% 100%, 0% 100%, 10px 50%);
  }
  .c-heading-d::before, .c-heading-d::after {
    content: none;
  }
  .c-heading-d > .txt {
    padding: 0;
  }
}

.c-heading-e {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-heading-e > .txt {
  font-size: 1.125rem;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEA00));
  background: linear-gradient(transparent 60%, #FFEA00 60%);
  font-weight: 600;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .c-heading-e > .txt {
    font-size: 1rem;
  }
}

[data-trigger].-invisible {
  opacity: 0;
}
[data-trigger].-visible {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
}

[data-trigger=fadeIn].-invisible {
  opacity: 0;
}
[data-trigger=fadeIn].-invisible :where(.c-heading-d, .c-heading-e) > .txt {
  background-size: 0 30%;
}
[data-trigger=fadeIn].-visible {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-in;
  transition: opacity 0.8s ease-in;
}

[data-trigger=fadeInUp].-invisible {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
[data-trigger=fadeInUp].-visible {
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-trigger=fadeInLeft].-invisible {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
[data-trigger=fadeInLeft].-visible {
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.box[data-trigger=custom].-invisible {
  opacity: 1;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.box[data-trigger=custom].-visible {
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* comingsoon */
/**************************************************/
.comingsoon {
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../../images/comingsoon.png) center/cover;
}

.l-campaign {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .l-campaign {
    padding: 60px 0 0;
  }
}

.detail-block .detailbox {
  position: relative;
  border-radius: 4px;
  background: #fff;
  border: 2px solid #13AE67;
  padding: 48px 38px 32px;
}
@media screen and (max-width: 767px) {
  .detail-block .detailbox {
    padding: 30px 20px 20px;
  }
}
.detail-block .detailbox:not(:first-of-type) {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .detail-block .detailbox:not(:first-of-type) {
    margin-top: 50px;
  }
}
.detail-block .detailbox > *:not(.title) {
  border-radius: var(--nested-radius);
}
.detail-block .detailbox > .text {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .detail-block .detailbox > .text {
    font-size: 1rem;
  }
}
.detail-block .detailbox > .title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: -27px;
  left: 18px;
  margin: 0;
}
.detail-block .detailbox > .title img {
  height: 50px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .detail-block .detailbox > .title {
    top: -22px;
    left: 8px;
  }
  .detail-block .detailbox > .title img {
    height: 38px;
  }
}

.detail-table {
  width: 100%;
  border-spacing: 0;
}
.detail-table tr {
  position: relative;
}
.detail-table tr .title, .detail-table tr .detail {
  padding: 22px 0;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .detail-table tr .title, .detail-table tr .detail {
    display: block;
    padding: 16px 0;
  }
}
.detail-table tr .title {
  width: 24%;
}
@media (max-width: 767px) {
  .detail-table tr .title {
    width: 100%;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .detail-table tr .detail {
    padding-top: 10px;
  }
}
.detail-table tr:last-child .title, .detail-table tr:last-child .detail {
  padding-bottom: 0;
}
.detail-table tr:not(:last-of-type) .title, .detail-table tr:not(:last-of-type) .detail {
  border-bottom: 2px dotted #B7B7B7;
}
@media screen and (max-width: 767px) {
  .detail-table tr:not(:last-of-type) .title {
    border-bottom: none;
  }
}
.detail-table .detail .text {
  margin: 0;
  line-height: 1.8;
}
.detail-table .detail .text > .line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(70%, transparent), color-stop(70%, #FEE05D), to(#FEE05D));
  background: linear-gradient(transparent 0, transparent 70%, #FEE05D 70%, #FEE05D 100%);
  font-weight: 600;
}
.detail-table .detail .text .red {
  color: #DE0010;
}
.detail-table .detail .text > .note {
  display: inline-block;
  font-size: 0.875rem;
  margin-left: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
}
.detail-table .detail .text > .note.-m0 {
  margin: 0;
}
@media (max-width: 767px) {
  .detail-table .detail .text > .note {
    font-size: 0.75rem;
  }
}
.detail-table .detail .text > .note::before {
  content: "※";
  color: #DE0010;
}
.detail-table .detail .star {
  display: inline-block;
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
  color: #13AE67;
  font-weight: bold;
}
.detail-table .detail .star::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-right: 0.2em;
  -webkit-mask-image: url(../img/Icon-star.svg);
          mask-image: url(../img/Icon-star.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #13AE67;
}
.detail-table .title {
  width: 31.4410480349%;
}
@media screen and (max-width: 767px) {
  .detail-table .title {
    font-size: 0.875rem;
    width: 100%;
  }
}
.detail-table .detail {
  width: 68.5589519651%;
}
@media screen and (max-width: 767px) {
  .detail-table .detail {
    font-size: 0.875rem;
    width: 100%;
  }
}
.detail-table .detail .aupay, .detail-table .detail .dbarai, .detail-table .detail .paypay, .detail-table .detail .rakutenpay, .detail-table .detail .rakutenedy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5em;
  margin-top: 14px;
}
.detail-table .detail .aupay .label, .detail-table .detail .dbarai .label, .detail-table .detail .paypay .label, .detail-table .detail .rakutenpay .label, .detail-table .detail .rakutenedy .label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-weight: 600;
  width: 80px;
  text-align: center;
  border-radius: 4px;
  margin: 0;
  padding: 1px 0 2px;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .detail-table .detail .aupay .label, .detail-table .detail .dbarai .label, .detail-table .detail .paypay .label, .detail-table .detail .rakutenpay .label, .detail-table .detail .rakutenedy .label {
    width: 64px;
  }
}
.detail-table .detail .aupay .txt, .detail-table .detail .dbarai .txt, .detail-table .detail .paypay .txt, .detail-table .detail .rakutenpay .txt, .detail-table .detail .rakutenedy .txt {
  width: 100%;
  margin: 0;
  letter-spacing: 0;
}
.detail-table .detail .aupay .txt > .note, .detail-table .detail .dbarai .txt > .note, .detail-table .detail .paypay .txt > .note, .detail-table .detail .rakutenpay .txt > .note, .detail-table .detail .rakutenedy .txt > .note {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.8em;
}
.detail-table .detail .aupay .txt > .note.-m0, .detail-table .detail .dbarai .txt > .note.-m0, .detail-table .detail .paypay .txt > .note.-m0, .detail-table .detail .rakutenpay .txt > .note.-m0, .detail-table .detail .rakutenedy .txt > .note.-m0 {
  margin: 0;
}
.detail-table .detail .aupay .txt > .note::before, .detail-table .detail .dbarai .txt > .note::before, .detail-table .detail .paypay .txt > .note::before, .detail-table .detail .rakutenpay .txt > .note::before, .detail-table .detail .rakutenedy .txt > .note::before {
  content: "※";
  color: #DE0010;
}
.detail-table .detail .aupay .label {
  background-color: #FF701A;
}
.detail-table .detail .dbarai .label {
  background-color: #333;
}
.detail-table .detail .paypay .label {
  background-color: #EF002F;
}
.detail-table .detail .rakutenpay .label {
  background-color: #D60000;
}
.detail-table .detail .rakutenedy .label {
  background-color: #0E0046;
}
.detail-table .notes {
  margin: 8px 0 0 0;
}
.detail-table .notes:last-child {
  margin-bottom: 0;
}
.detail-table .notes .note {
  position: relative;
  margin: 0;
  color: #E71F10;
  padding-left: 1.1em;
  font-size: 0.9375rem;
}
.detail-table .notes .note:not(:first-of-type) {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .detail-table .notes .note {
    font-size: 0.8125rem;
  }
}
.detail-table .notes .note::before {
  position: absolute;
  left: 0;
  content: "※";
}

.campaign-notesBox {
  position: relative;
  background: white;
  border-radius: 8px;
  margin-top: 60px;
  padding: 40px;
  -webkit-box-shadow: 0 0 32px 0 rgba(192, 240, 194, 0.64);
          box-shadow: 0 0 32px 0 rgba(192, 240, 194, 0.64);
}
@media screen and (max-width: 767px) {
  .campaign-notesBox {
    margin-top: 40px;
    padding: 20px;
  }
}
.campaign-notesBox .list {
  margin: 1em 0 0;
  padding-left: 1.2em;
  line-height: 2;
}
.campaign-notesBox .list > .item {
  padding-left: 0.2em;
}
.campaign-notesBox .list > .item + .item {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .campaign-notesBox .list {
    font-size: 0.875rem;
    margin-top: 1em;
  }
}

.grant-text {
  margin-top: 70px;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}
.grant-text > img {
  display: block;
  width: 810px;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .grant-text {
    margin-top: 40px;
  }
  .grant-text > img {
    width: 400px;
  }
}

.payment-notes-box {
  --color: $mainColor;
  margin: 80px 0 0;
  background-color: #fff;
  position: relative;
  border-radius: 20px;
  border: 4px solid var(--color);
  -webkit-box-shadow: 5px 5px 0 var(--color);
          box-shadow: 5px 5px 0 var(--color);
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 50px;
}
.payment-notes-box.-visible::before {
  opacity: 1;
}
@media (max-width: 767px) {
  .payment-notes-box {
    margin-top: 40px;
    padding: 24px 20px;
  }
}
.payment-notes-box .c-heading-d {
  background-color: var(--color);
}
.payment-notes-box.-paypay {
  --color: #EF002F;
}
.payment-notes-box.-rakutenpay {
  --color: #D60100;
}
.payment-notes-box.-dbarai {
  --color: #333333;
}
.payment-notes-box.-dbarai :is(.notes, .note)::before, .payment-notes-box.-dbarai .dotline {
  --color: #E81C40;
}
.payment-notes-box.-aupay {
  --color: #FF701A;
}
.payment-notes-box .body {
  padding: 40px 0 0 0;
}
@media (max-width: 767px) {
  .payment-notes-box .body {
    padding: 20px 0 0 0;
  }
}
.payment-notes-box .separator {
  border-top: 1px dashed var(--color);
  margin: 20px 0;
}
.payment-notes-box .noteslist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.8;
}
.payment-notes-box .noteslist .notes {
  position: relative;
  padding-left: 1em;
}
.payment-notes-box .noteslist .notes:not(:first-child) {
  margin-top: 8px;
}
.payment-notes-box .noteslist .notes::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color);
  left: 0;
  top: 0.7em;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .payment-notes-box .noteslist .notes::before {
    top: 0.6em;
  }
}
.payment-notes-box .noteslist .txt {
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .payment-notes-box .noteslist .txt {
    font-size: 0.875rem;
  }
}
.payment-notes-box .notechild {
  margin: 2px 0 0;
  padding-left: 0;
  list-style: none;
  line-height: 1.8;
}
.payment-notes-box .notechild .note {
  font-size: 0.9375rem;
  position: relative;
  padding-left: 1.1em;
}
.payment-notes-box .notechild .note:not(:first-of-type) {
  margin-top: 2px;
}
@media (max-width: 767px) {
  .payment-notes-box .notechild .note {
    font-size: 0.8125rem;
  }
}
.payment-notes-box .notechild .note::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: var(--color);
  left: 0;
  top: 0.85em;
  border-radius: 20px;
}
.payment-notes-box .dotline {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 24px auto 0;
}
.payment-notes-box .dotline > a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color);
  text-decoration: none;
  border-bottom: dotted 3px var(--color);
  padding-bottom: 2px;
  line-height: 2;
}
@media (max-width: 767px) {
  .payment-notes-box .dotline > a {
    font-size: 0.9375rem;
  }
}
.payment-notes-box .attention {
  position: relative;
  padding-left: 38px;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 2px dotted black;
}
.payment-notes-box .attention > .txt {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .payment-notes-box .attention {
    margin-top: 18px;
    padding-top: 18px;
  }
  .payment-notes-box .attention > .txt {
    font-size: 0.875rem;
  }
}
.payment-notes-box .attention::before {
  display: block;
  position: absolute;
  content: "";
  background: url(../img/icon-notes.svg);
  width: 28px;
  height: 24px;
  top: 28px;
  left: 0;
}

.l-consultation {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .l-consultation {
    padding: 40px 0 50px;
  }
}

.consultation-title {
  margin: 0 auto;
  max-width: 875px;
}
.consultation-box {
  margin-top: 40px;
  background-color: #fff;
  padding: 80px;
  -webkit-box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
  background: url(../../images/bg-consultation.png) repeat-y top center/100% auto, #FFFBE0;
  position: relative;
}
.consultation-box > .title {
  text-align: center;
  margin: 0;
}
@media (max-width: 767px) {
  .consultation-box {
    margin-top: 16px;
    padding: 24px 10px;
  }
}

.consultation-mochimono {
  margin: 10px 0 0;
}

.consultation-schedule {
  margin: 24px 0 0;
}
@media (max-width: 767px) {
  .consultation-schedule {
    margin-top: 16px;
  }
}

.store-box {
  margin: 80px 0 0 0;
  border-radius: 20px;
  background-color: #fff;
  padding: 42px 78px 80px;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
  position: relative;
}
.store-box::before, .store-box::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 36px;
  background: #F5F0D0;
  border-radius: 100px;
  -webkit-box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .store-box::before, .store-box::after {
    width: 12px;
    height: 12px;
    -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.06);
            box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.06);
    top: 12px;
  }
}
.store-box::before {
  left: 36px;
}
@media (max-width: 767px) {
  .store-box::before {
    left: 12px;
  }
}
.store-box::after {
  right: 36px;
}
@media (max-width: 767px) {
  .store-box::after {
    right: 12px;
  }
}
.store-box > .title {
  text-align: center;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 716px;
}
@media (max-width: 767px) {
  .store-box {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .store-box > .title {
    padding: 0;
  }
}

.store-subBox {
  margin: 32px 0 0 0;
  border: solid 18px rgba(43, 155, 75, 0.2);
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 50px 50px;
}
.store-subBox > .title {
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.store-subBox > .labels {
  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: 12px 0 0 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}
.store-subBox > .labels > li {
  color: #E81929;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 8px;
  border: solid 3px #CBCBCB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 200px;
  padding: 1px;
  text-align: center;
  line-height: 1.5;
}
.store-subBox > .labels > li.-reverse {
  color: white;
  background: #E81929;
  border-color: #E81929;
}
.store-subBox > .main {
  margin: 32px 0 0 0;
}
.store-subBox > .main.-finish {
  padding: 16px;
  position: relative;
  margin-inline: -16px;
  margin-bottom: -16px;
}
.store-subBox > .main.-finish::before {
  border-radius: 7px;
  z-index: 2;
  content: "終了しました";
  color: white;
  font-size: 1.375rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  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 (max-width: 767px) {
  .store-subBox {
    margin: 24px 0 0 0;
    border-width: 8px;
    padding: 24px 16px;
  }
  .store-subBox > .labels {
    gap: 8px;
  }
  .store-subBox > .labels > li {
    font-size: 0.875rem;
    min-width: 110px;
    border-width: 2px;
  }
  .store-subBox > .main {
    margin-top: 24px;
  }
  .store-subBox > .main.-finish {
    padding: 8px;
    margin-inline: -8px;
    margin-bottom: -8px;
  }
}

.store-contents {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .store-contents {
    margin-top: 30px;
  }
}
.store-contents > .request {
  text-align: center;
  margin: 0;
}
.store-contents > .request:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .store-contents > .request img {
    width: max(52.1512385919vw, 250px);
  }
}
.store-contents > .provision {
  margin-top: 30px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border: solid 3px #2B9B4B;
  background-color: #fff;
}
.store-contents > .provision .c-heading-c {
  background-color: #2B9B4B;
  text-align: center;
  padding: 7px 0 9px;
}
.store-contents > .provision .content {
  padding: 24px 40px 30px;
}
@media (max-width: 767px) {
  .store-contents > .provision .content {
    padding: 15px 20px 20px;
  }
}
.store-contents > .provision .content .list {
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.store-contents > .provision .content .list .item {
  line-height: 1.8;
  font-weight: bold;
  font-size: 0.9375rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .store-contents > .provision .content .list .item {
    font-size: 0.8125rem;
  }
}
.store-contents > .provision .content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  font-size: 0.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.store-contents > .provision .content .text:first-of-type {
  margin-top: 15px;
}
.store-contents > .provision .content .text:not(:first-of-type) {
  margin-top: 3px;
}
.store-contents > .provision .content .text .red {
  padding-right: 5px;
}
.store-contents > .provision .content .red {
  font-size: 0.6875rem;
  color: #DE0010;
}
.store-contents > .provision02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto 0 1fr;
  grid-template-rows: auto 1fr;
      grid-template-areas: "houjin kojin" "image kojin";
  gap: 0 40px;
}
@media (max-width: 767px) {
  .store-contents > .provision02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 20px auto 20px auto;
    grid-template-rows: repeat(3, auto);
        grid-template-areas: "houjin" "kojin" "image";
    gap: 20px;
  }
}
.store-contents > .provision02 > .content.-business {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: houjin;
}
.store-contents > .provision02 > .content.-kojin {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: kojin;
}
.store-contents > .provision02 > .image {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: image;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 767px){
  .store-contents > .provision02 > .content.-business {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .store-contents > .provision02 > .content.-kojin {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .store-contents > .provision02 > .image {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
}
.store-contents > .provision02 > .image > img {
  width: min(90%, 304px);
}
@media (max-width: 767px) {
  .store-contents > .provision02 > .image {
    margin-top: 0;
  }
}
.store-contents > .provision02 .c-heading-c {
  background-color: #6FB92C;
  text-align: center;
  padding: 7px 0 9px;
}
.store-contents > .provision02 .cover {
  border: solid 3px #6FB92C;
  border-radius: 8px;
}
.store-contents > .provision02 .body {
  padding: 16px 20px 20px;
  line-height: 1.8;
}
.store-contents > .provision02 .itemlist .text {
  font-size: 0.875rem;
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .itemlist .text {
    font-size: 0.8125rem;
  }
}
.store-contents > .provision02 .itemlist .item {
  margin: 0;
}
.store-contents > .provision02 .itemlist .item:not(:first-of-type) {
  margin-top: 4px;
}
.store-contents > .provision02 .itemlist .item .txt {
  display: inline-block;
  font-weight: bold;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .itemlist .item .txt {
    font-size: 0.875rem;
  }
}
.store-contents > .provision02 .itemlist .item .txt.-sm {
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .itemlist .item .txt.-sm {
    font-size: 0.8125rem;
  }
}
.store-contents > .provision02 .itemlist .item .sml {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .itemlist .item .sml {
    font-size: 0.75rem;
  }
}
.store-contents > .provision02 .itemlist .item .notes {
  display: block;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-top: 9px;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .itemlist .item .notes {
    font-size: 0.75rem;
  }
}
.store-contents > .provision02 .restaurantItem {
  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;
  margin-top: 16px;
  padding-top: 18px;
  border-top: solid 2px #6FB92D;
  gap: 6px;
}
.store-contents > .provision02 .restaurantItem > .plus {
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 27px;
  height: 27px;
  background: #6FB92D;
  border-radius: 100px;
  color: white;
  line-height: 1.6;
}
.store-contents > .provision02 .restaurantItem > .label {
  color: white;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 8px;
  border-radius: 100px;
  background: #6FB92D;
  display: inline-block;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .restaurantItem > .label {
    font-size: 0.875rem;
  }
}
.store-contents > .provision02 .restaurantItem > .txt {
  margin: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .store-contents > .provision02 .restaurantItem > .txt {
    font-size: 0.875rem;
  }
}
.store-contents > .plus {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  background-color: #6FB92C;
  margin: 16px auto 12px;
}
@media (max-width: 767px) {
  .store-contents > .plus {
    margin: 12px auto;
  }
}
.store-contents > .plus::before,
.store-contents > .plus::after {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: #fff;
  top: 50%;
  left: 50%;
}
.store-contents > .plus::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.store-contents > .plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.searchStore-block {
  overflow: visible !important;
  margin-top: 85px;
  --height: 30px;
  --degree: 60deg;
}
@media (max-width: 767px) {
  .searchStore-block {
    margin-top: 40px;
  }
}
.searchStore-block > .title {
  position: relative;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
}
@media (max-width: 767px) {
  .searchStore-block > .title {
    font-size: 1.25rem;
  }
}
.searchStore-block > .title::before, .searchStore-block > .title::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 1px;
  top: 50%;
  border-left: 4px dotted #13AE67;
}
.searchStore-block > .title::before {
  -webkit-transform: translateY(-50%) rotate(-25deg);
          transform: translateY(-50%) rotate(-25deg);
  left: -24px;
}
.searchStore-block > .title::after {
  -webkit-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
  right: -24px;
}
.searchStore-block > .attention {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  margin: 32px auto 0;
  padding: 40px 50px;
  border: solid 4px #13AE67;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .searchStore-block > .attention {
    padding: 32px 20px;
  }
}
.searchStore-block > .attention > .title {
  margin: auto;
  text-align: center;
  max-width: 90%;
}
.searchStore-block > .attention > .list {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 0;
  padding-left: 0;
  list-style: none;
}
.searchStore-block > .attention > .list .item {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
}
.searchStore-block > .attention > .list .item:not(:first-child) {
  margin-top: 8px;
}
.searchStore-block > .attention > .list .item strong {
  color: #DE0010;
}
.searchStore-block > .attention > .list .item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #13AE67;
  left: 0;
  top: 0.65em;
  border-radius: 100%;
}
.searchStore-block > .attention .text {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #E71F10;
}
.searchStore-block > .attention .image {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .searchStore-block > .attention .txt, .searchStore-block > .attention .item {
    font-size: 0.875rem;
  }
  .searchStore-block > .attention .text {
    font-size: 0.9375rem;
  }
}
.searchStore-block > .balloon {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: calc(var(--height) + 40px);
  padding: max(25px, 4%);
  background: white;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .searchStore-block > .balloon {
    padding: 24px 20px;
    margin-top: calc(var(--height) + 24px);
  }
}
.searchStore-block > .balloon > .logo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.8571428571% 1fr 2.8571428571% 1fr 2.8571428571% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8571428571%;
  max-width: 700px;
  margin: max(15px, 2%) auto 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .searchStore-block > .balloon > .logo {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.searchStore-block > .balloon > .logo > li .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  max-height: 72px;
  margin: auto;
  aspect-ratio: 20/7;
  border-radius: 4px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.searchStore-block > .balloon > .logo > li .btn.-aupay {
  padding: 10px;
}
.searchStore-block > .balloon > .logo > li .btn.-dbarai {
  padding: 3px;
}
.searchStore-block > .balloon > .logo > li .btn.-paypay {
  padding: 3px;
}
.searchStore-block > .balloon > .logo > li .btn.-rakutenpay {
  padding: 10px;
}
.searchStore-block > .balloon::before {
  content: "";
  border-width: 0 calc(var(--height) * tan(var(--degree) / 2)) var(--height) calc(var(--height) * tan(var(--degree) / 2));
  border-style: solid;
  border-color: white transparent;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.search-table {
  overflow-x: auto;
  overflow-y: hidden;
}
.search-table table {
  width: 1000px;
  border-radius: 8px;
  border-spacing: 0;
  border: none;
  border-left: 2px solid #13AE67;
  border-top: 2px solid #13AE67;
}
@media (max-width: 767px) {
  .search-table table {
    width: 600px;
    font-size: 0.75rem;
  }
}
.search-table table tr > * {
  padding: 12px 18px;
  border: none;
  border-right: 2px solid #13AE67;
  border-bottom: 2px solid #13AE67;
}
@media (max-width: 767px) {
  .search-table table tr > * {
    padding: 8px 5px;
  }
}
.search-table table > thead {
  background: #13AE67;
}
.search-table table > thead tr th {
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
}
.search-table table > thead tr th:first-child {
  border-radius: 6px 0 0 0;
}
.search-table table > thead tr th:last-child {
  border-radius: 0 6px 0 0;
}
.search-table table > thead tr th:not(:last-child) {
  border-right: 2px solid #fff;
}
.search-table table > tbody tr:last-child > td:first-child {
  border-radius: 0 0 0 8px;
}
.search-table table > tbody tr:last-child > td:last-child {
  border-radius: 0 0 8px 0;
}
.search-table table > tbody tr > td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
@media (max-width: 767px) {
  .search-table table > tbody tr > td:first-child {
    width: 117px;
  }
}
.search-table table > tbody tr > td.-yellow {
  background: #FFFCDD;
  text-align: center;
  font-weight: bold;
  width: 90px;
}
@media (max-width: 767px) {
  .search-table table > tbody tr > td.-yellow {
    width: 52px;
  }
}
.search-table table > tbody tr > td.-yellow.-true {
  color: #E71F10;
}

.search-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.search-pager > li {
  font-size: 0.9375rem;
}
.search-pager > li > span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  min-width: 33px;
  padding: 10px;
  background: white;
  color: #13AE67;
  text-align: center;
}
.search-pager > li.cur > span {
  background: #13AE67;
  color: #fff;
}
.search-pager > li a {
  text-decoration: none;
  color: inherit;
}
.search-pager > li .anchor {
  padding: 0 16px;
  font-size: 1.25rem;
  color: #13AE67;
}

.search-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding-left: 0;
  gap: 16px;
  margin-top: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .search-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
.search-wrap > .category {
  width: 260px;
}
@media (max-width: 767px) {
  .search-wrap > .category {
    width: 100%;
  }
}
.search-wrap > .category > .title {
  display: inline-block;
  width: 6em;
  margin-right: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #13AE67;
}
.search-wrap > .category > .search-select {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
.search-wrap > .category > .search-select > select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 12px;
  border: 2px solid #13AE67;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
}
.search-wrap > .category > .search-select::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background: #13AE67;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.search-wrap > .keyword {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-wrap > .keyword > .title {
  display: inline-block;
  width: 6em;
  margin-right: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #13AE67;
}
.search-wrap > .keyword > .search-input {
  padding: 12px;
  border-radius: 3px;
  border: 2px solid #13AE67;
  width: 100%;
}
.search-wrap > .btn-search {
  background: #13AE67;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .search-wrap > .btn-search {
    padding: 12px;
    margin-top: 10px;
  }
}

.search-amount {
  margin: 30px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .search-amount {
    margin: 20px 0;
  }
}

.l-callcenter {
  background: url(../../images/callcenter-deco01.png) no-repeat left center/auto 100%, url(../../images/callcenter-deco02.png) no-repeat right center/auto 100%, url(../../images/bg-callcenter.png) no-repeat top center/cover;
  padding: 80px 0 100px;
}
.l-callcenter.-last {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .l-callcenter {
    padding: 40px 0 50px;
    background: url(../../images/callcenter-deco01.png) no-repeat left top/auto 70%, url(../../images/callcenter-deco02.png) no-repeat right top/auto 70%, url(../../images/bg-callcenter.png) no-repeat top center/cover;
  }
  .l-callcenter.-last {
    padding: 40px 0 36px;
  }
}

.l-callcenter-box .callcenter-block > .title {
  text-align: center;
  margin: 0;
  display: block;
  padding: 0 35px;
}
@media (max-width: 767px) {
  .l-callcenter-box .callcenter-block > .title {
    padding: 0;
    margin: 0 -10px;
  }
  .l-callcenter-box .callcenter-block > .title img {
    display: block;
  }
}
.l-callcenter-box .callcenter-block > .phone {
  z-index: 1;
  position: relative;
  padding: 0 5%;
}
@media (max-width: 767px) {
  .l-callcenter-box .callcenter-block > .phone {
    padding: 0 20px;
  }
}
.l-callcenter-box .callcenter-block > .phone .dial {
  text-align: center;
  max-width: 688px;
  margin: 20px auto 0;
  display: block;
}
.l-callcenter-box .callcenter-block > .phone .dial > img {
  -webkit-filter: drop-shadow(0 0 16px #F06F03);
          filter: drop-shadow(0 0 16px #F06F03);
}
@media (max-width: 767px) {
  .l-callcenter-box .callcenter-block > .phone .dial {
    margin-top: 16px;
  }
}
.l-callcenter-box .callcenter-block > .phone .times {
  text-shadow: 0 0 16px rgba(240, 3, 3, 0.64);
  margin: 22px 0 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .callcenter-block > .phone .times {
    font-size: 0.875rem;
    margin-top: 16px;
  }
}
.l-callcenter-box .cashless-block {
  position: relative;
  background-color: #fff;
  padding: 40px 60px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  max-width: 920px;
  margin: 60px auto 0;
}
.l-callcenter-box .cashless-block::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 31px solid transparent;
  border-left: 31px solid transparent;
  border-bottom: 50px solid #ffffff;
  border-top: 0;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-callcenter-box .cashless-block::after {
  position: absolute;
  content: "";
  width: 14.2%;
  height: 83px;
  bottom: 17px;
  right: calc(-14.2% - 42px);
  background: url(../img/callcenter-deco03.png) no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block {
    padding: 30px 20px;
    margin-top: 40px;
  }
  .l-callcenter-box .cashless-block::before {
    top: -24px;
  }
  .l-callcenter-box .cashless-block::after {
    right: -24px;
    bottom: -30px;
  }
}
.l-callcenter-box .cashless-block > .title {
  margin: auto;
  text-align: center;
  font-size: 1.4375rem;
}
.l-callcenter-box .cashless-block > .title span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FDEF37));
  background: linear-gradient(transparent 70%, #FDEF37 70%);
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .title {
    font-size: 1.0625rem;
  }
}
.l-callcenter-box .cashless-block > .paylist {
  display: block;
  margin-top: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist {
    margin-top: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.l-callcenter-box .cashless-block > .paylist .item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 140px 1fr;
  grid-template-columns: 140px 1fr;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item {
    display: block;
    text-align: center;
  }
}
.l-callcenter-box .cashless-block > .paylist .item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item:not(:last-of-type) {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.l-callcenter-box .cashless-block > .paylist .item:not(:last-of-type) {
  border-bottom: 2px dotted #000000;
}
.l-callcenter-box .cashless-block > .paylist .item .logo {
  height: 42px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .tel {
  font-size: 1.4375rem;
  color: #000;
  text-decoration: none;
  vertical-align: bottom;
  display: inline-block;
  margin: 0;
  margin-right: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.l-callcenter-box .cashless-block > .paylist .item .tel > img {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .tel {
    font-size: 1.25rem;
    margin-right: 0;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .title {
  font-size: 0.9375rem;
  margin: 0;
  font-weight: 500;
}
.l-callcenter-box .cashless-block > .paylist .item .title.-mt {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .title {
    font-size: 0.8125rem;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .title2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.2em;
  padding-left: 0.7em;
  font-size: 0.8125rem;
  color: #00AAD0;
  font-weight: bold;
}
.l-callcenter-box .cashless-block > .paylist .item .title2:not(:first-child) {
  margin-top: 1.4em;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .title2 {
    margin: 0 auto 0.2em;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .title2::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100px;
  background: #00AAD0;
  content: "";
}
.l-callcenter-box .cashless-block > .paylist .item .text {
  margin: 0.1em 0 0;
  font-size: 0.9375rem;
}
.l-callcenter-box .cashless-block > .paylist .item .text.-mt {
  margin: 0.5em 0 0;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .text {
    font-size: 0.8125rem;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .time {
  font-size: 0.875rem;
  margin: 0;
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-callcenter-box .cashless-block > .paylist .item .time {
    font-size: 0.8125rem;
  }
}
.l-callcenter-box .cashless-block > .paylist .item .sm {
  font-size: 0.75rem;
}
.l-callcenter-box .cashless-block > .paylist .item .link {
  font-size: 0.875rem;
  color: #000;
  display: inline-block;
  font-weight: bold;
}
/*# sourceMappingURL=site.css.map */