@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 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: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

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

/**
 * 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: inherit; /* 2 */
}

/**
 * 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;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

/**
 * 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 outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

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

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

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

* {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Ｐゴシック", sans-serif;
  color: #18201c;
  font-weight: 500;
}

html {
  width: 100%;
  min-height: 100%;
  font-size: 2.6666666667vw;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 62.5%;
  }
}

body {
  width: 100vw;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #f3fff9;
  color: #18201c;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
    overflow-x: clip;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  display: block;
}

a {
  transition-duration: 0.4s;
}
@media (min-width: 769px) {
  a {
    transition: all 0.5s ease;
  }
  a:hover {
    opacity: 0.5;
  }
}

img {
  max-width: 100%;
  display: block;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
}
/*
  main
--------------------------------------*/
.l-main {
  position: relative;
  display: block;
  flex: 1;
}
@media (max-width: 768px) {
  .l-main {
    margin-top: 14.896vw;
  }
}
@media (min-width: 769px) {
  .l-main {
    margin-top: 5.896vw;
  }
}
@media (min-width: 1200px) {
  .l-main {
    margin-top: 88px;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: initial;
  }
}

/* container */
.container {
  margin: 0 auto;
  padding: 0 5.3334vw;
}
@media (min-width: 769px) {
  .container {
    width: 66.6666624vw;
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 66.6666624vw;
  }
}

@media (min-width: 769px) {
  .inner {
    width: 79.16616vw;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .inner {
    width: 1140px;
  }
}

.sp {
  display: block;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: block;
  }
}
/*
  inview
--------------------------------------*/
.js-inview {
  opacity: 0;
  transition-duration: 1s;
}
.js-inview.is-fadeIn {
  opacity: 1;
}

header {
  background: #fff;
  position: relative;
}
header .head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.83333328vw 0;
}
header .head .logo {
  width: 22.9166652vw;
}
header .head .right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}
header .head .right_sub {
  width: 7.70833284vw;
}
header .head .right_btn {
  position: relative;
  width: 19.37499876vw;
  margin-left: 16px;
}
header .head .right_btn p {
  position: absolute;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.0833332vw;
  font-weight: 500;
  bottom: 0;
  right: 1.24999992vw;
}
header .tel {
  position: absolute;
  right: 14.40018vw;
  bottom: 2.6667vw;
}
header .tel img {
  width: 53.86734vw;
}
header .tel p {
  position: absolute;
  font-size: 5.86674vw;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  bottom: 0vw;
  right: 4.26672vw;
}
header .nav_area {
  padding: 0.83333328vw 0;
  background: linear-gradient(to right, #00b16b, #008803);
}
header .nav_area .container {
  width: 57.291663vw;
}
header .nav_area nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .nav_area nav li {
  list-style: none;
  padding: 0 2.0833332vw;
  position: relative;
}
header .nav_area nav li::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2.96874981vw;
  background-color: #fff;
  left: -1px;
  top: 0;
}
header .nav_area nav li:last-child::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2.96874981vw;
  background-color: #fff;
  right: -1px;
  top: 0;
}
header .nav_area nav li a {
  display: flex;
  color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93749994vw;
  letter-spacing: 0.05em;
  height: 2.96874981vw;
  position: relative;
  transform: translateY(-0.41666664vw);
}
header .nav_area nav li a::after {
  content: "";
  position: absolute;
  width: 0.83333328vw;
  height: 0.41666664vw;
  background-image: url(../img/nav_after.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}

.c_head {
  text-align: center;
  position: relative;
  margin-bottom: 2.49999984vw;
}
.c_head::before {
  position: absolute;
  content: "";
  width: 16.26687vw;
  height: 26.93367vw;
  background-image: url(../img/c_head_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  rotate: -15deg;
  bottom: 2.6667vw;
  transform: translateX(-50%);
}
.c_head::after {
  position: absolute;
  content: "";
  width: 26.667vw;
  height: 2px;
  background-color: #008803;
  left: 50%;
  bottom: -4.26672vw;
  transform: translateX(-50%);
}
.c_head_sub {
  display: block;
  color: #18201c;
  font-size: 6.40008vw;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.c_head_sub span {
  position: relative;
  font-weight: 600;
}
.c_head_sub span::after {
  content: "";
  position: absolute;
  top: -0.10416666vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #008803;
  width: 1.33335vw;
  height: 1.33335vw;
  border-radius: 1.33335vw;
}
.c_head_main {
  display: block;
  color: #008803;
  font-size: 9.60012vw;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.c_head_main span {
  color: #008803;
  font-size: 7.46676vw;
  font-weight: 800;
}
@media (min-width: 769px) {
  .c_head {
    text-align: center;
    position: relative;
    margin-bottom: 3.33333312vw;
  }
  .c_head::before {
    position: absolute;
    content: "";
    width: 4.21874973vw;
    height: 140px;
    background-image: url(../img/c_head_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 50%;
    rotate: -15deg;
    bottom: 0.5208333vw;
    transform: translateX(-50%);
  }
  .c_head::after {
    position: absolute;
    content: "";
    width: 7.2916662vw;
    height: 2px;
    background-color: #008803;
    left: 50%;
    bottom: -0.83333328vw;
    transform: translateX(-50%);
  }
  .c_head_sub {
    display: block;
    color: #18201c;
    font-size: 1.66666656vw;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .c_head_sub span {
    position: relative;
    font-weight: 600;
  }
  .c_head_sub span::after {
    content: "";
    position: absolute;
    top: -0.10416666vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: #008803;
    width: 0.36458331vw;
    height: 0.36458331vw;
    border-radius: 0.36458331vw;
  }
  .c_head_main {
    display: block;
    color: #008803;
    font-size: 3.33333312vw;
    font-weight: 800;
    letter-spacing: 0.05em;
  }
  .c_head_main span {
    color: #008803;
    font-size: 2.49999984vw;
    font-weight: 800;
  }
}

.cta {
  background-image: url(../img/top/cta_s_bg.png);
  background-size: cover;
  padding-top: 5.3334vw;
}
.cta .sp {
  text-align: center;
}
.cta .sp .ticket {
  margin-bottom: 3.20004vw;
}
.cta .sp span {
  font-size: 5.86674vw;
  color: #ffe327;
}
.cta .sp .tel {
  display: block;
  position: relative;
  margin-top: 4.26672vw;
  margin-bottom: 4.26672vw;
}
.cta .sp .tel p {
  position: absolute;
  font-size: 9.60012vw;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  bottom: 0vw;
  right: 10.6668vw;
}
.cta .sp p {
  font-size: 2.93337vw;
  color: #fff;
}
.cta .sp p a {
  border-bottom: solid 1px #fff;
}
@media (min-width: 769px) {
  .cta {
    background-image: url(../img/top/cta_p.jpg);
    background-size: cover;
    padding: 4.1666664vw 0;
    position: relative;
  }
  .cta_img {
    margin-bottom: 1.24999992vw;
  }
  .cta_img img {
    width: 36.9791643vw;
  }
  .cta_txt {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
  }
  .cta_txt .circle {
    width: 8.95833276vw;
    margin-right: 2.0833332vw;
  }
  .cta_txt .right .top_txt {
    width: 16.45833228vw;
    margin: 0 auto;
  }
  .cta_txt .right div {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
  }
  .cta_txt .right div img {
    width: 2.0833332vw;
    margin-top: 0.83333328vw;
    margin-right: 0.83333328vw;
  }
  .cta_txt .right div p {
    color: #fff;
    font-size: 3.33333312vw;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
  }
  .cta_privacytxt {
    position: absolute;
    bottom: 4.1666664vw;
    left: 27.0833316vw;
    color: #fff;
  }
  .cta_privacytxt p {
    color: #fff;
    font-size: 0.83333328vw;
  }
  .cta_privacytxt a {
    color: #fff;
    border-bottom: solid 1px #fff;
  }
}

.l-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  text-align: center;
  line-height: 1.25;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px 0;
  background: linear-gradient(#ff821e, #ff6101) !important;
}
.l-bar img {
  width: 100%;
}

.l-bar.is-view {
  opacity: 1;
}

.l-bar a {
  text-decoration: none;
}

.l-bar .u-view-pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-bar .u-view-pc .circle {
  width: 314px;
}

.l-bar .u-view-pc div {
  padding: 8px 28px 13px 40px;
  background-color: #fff;
  filter: drop-shadow(0px 3px 20px rgba(0, 0, 0, 0.2));
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
}

.l-bar .u-view-pc div .txt {
  width: 413px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-bar .u-view-pc div p {
  font-family: "Oswald";
  font-weight: 500;
  margin-top: 4px;
  margin-left: 10px;
  font-size: 44px;
  color: #e94b0f;
  font-weight: bold;
}

@media all and (max-width: 1600px) {
  .l-bar .u-view-pc .circle {
    width: 280px;
  }
  .l-bar .u-view-pc div .txt {
    width: 320px;
  }
  .l-bar .u-view-pc div p {
    font-size: 32px;
  }
}
@media all and (max-width: 1280px) {
  .l-bar .u-view-pc .circle {
    width: 200px;
  }
  .l-bar .u-view-pc div .txt {
    width: 280px;
  }
  .l-bar .u-view-pc div p {
    font-size: 28px;
  }
}
@media all and (max-width: 1100px) {
  .l-bar .u-view-pc .circle {
    width: 150px;
  }
  .l-bar .u-view-pc div .txt {
    width: 200px;
  }
  .l-bar .u-view-pc div p {
    font-size: 20px;
  }
}
@media all and (max-width: 599px) {
  .l-bar__inner {
    padding: 0;
    width: 100%;
    display: table;
  }
  .l-bar .bar-btn {
    display: table-cell;
  }
  .l-bar .bar-btn__link {
    display: block;
    padding: 12px 3px 0;
    height: 60px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 700;
  }
}
@media all and (max-width: 599px) and (max-width: 340px) {
  .l-bar .bar-btn__link {
    padding-top: 14px;
    font-size: 1.2rem;
  }
}
@media all and (max-width: 599px) {
  .l-bar .bar-btn.is-mail .bar-btn__link {
    border: 2px solid #00a0e9;
    background: #fff;
    color: #1b68b6;
  }
  .l-bar .bar-btn.is-line .bar-btn__link {
    background: linear-gradient(to bottom, #24c200 0%, #009600 100%);
    color: #fff;
  }
  .l-bar .bar-btn.is-line .bar-btn__link .link-color {
    font-size: 1.5rem;
    color: #fff36a;
    vertical-align: baseline;
  }
  .l-bar .bar-tel {
    display: table-cell;
  }
  .l-bar .bar-tel a.telno {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }
  .l-bar .bar-tel__link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    height: 60px;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
  }
  .l-bar .bar-tel__num {
    font-size: 3.2rem;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
  }
  .l-bar .bar-tel__num.ct3_telno {
    font-size: 2.4rem;
  }
}
@media all and (max-width: 599px) and (max-width: 340px) {
  .l-bar .bar-tel__num {
    font-size: 2rem;
  }
}
@media all and (max-width: 599px) {
  .l-bar .bar-tel__num:before {
    display: inline-block;
    content: "";
    margin-right: 2px;
    width: 35px;
    height: 20px;
    background: url(..//img/home/ico_tel02.png) no-repeat center center/contain;
  }
  .bar-tel {
    background: #f74c00;
  }
  .bar-tel.p-color-green {
    background: #3bc55d;
  }
  .p-color-kirari {
    overflow: hidden;
  }
  .p-color-kirari::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 50px;
    height: 100%;
    background-color: #fff;
    animation-name: p-color-kirar;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .bar-tel.p-color-pink {
    background: linear-gradient(to bottom, #f26666 0%, #cd3b3b 100%);
  }
  .l-bar .bar-tel__txt {
    margin-bottom: 3px;
    font-size: 1.2rem;
    text-align: left;
  }
  .bar-bottom__txt {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin: 5px 0 15px;
  }
}
@media all and (max-width: 599px) and (max-width: 340px) {
  .l-bar .bar-tel__txt {
    margin-top: 5px;
    font-size: 1.1rem;
  }
}
@media all and (min-width: 600px) {
  .l-bar {
    background: #f74c00;
  }
  .p-color-kirari {
    overflow: hidden;
  }
  .p-color-kirari:before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -200px;
    left: 0;
    width: 100px;
    height: 100%;
    background-color: #fff;
    animation-name: p-color-kirar;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .l-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
  }
  .l-bar .bar-list {
    display: flex;
    align-items: center;
  }
  .l-bar .bar-list__item {
    margin-right: 5px;
    padding-top: 18px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0;
    box-sizing: border-box;
    background: #ffe746;
    color: #f74c00;
  }
  .l-bar .bar-list__item .item-large {
    font-size: 2rem;
    vertical-align: baseline;
  }
  .l-bar .bar-list__item .item-small {
    font-size: 1.2rem;
    vertical-align: baseline;
  }
  .l-bar .bar-tel {
    order: 2;
    margin: 0 0 0 30px;
  }
  .l-bar .bar-tel a {
    color: #fff;
    text-decoration: none;
  }
  .l-bar .bar-tel__link {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    pointer-events: none;
  }
  .l-bar .bar-tel__num {
    font-size: 5rem;
    margin-bottom: 3px;
  }
  .l-bar .bar-tel__num a.telno {
    color: #fff;
    text-decoration: none;
  }
  .l-bar .bar-tel__num:before {
    display: inline-block;
    content: "";
    margin-right: 2px;
    width: 53.3333px;
    height: 30px;
    background: url(..//img/home/ico_tel02.png) no-repeat center center/contain;
  }
  .l-bar .bar-tel__txt {
    color: #fff;
    margin-bottom: 0;
  }
  .bar-bottom__txt {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin: 5px 0 15px;
  }
  .l-bar .bar-btn {
    background: #fff;
  }
  .l-bar .bar-btn__link {
    position: relative;
    display: block;
    padding: 15px 35px 16px 10px;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-align: left;
    transition: opacity 0.3s ease;
  }
  .l-bar .bar-btn__link:hover {
    opacity: 0.8;
  }
  .l-bar .bar-btn__link:before {
    position: absolute;
    content: "";
    top: 50%;
    width: 5px;
    height: 5px;
    margin-top: -5px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #fff;
    transform: rotate(45deg);
    right: 8px;
    z-index: 2;
  }
  .l-bar .bar-btn__link:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    width: 20px;
    z-index: 1;
  }
  .l-bar .bar-btn__ico {
    margin: 0 10px 4px 0;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
  }
  .l-bar .bar-btn__ico img {
    display: block;
  }
  .l-bar .bar-btn.is-line {
    order: 3;
  }
  .l-bar .bar-btn.is-line .bar-btn__link {
    padding: 12px 35px 15px 15px;
    border: 3px solid #41cf2f;
    background: linear-gradient(to bottom, #24c200 0%, #009600 100%);
    color: #fff;
  }
  .l-bar .bar-btn.is-line .bar-btn__link:after {
    background: rgba(0, 0, 0, 0.2);
  }
  .l-bar .bar-btn.is-line .bar-btn__link .link-color {
    font-size: 2.4rem;
    color: #fff36a;
    vertical-align: middle;
    margin-bottom: 6px;
    display: inline-block;
    line-height: 1;
  }
  .l-bar .bar-btn.is-mail {
    order: 4;
  }
  .l-bar .bar-btn.is-mail .bar-btn__link {
    color: #1d55a7;
    border: 3px solid #00a0e9;
    background: #fff;
    font-weight: 900;
  }
  .l-bar .bar-btn.is-mail .bar-btn__link:after {
    background: #00a0e9;
  }
}
@media all and (max-width: 599px) {
  .u-view-pc {
    display: none !important;
  }
}
@media all and (min-width: 600px) {
  .u-view-sp {
    display: none !important;
  }
}
footer {
  background: #fff;
  margin-bottom: 16.0002vw;
}
footer .foot {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2.0833332vw 0 4.1666664vw;
}
footer .foot .logo {
  width: 22.9166652vw;
}
footer .foot .right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}
footer .foot .right_sub {
  width: 7.70833284vw;
}
footer .foot .right_btn {
  position: relative;
  width: 19.37499876vw;
  margin-left: 16px;
}
footer .foot .right_btn p {
  position: absolute;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.0833332vw;
  font-weight: 500;
  bottom: 0;
  right: 1.24999992vw;
}
footer .sp .f_sp_1 {
  position: relative;
}
footer .sp .f_sp_1 .tel {
  position: absolute;
  right: 4.80006vw;
  bottom: 10.6668vw;
}
footer .sp .f_sp_1 .tel img {
  width: 53.86734vw;
  height: 12.53349vw;
}
footer .sp .f_sp_1 .tel p {
  position: absolute;
  font-size: 5.3334vw;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  bottom: 0vw;
  right: 4.26672vw;
}
footer .nav_area {
  background-color: #fff;
}
footer .nav_area nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer .nav_area nav li {
  list-style: none;
  padding: 3.20004vw 0;
  position: relative;
  border: solid 1px #18201c;
  width: 50%;
  text-align: center;
}
footer .nav_area nav li a {
  display: flex;
  color: #18201c;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 4.26672vw;
  letter-spacing: 0.05em;
  height: 10.6668vw;
  position: relative;
  transform: translateY(1.60002vw);
}
footer .nav_area nav li a::after {
  content: "";
  position: absolute;
  width: 4.26672vw;
  height: 2.13336vw;
  background-image: url(../img/nav_after_b.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: -1.06668vw;
  left: 50%;
  transform: translateY(0) translateX(-50%);
}
@media (min-width: 769px) {
  footer {
    margin-bottom: 6.7708329vw;
  }
  footer .nav_area {
    padding: 2.0833332vw 0;
    background-color: #fff;
  }
  footer .nav_area .container {
    width: 62.499996vw;
  }
  footer .nav_area nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  footer .nav_area nav li {
    list-style: none;
    padding: 0 1.5624999vw;
    position: relative;
    border: none;
    width: auto;
  }
  footer .nav_area nav li::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 2.96874981vw;
    background-color: #18201c;
    left: -1px;
    top: 0;
  }
  footer .nav_area nav li:last-child::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2.96874981vw;
    background-color: #18201c;
    right: -1px;
    top: 0;
  }
  footer .nav_area nav li a {
    display: flex;
    color: #18201c;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.93749994vw;
    letter-spacing: 0.05em;
    height: 2.96874981vw;
    position: relative;
    transform: translateY(0.41666664vw);
  }
  footer .nav_area nav li a::after {
    content: "";
    position: absolute;
    width: 0.83333328vw;
    height: 0.41666664vw;
    background-image: url(../img/nav_after_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
  }
}

.top .l-wrapper {
  position: relative;
}
.top_trouble {
  padding-top: 17.06688vw;
}
.top_trouble_case {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4.26672vw;
}
.top_trouble_case_item {
  width: 42.6672vw;
  margin-bottom: 6.40008vw;
}
.top_trouble_case_item_top {
  background-color: #fff;
  margin-bottom: 6.40008vw;
  filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
}
.top_trouble_case_item_top h3 {
  min-height: 21.3336vw;
  padding: 4.80006vw 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #008803;
  font-size: 4.26672vw;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.top_trouble_case_item_list li {
  font-size: 2.6667vw;
  margin-bottom: 1.33335vw;
  list-style: none;
  position: relative;
  padding-left: 4.53339vw;
}
.top_trouble_case_item_list li::before {
  position: absolute;
  content: "";
  width: 3.20004vw;
  height: 3.20004vw;
  background-image: url(../img/top/trouble_list.png);
  background-size: contain;
  left: 0;
  top: 0.53334vw;
}
.top_trouble_bottom {
  margin: 0 auto;
}
.top_trouble_bottom img {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .top_trouble {
    padding-top: 7.8124995vw;
  }
  .top_trouble_case {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.0833332vw;
  }
  .top_trouble_case_item {
    width: 15.1041657vw;
    margin-bottom: 0;
  }
  .top_trouble_case_item_top {
    background-color: #fff;
    margin-bottom: 0.83333328vw;
    filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
  }
  .top_trouble_case_item_top h3 {
    min-height: 5.26041633vw;
    padding: 1.0416666vw 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #008803;
    font-size: 1.0416666vw;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
  }
  .top_trouble_case_item_list li {
    font-size: 0.93749994vw;
    margin-bottom: 0.41666664vw;
    list-style: none;
    position: relative;
    padding-left: 1.5624999vw;
  }
  .top_trouble_case_item_list li::before {
    position: absolute;
    content: "";
    width: 1.0416666vw;
    height: 1.0416666vw;
    background-image: url(../img/top/trouble_list.png);
    background-size: contain;
    left: 0;
    top: 0.20833332vw;
  }
  .top_trouble_bottom {
    margin: 0 auto;
  }
  .top_trouble_bottom img {
    width: 57.291663vw;
    margin: 0 auto;
  }
}
.top_service {
  padding-top: 21.3336vw;
  padding-bottom: 4.1666664vw;
  position: relative;
}
.top_service_bg {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
}
.top_service_bg svg {
  width: 100%;
}
.top_service_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -6.40008vw;
}
.top_service_inner img {
  width: 100%;
  margin-bottom: 6.40008vw;
  filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
}
.top_service_bottom {
  margin-top: 10.6668vw;
}
.top_service_bottom p {
  font-size: 3.73338vw;
  font-weight: 600;
  line-height: 1.5;
}
.top_service_list {
  margin-top: 8.53344vw;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.top_service_list img {
  width: 28.00035vw;
  margin: 0 0.53334vw;
  filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
}
.top_service_cashless {
  margin-top: 10.6668vw;
}
.top_service_cashless img {
  width: 100%;
}
@media (min-width: 769px) {
  .top_service {
    padding-top: 6.2499996vw;
    padding-bottom: 4.1666664vw;
    position: relative;
  }
  .top_service_bg {
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
  .top_service_bg svg {
    width: 100%;
  }
  .top_service_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -2.0833332vw;
  }
  .top_service_inner img {
    width: 19.99999872vw;
    margin-bottom: 2.0833332vw;
    filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
  }
  .top_service_bottom {
    margin-top: 3.33333312vw;
  }
  .top_service_bottom p {
    font-size: 1.0416666vw;
    font-weight: 600;
    line-height: 1.5;
  }
  .top_service_list {
    margin-top: 3.33333312vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_service_list img {
    width: 9.3749994vw;
    margin: 0 1.66666656vw;
    filter: drop-shadow(2px 2px 2px rgba(24, 32, 28, 0.0823529412));
  }
  .top_service_cashless {
    margin-top: 5.208333vw;
  }
  .top_service_cashless img {
    width: 66.6666624vw;
  }
}
.top_strong {
  padding-top: 17.06688vw;
  position: relative;
}
.top_strong .bg {
  position: absolute;
  bottom: 21.3336vw;
  left: 0;
  z-index: -1;
}
.top_strong .bg img {
  width: 100%;
}
.top_strong_inner {
  margin-top: 19.73358vw;
  margin-bottom: -17.60022vw;
}
.top_strong_inner_item {
  background-color: #fff;
  border: solid 3px #008803;
  padding: 5.3334vw;
  padding-top: 17.60022vw;
  position: relative;
  margin-bottom: 17.60022vw;
}
.top_strong_inner_item .label {
  position: absolute;
  top: -13.3335vw;
  left: 50%;
  transform: translateX(-50%);
}
.top_strong_inner_item .label img {
  width: 26.667vw;
}
.top_strong_inner_item .head {
  text-align: center;
  margin-bottom: 4.26672vw;
}
.top_strong_inner_item .head span {
  font-size: 4.80006vw;
  font-weight: 600;
}
.top_strong_inner_item .head span strong {
  font-size: 6.40008vw;
  font-weight: 600;
  color: #008803;
}
.top_strong_inner_item .head h3 {
  font-size: 6.40008vw;
  font-weight: 600;
  color: #008803;
}
.top_strong_inner_item .head h3 strong {
  font-size: 8.53344vw;
  font-weight: 600;
  color: #008803;
}
.top_strong_inner_item .inn {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
}
.top_strong_inner_item .inn .txt {
  width: 100%;
}
.top_strong_inner_item .inn .txt p {
  font-size: 3.73338vw;
  font-weight: 400;
  line-height: 1.75;
}
.top_strong_inner_item .inn .txt p .green {
  color: #008803;
}
.top_strong_inner_item .inn img {
  width: 100%;
  margin-bottom: 4.26672vw;
}
.top_strong_inner_item .bottom {
  margin-top: 2.0833332vw;
}
@media (min-width: 769px) {
  .top_strong {
    padding-top: 6.2499996vw;
    position: relative;
  }
  .top_strong .bg {
    position: absolute;
    bottom: 4.1666664vw;
    left: 0;
    z-index: -1;
  }
  .top_strong .bg img {
    width: 100%;
  }
  .top_strong_inner {
    margin-top: 7.2916662vw;
    margin-bottom: -6.45833292vw;
  }
  .top_strong_inner_item {
    background-color: #fff;
    border: solid 5px #008803;
    padding: 2.0833332vw;
    padding-top: 4.1666664vw;
    position: relative;
    margin-bottom: 6.45833292vw;
  }
  .top_strong_inner_item .label {
    position: absolute;
    left: 1.24999992vw;
    top: -5.208333vw;
  }
  .top_strong_inner_item .label img {
    width: 10.416666vw;
  }
  .top_strong_inner_item .head {
    text-align: center;
    margin-bottom: 2.0833332vw;
  }
  .top_strong_inner_item .head span {
    font-size: 1.66666656vw;
    font-weight: 600;
  }
  .top_strong_inner_item .head span strong {
    font-size: 2.0833332vw;
    font-weight: 600;
    color: #008803;
  }
  .top_strong_inner_item .head h3 {
    font-size: 2.29166652vw;
    font-weight: 600;
    color: #008803;
  }
  .top_strong_inner_item .head h3 strong {
    font-size: 2.91666648vw;
    font-weight: 600;
    color: #008803;
  }
  .top_strong_inner_item .inn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .top_strong_inner_item .inn .txt {
    width: 30.46874805vw;
  }
  .top_strong_inner_item .inn .txt p {
    font-size: 1.0416666vw;
    font-weight: 400;
    line-height: 1.75;
  }
  .top_strong_inner_item .inn .txt p .green {
    color: #008803;
  }
  .top_strong_inner_item .inn img {
    width: 29.42708145vw;
    margin-bottom: 0;
  }
  .top_strong_inner_item .bottom {
    margin-top: 2.0833332vw;
  }
}
.top_step {
  padding: 7.8124995vw 0 8.3333328vw;
}
.top_cashless {
  margin-top: 10.6668vw;
}
@media (min-width: 769px) {
  .top_cashless {
    margin-top: 2.0833332vw;
  }
}
.top_worry {
  padding-top: 17.06688vw;
}
.top_worry_inner {
  margin-top: 10.6668vw;
}
@media (min-width: 769px) {
  .top_worry {
    padding-top: 6.2499996vw;
  }
  .top_worry_inner {
    margin-top: 0;
  }
}
.top_voice {
  padding: 20.80026vw 0 21.3336vw;
  position: relative;
  overflow: hidden;
}
.top_voice .container img {
  width: 77.86764vw;
  margin: 0 auto;
  margin-bottom: 8.53344vw;
}
.top_voice .container p {
  text-align: center;
  color: #fff;
  font-size: 4.26672vw;
}
.top_voice .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top_voice_slick {
  margin-top: 8.53344vw;
}
.top_voice_slick_slide {
  width: 84.00105vw;
  margin: 0 2.13336vw;
}
@media (min-width: 769px) {
  .top_voice {
    padding: 4.1666664vw 0 5.208333vw;
    position: relative;
    overflow: hidden;
  }
  .top_voice .container img {
    width: 47.9166636vw;
    margin: 0 auto;
    margin-bottom: 3.33333312vw;
  }
  .top_voice .container p {
    text-align: center;
    color: #fff;
    font-size: 1.0416666vw;
  }
  .top_voice .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .top_voice_slick {
    margin-top: 3.33333312vw;
  }
  .top_voice_slick_slide {
    width: 18.2291655vw;
    margin: 0 0.41666664vw;
  }
}
.top_area {
  padding-top: 17.06688vw;
  padding-bottom: 17.06688vw;
  position: relative;
}
.top_area .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top_area_inner {
  margin-top: 10.6668vw;
  position: relative;
}
.top_area_inner p {
  margin-top: 6.40008vw;
  font-size: 3.73338vw;
  line-height: 1.75;
}
.top_area_inner p a {
  color: #008803;
}
@media (min-width: 769px) {
  .top_area {
    padding-top: 6.2499996vw;
    padding-bottom: 6.2499996vw;
  }
  .top_area p {
    position: absolute;
    bottom: 0;
    left: 26.5624983vw;
    margin-top: 0;
    font-size: 1.0416666vw;
  }
  .top_area p a {
    color: #008803;
  }
}
.top_faq {
  padding-top: 17.06688vw;
  padding-bottom: 17.06688vw;
}
.top_faq_inner {
  margin-top: 10.6668vw;
}
@media (min-width: 769px) {
  .top_faq {
    padding-top: 6.2499996vw;
    padding-bottom: 2.0833332vw;
  }
  .top_faq_inner {
    margin-top: 0;
  }
}

.privacy_top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 21.3336vw;
  line-height: 1.3;
  padding: 10px;
  background-color: #008803;
  font-weight: 700;
  text-align: center;
}
.privacy_top h1 {
  color: #fff;
  font-size: 6.40008vw;
  font-weight: 600;
}
@media (min-width: 769px) {
  .privacy_top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 7.8124995vw;
    line-height: 1.3;
    padding: 10px;
    background-color: #008803;
    font-weight: 700;
    text-align: center;
  }
  .privacy_top h1 {
    color: #fff;
    font-size: 2.0833332vw;
    font-weight: 600;
  }
}

.privacy-info {
  line-height: 1.8;
  padding-top: 10.6668vw;
  padding-bottom: 14.93352vw;
}
.privacy-info__head {
  margin-bottom: 4.00005vw;
  font-size: 6.40008vw;
  font-weight: 600;
}
.privacy-info__lead {
  margin-bottom: 10.6668vw;
  font-size: 4.26672vw;
}
.privacy-info-box__head {
  font-size: 4.80006vw;
}
.privacy-info-box__content {
  font-size: 4.26672vw;
  margin-bottom: 8.53344vw;
}
.privacy-info-box-list {
  counter-reset: number;
}
.privacy-info-box-list__item {
  padding-left: 8.0001vw;
  position: relative;
}
.privacy-info-box-list__item:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: "(" counter(number) ")";
}
@media (min-width: 769px) {
  .privacy-info {
    line-height: 1.8;
    padding-top: 4.1666664vw;
    padding-bottom: 5.208333vw;
  }
  .privacy-info__head {
    margin-bottom: 0.5208333vw;
    font-size: 1.5624999vw;
    font-weight: 600;
  }
  .privacy-info__lead {
    margin-bottom: 1.82291655vw;
    font-size: 0.83333328vw;
  }
  .privacy-info-box__head {
    font-size: 0.93749994vw;
  }
  .privacy-info-box__content {
    font-size: 0.83333328vw;
    margin-bottom: 1.66666656vw;
  }
  .privacy-info-box-list {
    counter-reset: number;
  }
  .privacy-info-box-list__item {
    padding-left: 1.5624999vw;
    position: relative;
  }
  .privacy-info-box-list__item:before {
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: number;
    content: "(" counter(number) ")";
  }
}

.company-data {
  padding: 42px 0 50px;
}

.company-data__head {
  margin-bottom: 23px;
}

@media all and (min-width: 600px) {
  .company-data {
    padding: 90px 0 100px;
  }
  .company-data__head {
    margin-bottom: 50px;
  }
}
.company-maker {
  padding: 44px 0 50px;
}

.company-maker__head {
  margin-bottom: 23px;
}

.company-maker-logo {
  padding: 22px;
  background: #fff;
  border: 2px solid #c8dbec;
}

.company-maker-logo img {
  display: block;
  margin: 0 auto;
}

@media all and (min-width: 600px) {
  .company-maker {
    padding: 89px 0 100px;
  }
  .company-maker__head {
    margin-bottom: 38px;
  }
  .company-maker-logo {
    padding: 52px;
    border-width: 10px;
  }
}
.company-link {
  padding: 40px 0 35px;
}

@media all and (min-width: 600px) {
  .company-link {
    padding: 60px 0 100px;
  }
}
.c-table01 tr {
  border: 1px solid #c8dbec;
}

.c-table01 th,
.c-table01 td {
  box-sizing: border-box;
  padding: 14px 15px 15px;
  font-size: 1.3rem;
}

.c-table01 a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media all and (max-width: 599px) {
  .c-table01 th,
  .c-table01 td {
    display: block;
    width: 100%;
  }
}
.c-table01 th {
  border-bottom: 1px solid #c8dbec;
  background: #d0fbd1;
  color: #008803;
  font-weight: 700;
}

.c-table01 td {
  background: #f6fcfe;
}

@media all and (min-width: 600px) {
  .c-table01 th,
  .c-table01 td {
    padding: 23px 29px 25px;
    font-size: 1.6rem;
  }
  .c-table01 th {
    width: 260px;
    border-bottom: none;
  }
}
.c-table02 tr {
  border-bottom: 1px solid #e6e6e6;
}

.c-table02 tr:last-of-type {
  border-bottom: none;
}

.c-table02 th,
.c-table02 td {
  box-sizing: border-box;
  font-size: 1.4rem;
}

@media all and (max-width: 599px) {
  .c-table02 th,
  .c-table02 td {
    display: block;
    width: 100%;
  }
}
.c-table02 th {
  padding: 17px 0 7px;
  font-weight: 700;
}

.c-table02 td {
  padding: 0 0 20px;
}

@media all and (min-width: 600px) {
  .c-table02 th,
  .c-table02 td {
    font-size: 1.6rem;
  }
  .c-table02 th {
    width: 250px;
    padding: 38px 0 30px;
  }
  .c-table02 td {
    padding: 30px 0 30px 20px;
  }
}/*# sourceMappingURL=style.css.map */