@charset "UTF-8";
/*----------------------------------------------------------

setting

----------------------------------------------------------*/
/*----------------------------------------------------------

mixin

----------------------------------------------------------*/
.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* common_label  */
.common_label {
  background-color: #EFEFEF;
  padding: 36px 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .common_label {
    padding: 27px 35px;
  }
}
.common_label_container {
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
}
.common_label_btnLists {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .common_label_btnLists {
    flex-direction: column;
  }
}
.common_label_btnList {
  width: 280px;
  height: 46px;
  max-width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList {
    width: 360px;
    margin-inline: auto;
  }
}
.common_label_btnList:last-child {
  margin-left: 30px;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList:last-child {
    margin-top: 25px;
    margin-left: 0;
    margin-inline: auto;
  }
}
.common_label_btnLabel {
  width: 90px;
  max-width: 100%;
  margin-left: 25%;
  height: 100%;
  position: relative;
  z-index: 2;
  aspect-ratio: 90/28;
  transition: all 0.3s ease 0s;
}
.common_label_btnLabel img {
  height: auto;
}
.common_label_btnLink {
  color: #0E9352;
  font-weight: 700;
  margin-top: -18px;
  background-color: #FFF;
  padding: 10px;
  display: block;
  transition: all 0.3s ease 0s;
}
.common_label_btnLink:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_label_btnLink:hover + .common_label_btnLabel {
  transform: translateY(2px);
}
.common_label_btnLink::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  right: 23px;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  top: 47%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::before {
    right: 18px;
  }
}
.common_label_btnLink::after {
  content: "";
  position: absolute;
  background: #0E9352;
  border-radius: 23px;
  width: 23px;
  height: 23px;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top;
  top: 50%;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::after {
    right: 10px;
  }
}

/*----------------------------------------------------------

Reset

----------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "icomoon";
  src: url("/assets/fonts/icomoon.eot?1bmekl");
  src: url("/assets/fonts/icomoon.eot?1bmekl#iefix") format("embedded-opentype"), url("/assets/fonts/icomoon.ttf?1bmekl") format("truetype"), url("/assets/fonts/icomoon.woff?1bmekl") format("woff"), url("/assets/fonts/icomoon.svg?1bmekl#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-ico_favorite_circle:before {
  content: "\e908";
}

.icon-ico_mypage:before {
  content: "\e907";
}

.icon-ico_favorite:before {
  content: "\e900";
}

.icon-ico_clock:before {
  content: "\e901";
}

.icon-ico_inquiry:before {
  content: "\e902";
}

.icon-ico_mail:before {
  content: "\e903";
}

.icon-ico_new:before {
  content: "\e904";
}

.icon-ico_search:before {
  content: "\e905";
}

.icon-ico_tell:before {
  content: "\e906";
}

/*----------------------------------------------------------

全体

----------------------------------------------------------*/
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.025em;
  color: #333333;
  text-align: left;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

body * {
  box-sizing: border-box;
  min-width: 0;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1;
}

button {
  background: none;
  padding: 0;
  font-family: inherit;
}
button a {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
}

b {
  font-weight: 700;
}

/*----------------------------------------------------------

Margin

----------------------------------------------------------*/
.mg_0 {
  margin: 0px !important;
}

.mt_0 {
  margin-top: 0px !important;
}

.mr_0 {
  margin-right: 0px !important;
}

.mb_0 {
  margin-bottom: 0px !important;
}

.ml_0 {
  margin-left: 0px !important;
}

.mg_10 {
  margin: 10px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mr_10 {
  margin-right: 10px !important;
}

.mb_10 {
  margin-bottom: 10px !important;
}

.ml_10 {
  margin-left: 10px !important;
}

.mg_20 {
  margin: 20px !important;
}

.mt_20 {
  margin-top: 20px !important;
}

.mr_20 {
  margin-right: 20px !important;
}

.mb_20 {
  margin-bottom: 20px !important;
}

.ml_20 {
  margin-left: 20px !important;
}

.mg_30 {
  margin: 30px !important;
}

.mt_30 {
  margin-top: 30px !important;
}

.mr_30 {
  margin-right: 30px !important;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.ml_30 {
  margin-left: 30px !important;
}

.mg_40 {
  margin: 40px !important;
}

.mt_40 {
  margin-top: 40px !important;
}

.mr_40 {
  margin-right: 40px !important;
}

.mb_40 {
  margin-bottom: 40px !important;
}

.ml_40 {
  margin-left: 40px !important;
}

.mg_50 {
  margin: 50px !important;
}

.mt_50 {
  margin-top: 50px !important;
}

.mr_50 {
  margin-right: 50px !important;
}

.mb_50 {
  margin-bottom: 50px !important;
}

.ml_50 {
  margin-left: 50px !important;
}

.mg_60 {
  margin: 60px !important;
}

.mt_60 {
  margin-top: 60px !important;
}

.mr_60 {
  margin-right: 60px !important;
}

.mb_60 {
  margin-bottom: 60px !important;
}

.ml_60 {
  margin-left: 60px !important;
}

.mg_70 {
  margin: 70px !important;
}

.mt_70 {
  margin-top: 70px !important;
}

.mr_70 {
  margin-right: 70px !important;
}

.mb_70 {
  margin-bottom: 70px !important;
}

.ml_70 {
  margin-left: 70px !important;
}

.mg_80 {
  margin: 80px !important;
}

.mt_80 {
  margin-top: 80px !important;
}

.mr_80 {
  margin-right: 80px !important;
}

.mb_80 {
  margin-bottom: 80px !important;
}

.ml_80 {
  margin-left: 80px !important;
}

.mg_90 {
  margin: 90px !important;
}

.mt_90 {
  margin-top: 90px !important;
}

.mr_90 {
  margin-right: 90px !important;
}

.mb_90 {
  margin-bottom: 90px !important;
}

.ml_90 {
  margin-left: 90px !important;
}

.mg_100 {
  margin: 100px !important;
}

.mt_100 {
  margin-top: 100px !important;
}

.mr_100 {
  margin-right: 100px !important;
}

.mb_100 {
  margin-bottom: 100px !important;
}

.ml_100 {
  margin-left: 100px !important;
}

.mg_110 {
  margin: 110px !important;
}

.mt_110 {
  margin-top: 110px !important;
}

.mr_110 {
  margin-right: 110px !important;
}

.mb_110 {
  margin-bottom: 110px !important;
}

.ml_110 {
  margin-left: 110px !important;
}

.mg_120 {
  margin: 120px !important;
}

.mt_120 {
  margin-top: 120px !important;
}

.mr_120 {
  margin-right: 120px !important;
}

.mb_120 {
  margin-bottom: 120px !important;
}

.ml_120 {
  margin-left: 120px !important;
}

.mg_130 {
  margin: 130px !important;
}

.mt_130 {
  margin-top: 130px !important;
}

.mr_130 {
  margin-right: 130px !important;
}

.mb_130 {
  margin-bottom: 130px !important;
}

.ml_130 {
  margin-left: 130px !important;
}

.mg_140 {
  margin: 140px !important;
}

.mt_140 {
  margin-top: 140px !important;
}

.mr_140 {
  margin-right: 140px !important;
}

.mb_140 {
  margin-bottom: 140px !important;
}

.ml_140 {
  margin-left: 140px !important;
}

.mg_150 {
  margin: 150px !important;
}

.mt_150 {
  margin-top: 150px !important;
}

.mr_150 {
  margin-right: 150px !important;
}

.mb_150 {
  margin-bottom: 150px !important;
}

.ml_150 {
  margin-left: 150px !important;
}

.mg_160 {
  margin: 160px !important;
}

.mt_160 {
  margin-top: 160px !important;
}

.mr_160 {
  margin-right: 160px !important;
}

.mb_160 {
  margin-bottom: 160px !important;
}

.ml_160 {
  margin-left: 160px !important;
}

.mg_170 {
  margin: 170px !important;
}

.mt_170 {
  margin-top: 170px !important;
}

.mr_170 {
  margin-right: 170px !important;
}

.mb_170 {
  margin-bottom: 170px !important;
}

.ml_170 {
  margin-left: 170px !important;
}

.mg_180 {
  margin: 180px !important;
}

.mt_180 {
  margin-top: 180px !important;
}

.mr_180 {
  margin-right: 180px !important;
}

.mb_180 {
  margin-bottom: 180px !important;
}

.ml_180 {
  margin-left: 180px !important;
}

.mg_190 {
  margin: 190px !important;
}

.mt_190 {
  margin-top: 190px !important;
}

.mr_190 {
  margin-right: 190px !important;
}

.mb_190 {
  margin-bottom: 190px !important;
}

.ml_190 {
  margin-left: 190px !important;
}

.mg_200 {
  margin: 200px !important;
}

.mt_200 {
  margin-top: 200px !important;
}

.mr_200 {
  margin-right: 200px !important;
}

.mb_200 {
  margin-bottom: 200px !important;
}

.ml_200 {
  margin-left: 200px !important;
}

@media screen and (max-width: 960px) {
  .mt_md_0 {
    margin-top: 0px !important;
  }
  .mr_md_0 {
    margin-right: 0px !important;
  }
  .mb_md_0 {
    margin-bottom: 0px !important;
  }
  .ml_md_0 {
    margin-left: 0px !important;
  }
  .mt_md_10 {
    margin-top: 10px !important;
  }
  .mr_md_10 {
    margin-right: 10px !important;
  }
  .mb_md_10 {
    margin-bottom: 10px !important;
  }
  .ml_md_10 {
    margin-left: 10px !important;
  }
  .mt_md_20 {
    margin-top: 20px !important;
  }
  .mr_md_20 {
    margin-right: 20px !important;
  }
  .mb_md_20 {
    margin-bottom: 20px !important;
  }
  .ml_md_20 {
    margin-left: 20px !important;
  }
  .mt_md_30 {
    margin-top: 30px !important;
  }
  .mr_md_30 {
    margin-right: 30px !important;
  }
  .mb_md_30 {
    margin-bottom: 30px !important;
  }
  .ml_md_30 {
    margin-left: 30px !important;
  }
  .mt_md_40 {
    margin-top: 40px !important;
  }
  .mr_md_40 {
    margin-right: 40px !important;
  }
  .mb_md_40 {
    margin-bottom: 40px !important;
  }
  .ml_md_40 {
    margin-left: 40px !important;
  }
  .mt_md_50 {
    margin-top: 50px !important;
  }
  .mr_md_50 {
    margin-right: 50px !important;
  }
  .mb_md_50 {
    margin-bottom: 50px !important;
  }
  .ml_md_50 {
    margin-left: 50px !important;
  }
  .mt_md_60 {
    margin-top: 60px !important;
  }
  .mr_md_60 {
    margin-right: 60px !important;
  }
  .mb_md_60 {
    margin-bottom: 60px !important;
  }
  .ml_md_60 {
    margin-left: 60px !important;
  }
  .mt_md_70 {
    margin-top: 70px !important;
  }
  .mr_md_70 {
    margin-right: 70px !important;
  }
  .mb_md_70 {
    margin-bottom: 70px !important;
  }
  .ml_md_70 {
    margin-left: 70px !important;
  }
  .mt_md_80 {
    margin-top: 80px !important;
  }
  .mr_md_80 {
    margin-right: 80px !important;
  }
  .mb_md_80 {
    margin-bottom: 80px !important;
  }
  .ml_md_80 {
    margin-left: 80px !important;
  }
  .mt_md_90 {
    margin-top: 90px !important;
  }
  .mr_md_90 {
    margin-right: 90px !important;
  }
  .mb_md_90 {
    margin-bottom: 90px !important;
  }
  .ml_md_90 {
    margin-left: 90px !important;
  }
  .mt_md_100 {
    margin-top: 100px !important;
  }
  .mr_md_100 {
    margin-right: 100px !important;
  }
  .mb_md_100 {
    margin-bottom: 100px !important;
  }
  .ml_md_100 {
    margin-left: 100px !important;
  }
  .mt_md_110 {
    margin-top: 110px !important;
  }
  .mr_md_110 {
    margin-right: 110px !important;
  }
  .mb_md_110 {
    margin-bottom: 110px !important;
  }
  .ml_md_110 {
    margin-left: 110px !important;
  }
  .mt_md_120 {
    margin-top: 120px !important;
  }
  .mr_md_120 {
    margin-right: 120px !important;
  }
  .mb_md_120 {
    margin-bottom: 120px !important;
  }
  .ml_md_120 {
    margin-left: 120px !important;
  }
  .mt_md_130 {
    margin-top: 130px !important;
  }
  .mr_md_130 {
    margin-right: 130px !important;
  }
  .mb_md_130 {
    margin-bottom: 130px !important;
  }
  .ml_md_130 {
    margin-left: 130px !important;
  }
  .mt_md_140 {
    margin-top: 140px !important;
  }
  .mr_md_140 {
    margin-right: 140px !important;
  }
  .mb_md_140 {
    margin-bottom: 140px !important;
  }
  .ml_md_140 {
    margin-left: 140px !important;
  }
  .mt_md_150 {
    margin-top: 150px !important;
  }
  .mr_md_150 {
    margin-right: 150px !important;
  }
  .mb_md_150 {
    margin-bottom: 150px !important;
  }
  .ml_md_150 {
    margin-left: 150px !important;
  }
  .mt_md_160 {
    margin-top: 160px !important;
  }
  .mr_md_160 {
    margin-right: 160px !important;
  }
  .mb_md_160 {
    margin-bottom: 160px !important;
  }
  .ml_md_160 {
    margin-left: 160px !important;
  }
  .mt_md_170 {
    margin-top: 170px !important;
  }
  .mr_md_170 {
    margin-right: 170px !important;
  }
  .mb_md_170 {
    margin-bottom: 170px !important;
  }
  .ml_md_170 {
    margin-left: 170px !important;
  }
  .mt_md_180 {
    margin-top: 180px !important;
  }
  .mr_md_180 {
    margin-right: 180px !important;
  }
  .mb_md_180 {
    margin-bottom: 180px !important;
  }
  .ml_md_180 {
    margin-left: 180px !important;
  }
  .mt_md_190 {
    margin-top: 190px !important;
  }
  .mr_md_190 {
    margin-right: 190px !important;
  }
  .mb_md_190 {
    margin-bottom: 190px !important;
  }
  .ml_md_190 {
    margin-left: 190px !important;
  }
  .mt_md_200 {
    margin-top: 200px !important;
  }
  .mr_md_200 {
    margin-right: 200px !important;
  }
  .mb_md_200 {
    margin-bottom: 200px !important;
  }
  .ml_md_200 {
    margin-left: 200px !important;
  }
}
@media screen and (max-width: 768px) {
  .mt_0 {
    margin-top: 0vw !important;
  }
  .mr_0 {
    margin-right: 0vw !important;
  }
  .mb_0 {
    margin-bottom: 0vw !important;
  }
  .ml_0 {
    margin-left: 0vw !important;
  }
  .mt_10 {
    margin-top: 1.3333333333vw !important;
  }
  .mr_10 {
    margin-right: 1.3333333333vw !important;
  }
  .mb_10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .ml_10 {
    margin-left: 1.3333333333vw !important;
  }
  .mt_20 {
    margin-top: 2.6666666667vw !important;
  }
  .mr_20 {
    margin-right: 2.6666666667vw !important;
  }
  .mb_20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .ml_20 {
    margin-left: 2.6666666667vw !important;
  }
  .mt_30 {
    margin-top: 4vw !important;
  }
  .mr_30 {
    margin-right: 4vw !important;
  }
  .mb_30 {
    margin-bottom: 4vw !important;
  }
  .ml_30 {
    margin-left: 4vw !important;
  }
  .mt_40 {
    margin-top: 5.3333333333vw !important;
  }
  .mr_40 {
    margin-right: 5.3333333333vw !important;
  }
  .mb_40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .ml_40 {
    margin-left: 5.3333333333vw !important;
  }
  .mt_50 {
    margin-top: 6.6666666667vw !important;
  }
  .mr_50 {
    margin-right: 6.6666666667vw !important;
  }
  .mb_50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .ml_50 {
    margin-left: 6.6666666667vw !important;
  }
  .mt_60 {
    margin-top: 8vw !important;
  }
  .mr_60 {
    margin-right: 8vw !important;
  }
  .mb_60 {
    margin-bottom: 8vw !important;
  }
  .ml_60 {
    margin-left: 8vw !important;
  }
  .mt_70 {
    margin-top: 9.3333333333vw !important;
  }
  .mr_70 {
    margin-right: 9.3333333333vw !important;
  }
  .mb_70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .ml_70 {
    margin-left: 9.3333333333vw !important;
  }
  .mt_80 {
    margin-top: 10.6666666667vw !important;
  }
  .mr_80 {
    margin-right: 10.6666666667vw !important;
  }
  .mb_80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .ml_80 {
    margin-left: 10.6666666667vw !important;
  }
  .mt_90 {
    margin-top: 12vw !important;
  }
  .mr_90 {
    margin-right: 12vw !important;
  }
  .mb_90 {
    margin-bottom: 12vw !important;
  }
  .ml_90 {
    margin-left: 12vw !important;
  }
  .mt_100 {
    margin-top: 13.3333333333vw !important;
  }
  .mr_100 {
    margin-right: 13.3333333333vw !important;
  }
  .mb_100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .ml_100 {
    margin-left: 13.3333333333vw !important;
  }
  .mt_110 {
    margin-top: 14.6666666667vw !important;
  }
  .mr_110 {
    margin-right: 14.6666666667vw !important;
  }
  .mb_110 {
    margin-bottom: 14.6666666667vw !important;
  }
  .ml_110 {
    margin-left: 14.6666666667vw !important;
  }
  .mt_120 {
    margin-top: 16vw !important;
  }
  .mr_120 {
    margin-right: 16vw !important;
  }
  .mb_120 {
    margin-bottom: 16vw !important;
  }
  .ml_120 {
    margin-left: 16vw !important;
  }
  .mt_130 {
    margin-top: 17.3333333333vw !important;
  }
  .mr_130 {
    margin-right: 17.3333333333vw !important;
  }
  .mb_130 {
    margin-bottom: 17.3333333333vw !important;
  }
  .ml_130 {
    margin-left: 17.3333333333vw !important;
  }
  .mt_140 {
    margin-top: 18.6666666667vw !important;
  }
  .mr_140 {
    margin-right: 18.6666666667vw !important;
  }
  .mb_140 {
    margin-bottom: 18.6666666667vw !important;
  }
  .ml_140 {
    margin-left: 18.6666666667vw !important;
  }
  .mt_150 {
    margin-top: 20vw !important;
  }
  .mr_150 {
    margin-right: 20vw !important;
  }
  .mb_150 {
    margin-bottom: 20vw !important;
  }
  .ml_150 {
    margin-left: 20vw !important;
  }
  .mt_160 {
    margin-top: 21.3333333333vw !important;
  }
  .mr_160 {
    margin-right: 21.3333333333vw !important;
  }
  .mb_160 {
    margin-bottom: 21.3333333333vw !important;
  }
  .ml_160 {
    margin-left: 21.3333333333vw !important;
  }
  .mt_170 {
    margin-top: 22.6666666667vw !important;
  }
  .mr_170 {
    margin-right: 22.6666666667vw !important;
  }
  .mb_170 {
    margin-bottom: 22.6666666667vw !important;
  }
  .ml_170 {
    margin-left: 22.6666666667vw !important;
  }
  .mt_180 {
    margin-top: 24vw !important;
  }
  .mr_180 {
    margin-right: 24vw !important;
  }
  .mb_180 {
    margin-bottom: 24vw !important;
  }
  .ml_180 {
    margin-left: 24vw !important;
  }
  .mt_190 {
    margin-top: 25.3333333333vw !important;
  }
  .mr_190 {
    margin-right: 25.3333333333vw !important;
  }
  .mb_190 {
    margin-bottom: 25.3333333333vw !important;
  }
  .ml_190 {
    margin-left: 25.3333333333vw !important;
  }
  .mt_200 {
    margin-top: 26.6666666667vw !important;
  }
  .mr_200 {
    margin-right: 26.6666666667vw !important;
  }
  .mb_200 {
    margin-bottom: 26.6666666667vw !important;
  }
  .ml_200 {
    margin-left: 26.6666666667vw !important;
  }
  .mt_md_0 {
    margin-top: 0vw !important;
  }
  .mr_md_0 {
    margin-right: 0vw !important;
  }
  .mb_md_0 {
    margin-bottom: 0vw !important;
  }
  .ml_md_0 {
    margin-left: 0vw !important;
  }
  .mt_md_10 {
    margin-top: 1.3333333333vw !important;
  }
  .mr_md_10 {
    margin-right: 1.3333333333vw !important;
  }
  .mb_md_10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .ml_md_10 {
    margin-left: 1.3333333333vw !important;
  }
  .mt_md_20 {
    margin-top: 2.6666666667vw !important;
  }
  .mr_md_20 {
    margin-right: 2.6666666667vw !important;
  }
  .mb_md_20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .ml_md_20 {
    margin-left: 2.6666666667vw !important;
  }
  .mt_md_30 {
    margin-top: 4vw !important;
  }
  .mr_md_30 {
    margin-right: 4vw !important;
  }
  .mb_md_30 {
    margin-bottom: 4vw !important;
  }
  .ml_md_30 {
    margin-left: 4vw !important;
  }
  .mt_md_40 {
    margin-top: 5.3333333333vw !important;
  }
  .mr_md_40 {
    margin-right: 5.3333333333vw !important;
  }
  .mb_md_40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .ml_md_40 {
    margin-left: 5.3333333333vw !important;
  }
  .mt_md_50 {
    margin-top: 6.6666666667vw !important;
  }
  .mr_md_50 {
    margin-right: 6.6666666667vw !important;
  }
  .mb_md_50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .ml_md_50 {
    margin-left: 6.6666666667vw !important;
  }
  .mt_md_60 {
    margin-top: 8vw !important;
  }
  .mr_md_60 {
    margin-right: 8vw !important;
  }
  .mb_md_60 {
    margin-bottom: 8vw !important;
  }
  .ml_md_60 {
    margin-left: 8vw !important;
  }
  .mt_md_70 {
    margin-top: 9.3333333333vw !important;
  }
  .mr_md_70 {
    margin-right: 9.3333333333vw !important;
  }
  .mb_md_70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .ml_md_70 {
    margin-left: 9.3333333333vw !important;
  }
  .mt_md_80 {
    margin-top: 10.6666666667vw !important;
  }
  .mr_md_80 {
    margin-right: 10.6666666667vw !important;
  }
  .mb_md_80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .ml_md_80 {
    margin-left: 10.6666666667vw !important;
  }
  .mt_md_90 {
    margin-top: 12vw !important;
  }
  .mr_md_90 {
    margin-right: 12vw !important;
  }
  .mb_md_90 {
    margin-bottom: 12vw !important;
  }
  .ml_md_90 {
    margin-left: 12vw !important;
  }
  .mt_md_100 {
    margin-top: 13.3333333333vw !important;
  }
  .mr_md_100 {
    margin-right: 13.3333333333vw !important;
  }
  .mb_md_100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .ml_md_100 {
    margin-left: 13.3333333333vw !important;
  }
  .mt_md_110 {
    margin-top: 14.6666666667vw !important;
  }
  .mr_md_110 {
    margin-right: 14.6666666667vw !important;
  }
  .mb_md_110 {
    margin-bottom: 14.6666666667vw !important;
  }
  .ml_md_110 {
    margin-left: 14.6666666667vw !important;
  }
  .mt_md_120 {
    margin-top: 16vw !important;
  }
  .mr_md_120 {
    margin-right: 16vw !important;
  }
  .mb_md_120 {
    margin-bottom: 16vw !important;
  }
  .ml_md_120 {
    margin-left: 16vw !important;
  }
  .mt_md_130 {
    margin-top: 17.3333333333vw !important;
  }
  .mr_md_130 {
    margin-right: 17.3333333333vw !important;
  }
  .mb_md_130 {
    margin-bottom: 17.3333333333vw !important;
  }
  .ml_md_130 {
    margin-left: 17.3333333333vw !important;
  }
  .mt_md_140 {
    margin-top: 18.6666666667vw !important;
  }
  .mr_md_140 {
    margin-right: 18.6666666667vw !important;
  }
  .mb_md_140 {
    margin-bottom: 18.6666666667vw !important;
  }
  .ml_md_140 {
    margin-left: 18.6666666667vw !important;
  }
  .mt_md_150 {
    margin-top: 20vw !important;
  }
  .mr_md_150 {
    margin-right: 20vw !important;
  }
  .mb_md_150 {
    margin-bottom: 20vw !important;
  }
  .ml_md_150 {
    margin-left: 20vw !important;
  }
  .mt_md_160 {
    margin-top: 21.3333333333vw !important;
  }
  .mr_md_160 {
    margin-right: 21.3333333333vw !important;
  }
  .mb_md_160 {
    margin-bottom: 21.3333333333vw !important;
  }
  .ml_md_160 {
    margin-left: 21.3333333333vw !important;
  }
  .mt_md_170 {
    margin-top: 22.6666666667vw !important;
  }
  .mr_md_170 {
    margin-right: 22.6666666667vw !important;
  }
  .mb_md_170 {
    margin-bottom: 22.6666666667vw !important;
  }
  .ml_md_170 {
    margin-left: 22.6666666667vw !important;
  }
  .mt_md_180 {
    margin-top: 24vw !important;
  }
  .mr_md_180 {
    margin-right: 24vw !important;
  }
  .mb_md_180 {
    margin-bottom: 24vw !important;
  }
  .ml_md_180 {
    margin-left: 24vw !important;
  }
  .mt_md_190 {
    margin-top: 25.3333333333vw !important;
  }
  .mr_md_190 {
    margin-right: 25.3333333333vw !important;
  }
  .mb_md_190 {
    margin-bottom: 25.3333333333vw !important;
  }
  .ml_md_190 {
    margin-left: 25.3333333333vw !important;
  }
  .mt_md_200 {
    margin-top: 26.6666666667vw !important;
  }
  .mr_md_200 {
    margin-right: 26.6666666667vw !important;
  }
  .mb_md_200 {
    margin-bottom: 26.6666666667vw !important;
  }
  .ml_md_200 {
    margin-left: 26.6666666667vw !important;
  }
  .mt_sm_0 {
    margin-top: 0vw !important;
  }
  .mr_sm_0 {
    margin-right: 0vw !important;
  }
  .mb_sm_0 {
    margin-bottom: 0vw !important;
  }
  .ml_sm_0 {
    margin-left: 0vw !important;
  }
  .mt_sm_10 {
    margin-top: 1.3333333333vw !important;
  }
  .mr_sm_10 {
    margin-right: 1.3333333333vw !important;
  }
  .mb_sm_10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .ml_sm_10 {
    margin-left: 1.3333333333vw !important;
  }
  .mt_sm_20 {
    margin-top: 2.6666666667vw !important;
  }
  .mr_sm_20 {
    margin-right: 2.6666666667vw !important;
  }
  .mb_sm_20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .ml_sm_20 {
    margin-left: 2.6666666667vw !important;
  }
  .mt_sm_30 {
    margin-top: 4vw !important;
  }
  .mr_sm_30 {
    margin-right: 4vw !important;
  }
  .mb_sm_30 {
    margin-bottom: 4vw !important;
  }
  .ml_sm_30 {
    margin-left: 4vw !important;
  }
  .mt_sm_40 {
    margin-top: 5.3333333333vw !important;
  }
  .mr_sm_40 {
    margin-right: 5.3333333333vw !important;
  }
  .mb_sm_40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .ml_sm_40 {
    margin-left: 5.3333333333vw !important;
  }
  .mt_sm_50 {
    margin-top: 6.6666666667vw !important;
  }
  .mr_sm_50 {
    margin-right: 6.6666666667vw !important;
  }
  .mb_sm_50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .ml_sm_50 {
    margin-left: 6.6666666667vw !important;
  }
  .mt_sm_60 {
    margin-top: 8vw !important;
  }
  .mr_sm_60 {
    margin-right: 8vw !important;
  }
  .mb_sm_60 {
    margin-bottom: 8vw !important;
  }
  .ml_sm_60 {
    margin-left: 8vw !important;
  }
  .mt_sm_70 {
    margin-top: 9.3333333333vw !important;
  }
  .mr_sm_70 {
    margin-right: 9.3333333333vw !important;
  }
  .mb_sm_70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .ml_sm_70 {
    margin-left: 9.3333333333vw !important;
  }
  .mt_sm_80 {
    margin-top: 10.6666666667vw !important;
  }
  .mr_sm_80 {
    margin-right: 10.6666666667vw !important;
  }
  .mb_sm_80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .ml_sm_80 {
    margin-left: 10.6666666667vw !important;
  }
  .mt_sm_90 {
    margin-top: 12vw !important;
  }
  .mr_sm_90 {
    margin-right: 12vw !important;
  }
  .mb_sm_90 {
    margin-bottom: 12vw !important;
  }
  .ml_sm_90 {
    margin-left: 12vw !important;
  }
  .mt_sm_100 {
    margin-top: 13.3333333333vw !important;
  }
  .mr_sm_100 {
    margin-right: 13.3333333333vw !important;
  }
  .mb_sm_100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .ml_sm_100 {
    margin-left: 13.3333333333vw !important;
  }
  .mt_sm_110 {
    margin-top: 14.6666666667vw !important;
  }
  .mr_sm_110 {
    margin-right: 14.6666666667vw !important;
  }
  .mb_sm_110 {
    margin-bottom: 14.6666666667vw !important;
  }
  .ml_sm_110 {
    margin-left: 14.6666666667vw !important;
  }
  .mt_sm_120 {
    margin-top: 16vw !important;
  }
  .mr_sm_120 {
    margin-right: 16vw !important;
  }
  .mb_sm_120 {
    margin-bottom: 16vw !important;
  }
  .ml_sm_120 {
    margin-left: 16vw !important;
  }
  .mt_sm_130 {
    margin-top: 17.3333333333vw !important;
  }
  .mr_sm_130 {
    margin-right: 17.3333333333vw !important;
  }
  .mb_sm_130 {
    margin-bottom: 17.3333333333vw !important;
  }
  .ml_sm_130 {
    margin-left: 17.3333333333vw !important;
  }
  .mt_sm_140 {
    margin-top: 18.6666666667vw !important;
  }
  .mr_sm_140 {
    margin-right: 18.6666666667vw !important;
  }
  .mb_sm_140 {
    margin-bottom: 18.6666666667vw !important;
  }
  .ml_sm_140 {
    margin-left: 18.6666666667vw !important;
  }
  .mt_sm_150 {
    margin-top: 20vw !important;
  }
  .mr_sm_150 {
    margin-right: 20vw !important;
  }
  .mb_sm_150 {
    margin-bottom: 20vw !important;
  }
  .ml_sm_150 {
    margin-left: 20vw !important;
  }
  .mt_sm_160 {
    margin-top: 21.3333333333vw !important;
  }
  .mr_sm_160 {
    margin-right: 21.3333333333vw !important;
  }
  .mb_sm_160 {
    margin-bottom: 21.3333333333vw !important;
  }
  .ml_sm_160 {
    margin-left: 21.3333333333vw !important;
  }
  .mt_sm_170 {
    margin-top: 22.6666666667vw !important;
  }
  .mr_sm_170 {
    margin-right: 22.6666666667vw !important;
  }
  .mb_sm_170 {
    margin-bottom: 22.6666666667vw !important;
  }
  .ml_sm_170 {
    margin-left: 22.6666666667vw !important;
  }
  .mt_sm_180 {
    margin-top: 24vw !important;
  }
  .mr_sm_180 {
    margin-right: 24vw !important;
  }
  .mb_sm_180 {
    margin-bottom: 24vw !important;
  }
  .ml_sm_180 {
    margin-left: 24vw !important;
  }
  .mt_sm_190 {
    margin-top: 25.3333333333vw !important;
  }
  .mr_sm_190 {
    margin-right: 25.3333333333vw !important;
  }
  .mb_sm_190 {
    margin-bottom: 25.3333333333vw !important;
  }
  .ml_sm_190 {
    margin-left: 25.3333333333vw !important;
  }
  .mt_sm_200 {
    margin-top: 26.6666666667vw !important;
  }
  .mr_sm_200 {
    margin-right: 26.6666666667vw !important;
  }
  .mb_sm_200 {
    margin-bottom: 26.6666666667vw !important;
  }
  .ml_sm_200 {
    margin-left: 26.6666666667vw !important;
  }
}
.m_auto {
  margin: auto;
}

.ml_auto {
  margin-left: auto;
}

.mr_auto {
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  .m_md_auto {
    margin: auto;
  }
  .ml_md_auto {
    margin-left: auto;
  }
  .mr_md_uto {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .m_sm_auto {
    margin: auto;
  }
  .ml_sm_auto {
    margin-left: auto;
  }
  .mr_sm_uto {
    margin-right: auto;
  }
}
/*----------------------------------------------------------

Padding

----------------------------------------------------------*/
.pd_0 {
  padding: 0px !important;
}

.pt_0 {
  padding-top: 0px !important;
}

.pr_0 {
  padding-right: 0px !important;
}

.pb_0 {
  padding-bottom: 0px !important;
}

.pl_0 {
  padding-left: 0px !important;
}

.pd_10 {
  padding: 10px !important;
}

.pt_10 {
  padding-top: 10px !important;
}

.pr_10 {
  padding-right: 10px !important;
}

.pb_10 {
  padding-bottom: 10px !important;
}

.pl_10 {
  padding-left: 10px !important;
}

.pd_20 {
  padding: 20px !important;
}

.pt_20 {
  padding-top: 20px !important;
}

.pr_20 {
  padding-right: 20px !important;
}

.pb_20 {
  padding-bottom: 20px !important;
}

.pl_20 {
  padding-left: 20px !important;
}

.pd_30 {
  padding: 30px !important;
}

.pt_30 {
  padding-top: 30px !important;
}

.pr_30 {
  padding-right: 30px !important;
}

.pb_30 {
  padding-bottom: 30px !important;
}

.pl_30 {
  padding-left: 30px !important;
}

.pd_40 {
  padding: 40px !important;
}

.pt_40 {
  padding-top: 40px !important;
}

.pr_40 {
  padding-right: 40px !important;
}

.pb_40 {
  padding-bottom: 40px !important;
}

.pl_40 {
  padding-left: 40px !important;
}

.pd_50 {
  padding: 50px !important;
}

.pt_50 {
  padding-top: 50px !important;
}

.pr_50 {
  padding-right: 50px !important;
}

.pb_50 {
  padding-bottom: 50px !important;
}

.pl_50 {
  padding-left: 50px !important;
}

.pd_60 {
  padding: 60px !important;
}

.pt_60 {
  padding-top: 60px !important;
}

.pr_60 {
  padding-right: 60px !important;
}

.pb_60 {
  padding-bottom: 60px !important;
}

.pl_60 {
  padding-left: 60px !important;
}

.pd_70 {
  padding: 70px !important;
}

.pt_70 {
  padding-top: 70px !important;
}

.pr_70 {
  padding-right: 70px !important;
}

.pb_70 {
  padding-bottom: 70px !important;
}

.pl_70 {
  padding-left: 70px !important;
}

.pd_80 {
  padding: 80px !important;
}

.pt_80 {
  padding-top: 80px !important;
}

.pr_80 {
  padding-right: 80px !important;
}

.pb_80 {
  padding-bottom: 80px !important;
}

.pl_80 {
  padding-left: 80px !important;
}

.pd_90 {
  padding: 90px !important;
}

.pt_90 {
  padding-top: 90px !important;
}

.pr_90 {
  padding-right: 90px !important;
}

.pb_90 {
  padding-bottom: 90px !important;
}

.pl_90 {
  padding-left: 90px !important;
}

.pd_100 {
  padding: 100px !important;
}

.pt_100 {
  padding-top: 100px !important;
}

.pr_100 {
  padding-right: 100px !important;
}

.pb_100 {
  padding-bottom: 100px !important;
}

.pl_100 {
  padding-left: 100px !important;
}

.pd_110 {
  padding: 110px !important;
}

.pt_110 {
  padding-top: 110px !important;
}

.pr_110 {
  padding-right: 110px !important;
}

.pb_110 {
  padding-bottom: 110px !important;
}

.pl_110 {
  padding-left: 110px !important;
}

.pd_120 {
  padding: 120px !important;
}

.pt_120 {
  padding-top: 120px !important;
}

.pr_120 {
  padding-right: 120px !important;
}

.pb_120 {
  padding-bottom: 120px !important;
}

.pl_120 {
  padding-left: 120px !important;
}

.pd_130 {
  padding: 130px !important;
}

.pt_130 {
  padding-top: 130px !important;
}

.pr_130 {
  padding-right: 130px !important;
}

.pb_130 {
  padding-bottom: 130px !important;
}

.pl_130 {
  padding-left: 130px !important;
}

.pd_140 {
  padding: 140px !important;
}

.pt_140 {
  padding-top: 140px !important;
}

.pr_140 {
  padding-right: 140px !important;
}

.pb_140 {
  padding-bottom: 140px !important;
}

.pl_140 {
  padding-left: 140px !important;
}

.pd_150 {
  padding: 150px !important;
}

.pt_150 {
  padding-top: 150px !important;
}

.pr_150 {
  padding-right: 150px !important;
}

.pb_150 {
  padding-bottom: 150px !important;
}

.pl_150 {
  padding-left: 150px !important;
}

.pd_160 {
  padding: 160px !important;
}

.pt_160 {
  padding-top: 160px !important;
}

.pr_160 {
  padding-right: 160px !important;
}

.pb_160 {
  padding-bottom: 160px !important;
}

.pl_160 {
  padding-left: 160px !important;
}

.pd_170 {
  padding: 170px !important;
}

.pt_170 {
  padding-top: 170px !important;
}

.pr_170 {
  padding-right: 170px !important;
}

.pb_170 {
  padding-bottom: 170px !important;
}

.pl_170 {
  padding-left: 170px !important;
}

.pd_180 {
  padding: 180px !important;
}

.pt_180 {
  padding-top: 180px !important;
}

.pr_180 {
  padding-right: 180px !important;
}

.pb_180 {
  padding-bottom: 180px !important;
}

.pl_180 {
  padding-left: 180px !important;
}

.pd_190 {
  padding: 190px !important;
}

.pt_190 {
  padding-top: 190px !important;
}

.pr_190 {
  padding-right: 190px !important;
}

.pb_190 {
  padding-bottom: 190px !important;
}

.pl_190 {
  padding-left: 190px !important;
}

.pd_200 {
  padding: 200px !important;
}

.pt_200 {
  padding-top: 200px !important;
}

.pr_200 {
  padding-right: 200px !important;
}

.pb_200 {
  padding-bottom: 200px !important;
}

.pl_200 {
  padding-left: 200px !important;
}

@media screen and (max-width: 960px) {
  .pt_md_0 {
    padding-top: 0px !important;
  }
  .pr_md_0 {
    padding-right: 0px !important;
  }
  .pb_md_0 {
    padding-bottom: 0px !important;
  }
  .pl_md_0 {
    padding-left: 0px !important;
  }
  .pt_md_10 {
    padding-top: 10px !important;
  }
  .pr_md_10 {
    padding-right: 10px !important;
  }
  .pb_md_10 {
    padding-bottom: 10px !important;
  }
  .pl_md_10 {
    padding-left: 10px !important;
  }
  .pt_md_20 {
    padding-top: 20px !important;
  }
  .pr_md_20 {
    padding-right: 20px !important;
  }
  .pb_md_20 {
    padding-bottom: 20px !important;
  }
  .pl_md_20 {
    padding-left: 20px !important;
  }
  .pt_md_30 {
    padding-top: 30px !important;
  }
  .pr_md_30 {
    padding-right: 30px !important;
  }
  .pb_md_30 {
    padding-bottom: 30px !important;
  }
  .pl_md_30 {
    padding-left: 30px !important;
  }
  .pt_md_40 {
    padding-top: 40px !important;
  }
  .pr_md_40 {
    padding-right: 40px !important;
  }
  .pb_md_40 {
    padding-bottom: 40px !important;
  }
  .pl_md_40 {
    padding-left: 40px !important;
  }
  .pt_md_50 {
    padding-top: 50px !important;
  }
  .pr_md_50 {
    padding-right: 50px !important;
  }
  .pb_md_50 {
    padding-bottom: 50px !important;
  }
  .pl_md_50 {
    padding-left: 50px !important;
  }
  .pt_md_60 {
    padding-top: 60px !important;
  }
  .pr_md_60 {
    padding-right: 60px !important;
  }
  .pb_md_60 {
    padding-bottom: 60px !important;
  }
  .pl_md_60 {
    padding-left: 60px !important;
  }
  .pt_md_70 {
    padding-top: 70px !important;
  }
  .pr_md_70 {
    padding-right: 70px !important;
  }
  .pb_md_70 {
    padding-bottom: 70px !important;
  }
  .pl_md_70 {
    padding-left: 70px !important;
  }
  .pt_md_80 {
    padding-top: 80px !important;
  }
  .pr_md_80 {
    padding-right: 80px !important;
  }
  .pb_md_80 {
    padding-bottom: 80px !important;
  }
  .pl_md_80 {
    padding-left: 80px !important;
  }
  .pt_md_90 {
    padding-top: 90px !important;
  }
  .pr_md_90 {
    padding-right: 90px !important;
  }
  .pb_md_90 {
    padding-bottom: 90px !important;
  }
  .pl_md_90 {
    padding-left: 90px !important;
  }
  .pt_md_100 {
    padding-top: 100px !important;
  }
  .pr_md_100 {
    padding-right: 100px !important;
  }
  .pb_md_100 {
    padding-bottom: 100px !important;
  }
  .pl_md_100 {
    padding-left: 100px !important;
  }
}
@media screen and (max-width: 768px) {
  .pt_0 {
    padding-top: 0vw !important;
  }
  .pr_0 {
    padding-right: 0vw !important;
  }
  .pb_0 {
    padding-bottom: 0vw !important;
  }
  .pl_0 {
    padding-left: 0vw !important;
  }
  .pt_10 {
    padding-top: 1.3333333333vw !important;
  }
  .pr_10 {
    padding-right: 1.3333333333vw !important;
  }
  .pb_10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .pl_10 {
    padding-left: 1.3333333333vw !important;
  }
  .pt_20 {
    padding-top: 2.6666666667vw !important;
  }
  .pr_20 {
    padding-right: 2.6666666667vw !important;
  }
  .pb_20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .pl_20 {
    padding-left: 2.6666666667vw !important;
  }
  .pt_30 {
    padding-top: 4vw !important;
  }
  .pr_30 {
    padding-right: 4vw !important;
  }
  .pb_30 {
    padding-bottom: 4vw !important;
  }
  .pl_30 {
    padding-left: 4vw !important;
  }
  .pt_40 {
    padding-top: 5.3333333333vw !important;
  }
  .pr_40 {
    padding-right: 5.3333333333vw !important;
  }
  .pb_40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .pl_40 {
    padding-left: 5.3333333333vw !important;
  }
  .pt_50 {
    padding-top: 6.6666666667vw !important;
  }
  .pr_50 {
    padding-right: 6.6666666667vw !important;
  }
  .pb_50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .pl_50 {
    padding-left: 6.6666666667vw !important;
  }
  .pt_60 {
    padding-top: 8vw !important;
  }
  .pr_60 {
    padding-right: 8vw !important;
  }
  .pb_60 {
    padding-bottom: 8vw !important;
  }
  .pl_60 {
    padding-left: 8vw !important;
  }
  .pt_70 {
    padding-top: 9.3333333333vw !important;
  }
  .pr_70 {
    padding-right: 9.3333333333vw !important;
  }
  .pb_70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .pl_70 {
    padding-left: 9.3333333333vw !important;
  }
  .pt_80 {
    padding-top: 10.6666666667vw !important;
  }
  .pr_80 {
    padding-right: 10.6666666667vw !important;
  }
  .pb_80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .pl_80 {
    padding-left: 10.6666666667vw !important;
  }
  .pt_90 {
    padding-top: 12vw !important;
  }
  .pr_90 {
    padding-right: 12vw !important;
  }
  .pb_90 {
    padding-bottom: 12vw !important;
  }
  .pl_90 {
    padding-left: 12vw !important;
  }
  .pt_100 {
    padding-top: 13.3333333333vw !important;
  }
  .pr_100 {
    padding-right: 13.3333333333vw !important;
  }
  .pb_100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .pl_100 {
    padding-left: 13.3333333333vw !important;
  }
  .pt_md_0 {
    padding-top: 0vw !important;
  }
  .pr_md_0 {
    padding-right: 0vw !important;
  }
  .pb_md_0 {
    padding-bottom: 0vw !important;
  }
  .pl_md_0 {
    padding-left: 0vw !important;
  }
  .pt_md_10 {
    padding-top: 1.3333333333vw !important;
  }
  .pr_md_10 {
    padding-right: 1.3333333333vw !important;
  }
  .pb_md_10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .pl_md_10 {
    padding-left: 1.3333333333vw !important;
  }
  .pt_md_20 {
    padding-top: 2.6666666667vw !important;
  }
  .pr_md_20 {
    padding-right: 2.6666666667vw !important;
  }
  .pb_md_20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .pl_md_20 {
    padding-left: 2.6666666667vw !important;
  }
  .pt_md_30 {
    padding-top: 4vw !important;
  }
  .pr_md_30 {
    padding-right: 4vw !important;
  }
  .pb_md_30 {
    padding-bottom: 4vw !important;
  }
  .pl_md_30 {
    padding-left: 4vw !important;
  }
  .pt_md_40 {
    padding-top: 5.3333333333vw !important;
  }
  .pr_md_40 {
    padding-right: 5.3333333333vw !important;
  }
  .pb_md_40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .pl_md_40 {
    padding-left: 5.3333333333vw !important;
  }
  .pt_md_50 {
    padding-top: 6.6666666667vw !important;
  }
  .pr_md_50 {
    padding-right: 6.6666666667vw !important;
  }
  .pb_md_50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .pl_md_50 {
    padding-left: 6.6666666667vw !important;
  }
  .pt_md_60 {
    padding-top: 8vw !important;
  }
  .pr_md_60 {
    padding-right: 8vw !important;
  }
  .pb_md_60 {
    padding-bottom: 8vw !important;
  }
  .pl_md_60 {
    padding-left: 8vw !important;
  }
  .pt_md_70 {
    padding-top: 9.3333333333vw !important;
  }
  .pr_md_70 {
    padding-right: 9.3333333333vw !important;
  }
  .pb_md_70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .pl_md_70 {
    padding-left: 9.3333333333vw !important;
  }
  .pt_md_80 {
    padding-top: 10.6666666667vw !important;
  }
  .pr_md_80 {
    padding-right: 10.6666666667vw !important;
  }
  .pb_md_80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .pl_md_80 {
    padding-left: 10.6666666667vw !important;
  }
  .pt_md_90 {
    padding-top: 12vw !important;
  }
  .pr_md_90 {
    padding-right: 12vw !important;
  }
  .pb_md_90 {
    padding-bottom: 12vw !important;
  }
  .pl_md_90 {
    padding-left: 12vw !important;
  }
  .pt_md_100 {
    padding-top: 13.3333333333vw !important;
  }
  .pr_md_100 {
    padding-right: 13.3333333333vw !important;
  }
  .pb_md_100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .pl_md_100 {
    padding-left: 13.3333333333vw !important;
  }
  .pt_sm_0 {
    padding-top: 0vw !important;
  }
  .pr_sm_0 {
    padding-right: 0vw !important;
  }
  .pb_sm_0 {
    padding-bottom: 0vw !important;
  }
  .pl_sm_0 {
    padding-left: 0vw !important;
  }
  .pt_sm_10 {
    padding-top: 1.3333333333vw !important;
  }
  .pr_sm_10 {
    padding-right: 1.3333333333vw !important;
  }
  .pb_sm_10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .pl_sm_10 {
    padding-left: 1.3333333333vw !important;
  }
  .pt_sm_20 {
    padding-top: 2.6666666667vw !important;
  }
  .pr_sm_20 {
    padding-right: 2.6666666667vw !important;
  }
  .pb_sm_20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .pl_sm_20 {
    padding-left: 2.6666666667vw !important;
  }
  .pt_sm_30 {
    padding-top: 4vw !important;
  }
  .pr_sm_30 {
    padding-right: 4vw !important;
  }
  .pb_sm_30 {
    padding-bottom: 4vw !important;
  }
  .pl_sm_30 {
    padding-left: 4vw !important;
  }
  .pt_sm_40 {
    padding-top: 5.3333333333vw !important;
  }
  .pr_sm_40 {
    padding-right: 5.3333333333vw !important;
  }
  .pb_sm_40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .pl_sm_40 {
    padding-left: 5.3333333333vw !important;
  }
  .pt_sm_50 {
    padding-top: 6.6666666667vw !important;
  }
  .pr_sm_50 {
    padding-right: 6.6666666667vw !important;
  }
  .pb_sm_50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .pl_sm_50 {
    padding-left: 6.6666666667vw !important;
  }
  .pt_sm_60 {
    padding-top: 8vw !important;
  }
  .pr_sm_60 {
    padding-right: 8vw !important;
  }
  .pb_sm_60 {
    padding-bottom: 8vw !important;
  }
  .pl_sm_60 {
    padding-left: 8vw !important;
  }
  .pt_sm_70 {
    padding-top: 9.3333333333vw !important;
  }
  .pr_sm_70 {
    padding-right: 9.3333333333vw !important;
  }
  .pb_sm_70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .pl_sm_70 {
    padding-left: 9.3333333333vw !important;
  }
  .pt_sm_80 {
    padding-top: 10.6666666667vw !important;
  }
  .pr_sm_80 {
    padding-right: 10.6666666667vw !important;
  }
  .pb_sm_80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .pl_sm_80 {
    padding-left: 10.6666666667vw !important;
  }
  .pt_sm_90 {
    padding-top: 12vw !important;
  }
  .pr_sm_90 {
    padding-right: 12vw !important;
  }
  .pb_sm_90 {
    padding-bottom: 12vw !important;
  }
  .pl_sm_90 {
    padding-left: 12vw !important;
  }
  .pt_sm_100 {
    padding-top: 13.3333333333vw !important;
  }
  .pr_sm_100 {
    padding-right: 13.3333333333vw !important;
  }
  .pb_sm_100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .pl_sm_100 {
    padding-left: 13.3333333333vw !important;
  }
}
/*----------------------------------------------------------

Float

----------------------------------------------------------*/
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  display: block;
  margin: 0px auto;
  clear: both;
}

img.alignleft {
  margin: 0 1em 1em 0;
}

img.alignright {
  margin: 0 0 1em 1em;
}

/*----------------------------------------------------------

Font

----------------------------------------------------------*/
/* font-size */
.fs_10 {
  font-size: 10px !important;
  font-size: 1rem !important;
}

.fs_11 {
  font-size: 11px !important;
  font-size: 1.1rem !important;
}

.fs_12 {
  font-size: 12px !important;
  font-size: 1.2rem !important;
}

.fs_13 {
  font-size: 13px !important;
  font-size: 1.3rem !important;
}

.fs_14 {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.fs_15 {
  font-size: 15px !important;
  font-size: 1.5rem !important;
}

.fs_16 {
  font-size: 16px !important;
  font-size: 1.6rem !important;
}

.fs_17 {
  font-size: 17px !important;
  font-size: 1.7rem !important;
}

.fs_18 {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

.fs_19 {
  font-size: 19px !important;
  font-size: 1.9rem !important;
}

.fs_20 {
  font-size: 20px !important;
  font-size: 2rem !important;
}

.fs_21 {
  font-size: 21px !important;
  font-size: 2.1rem !important;
}

.fs_22 {
  font-size: 22px !important;
  font-size: 2.2rem !important;
}

.fs_23 {
  font-size: 23px !important;
  font-size: 2.3rem !important;
}

.fs_24 {
  font-size: 24px !important;
  font-size: 2.4rem !important;
}

.fs_25 {
  font-size: 25px !important;
  font-size: 2.5rem !important;
}

.fs_26 {
  font-size: 26px !important;
  font-size: 2.6rem !important;
}

.fs_27 {
  font-size: 27px !important;
  font-size: 2.7rem !important;
}

.fs_28 {
  font-size: 28px !important;
  font-size: 2.8rem !important;
}

.fs_29 {
  font-size: 29px !important;
  font-size: 2.9rem !important;
}

.fs_30 {
  font-size: 30px !important;
  font-size: 3rem !important;
}

.fs_31 {
  font-size: 31px !important;
  font-size: 3.1rem !important;
}

.fs_32 {
  font-size: 32px !important;
  font-size: 3.2rem !important;
}

.fs_33 {
  font-size: 33px !important;
  font-size: 3.3rem !important;
}

.fs_34 {
  font-size: 34px !important;
  font-size: 3.4rem !important;
}

.fs_35 {
  font-size: 35px !important;
  font-size: 3.5rem !important;
}

.fs_36 {
  font-size: 36px !important;
  font-size: 3.6rem !important;
}

.fs_37 {
  font-size: 37px !important;
  font-size: 3.7rem !important;
}

.fs_38 {
  font-size: 38px !important;
  font-size: 3.8rem !important;
}

.fs_39 {
  font-size: 39px !important;
  font-size: 3.9rem !important;
}

.fs_40 {
  font-size: 40px !important;
  font-size: 4rem !important;
}

@media screen and (max-width: 960px) {
  .fs_md_10 {
    font-size: 10px !important;
    font-size: 1rem !important;
  }
  .fs_md_11 {
    font-size: 11px !important;
    font-size: 1.1rem !important;
  }
  .fs_md_12 {
    font-size: 12px !important;
    font-size: 1.2rem !important;
  }
  .fs_md_13 {
    font-size: 13px !important;
    font-size: 1.3rem !important;
  }
  .fs_md_14 {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
  .fs_md_15 {
    font-size: 15px !important;
    font-size: 1.5rem !important;
  }
  .fs_md_16 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
  .fs_md_17 {
    font-size: 17px !important;
    font-size: 1.7rem !important;
  }
  .fs_md_18 {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
  .fs_md_19 {
    font-size: 19px !important;
    font-size: 1.9rem !important;
  }
  .fs_md_20 {
    font-size: 20px !important;
    font-size: 2rem !important;
  }
  .fs_md_21 {
    font-size: 21px !important;
    font-size: 2.1rem !important;
  }
  .fs_md_22 {
    font-size: 22px !important;
    font-size: 2.2rem !important;
  }
  .fs_md_23 {
    font-size: 23px !important;
    font-size: 2.3rem !important;
  }
  .fs_md_24 {
    font-size: 24px !important;
    font-size: 2.4rem !important;
  }
  .fs_md_25 {
    font-size: 25px !important;
    font-size: 2.5rem !important;
  }
  .fs_md_26 {
    font-size: 26px !important;
    font-size: 2.6rem !important;
  }
  .fs_md_27 {
    font-size: 27px !important;
    font-size: 2.7rem !important;
  }
  .fs_md_28 {
    font-size: 28px !important;
    font-size: 2.8rem !important;
  }
  .fs_md_29 {
    font-size: 29px !important;
    font-size: 2.9rem !important;
  }
  .fs_md_30 {
    font-size: 30px !important;
    font-size: 3rem !important;
  }
  .fs_md_31 {
    font-size: 31px !important;
    font-size: 3.1rem !important;
  }
  .fs_md_32 {
    font-size: 32px !important;
    font-size: 3.2rem !important;
  }
  .fs_md_33 {
    font-size: 33px !important;
    font-size: 3.3rem !important;
  }
  .fs_md_34 {
    font-size: 34px !important;
    font-size: 3.4rem !important;
  }
  .fs_md_35 {
    font-size: 35px !important;
    font-size: 3.5rem !important;
  }
  .fs_md_36 {
    font-size: 36px !important;
    font-size: 3.6rem !important;
  }
  .fs_md_37 {
    font-size: 37px !important;
    font-size: 3.7rem !important;
  }
  .fs_md_38 {
    font-size: 38px !important;
    font-size: 3.8rem !important;
  }
  .fs_md_39 {
    font-size: 39px !important;
    font-size: 3.9rem !important;
  }
  .fs_md_40 {
    font-size: 40px !important;
    font-size: 4rem !important;
  }
}
@media screen and (max-width: 768px) {
  .fs_sm_10 {
    font-size: 10px !important;
    font-size: 1rem !important;
  }
  .fs_sm_11 {
    font-size: 11px !important;
    font-size: 1.1rem !important;
  }
  .fs_sm_12 {
    font-size: 12px !important;
    font-size: 1.2rem !important;
  }
  .fs_sm_13 {
    font-size: 13px !important;
    font-size: 1.3rem !important;
  }
  .fs_sm_14 {
    font-size: 14px !important;
    font-size: 1.4rem !important;
  }
  .fs_sm_15 {
    font-size: 15px !important;
    font-size: 1.5rem !important;
  }
  .fs_sm_16 {
    font-size: 16px !important;
    font-size: 1.6rem !important;
  }
  .fs_sm_17 {
    font-size: 17px !important;
    font-size: 1.7rem !important;
  }
  .fs_sm_18 {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
  .fs_sm_19 {
    font-size: 19px !important;
    font-size: 1.9rem !important;
  }
  .fs_sm_20 {
    font-size: 20px !important;
    font-size: 2rem !important;
  }
  .fs_sm_21 {
    font-size: 21px !important;
    font-size: 2.1rem !important;
  }
  .fs_sm_22 {
    font-size: 22px !important;
    font-size: 2.2rem !important;
  }
  .fs_sm_23 {
    font-size: 23px !important;
    font-size: 2.3rem !important;
  }
  .fs_sm_24 {
    font-size: 24px !important;
    font-size: 2.4rem !important;
  }
  .fs_sm_25 {
    font-size: 25px !important;
    font-size: 2.5rem !important;
  }
  .fs_sm_26 {
    font-size: 26px !important;
    font-size: 2.6rem !important;
  }
  .fs_sm_27 {
    font-size: 27px !important;
    font-size: 2.7rem !important;
  }
  .fs_sm_28 {
    font-size: 28px !important;
    font-size: 2.8rem !important;
  }
  .fs_sm_29 {
    font-size: 29px !important;
    font-size: 2.9rem !important;
  }
  .fs_sm_30 {
    font-size: 30px !important;
    font-size: 3rem !important;
  }
  .fs_sm_31 {
    font-size: 31px !important;
    font-size: 3.1rem !important;
  }
  .fs_sm_32 {
    font-size: 32px !important;
    font-size: 3.2rem !important;
  }
  .fs_sm_33 {
    font-size: 33px !important;
    font-size: 3.3rem !important;
  }
  .fs_sm_34 {
    font-size: 34px !important;
    font-size: 3.4rem !important;
  }
  .fs_sm_35 {
    font-size: 35px !important;
    font-size: 3.5rem !important;
  }
  .fs_sm_36 {
    font-size: 36px !important;
    font-size: 3.6rem !important;
  }
  .fs_sm_37 {
    font-size: 37px !important;
    font-size: 3.7rem !important;
  }
  .fs_sm_38 {
    font-size: 38px !important;
    font-size: 3.8rem !important;
  }
  .fs_sm_39 {
    font-size: 39px !important;
    font-size: 3.9rem !important;
  }
  .fs_sm_40 {
    font-size: 40px !important;
    font-size: 4rem !important;
  }
}
/* font-weight */
/* font-weight */
.fw_bold {
  font-weight: bold !important;
}

.fw_medium {
  font-weight: normal !important;
}

.fw_normal {
  font-weight: normal !important;
}

@media screen and (max-width: 960px) {
  .fw_md_bold {
    font-weight: bold !important;
  }
  .fw_md_medium {
    font-weight: normal !important;
  }
  .fw_md_normal {
    font-weight: normal !important;
  }
}
@media screen and (max-width: 768px) {
  .fw_sm_bold {
    font-weight: bold !important;
  }
  .fw_sm_medium {
    font-weight: normal !important;
  }
  .fw_sm_normal {
    font-weight: normal !important;
  }
}
/* line-height */
.lh_10 {
  line-height: 1 !important;
}

.lh_11 {
  line-height: 1.1 !important;
}

.lh_12 {
  line-height: 1.2 !important;
}

.lh_13 {
  line-height: 1.3 !important;
}

.lh_14 {
  line-height: 1.4 !important;
}

.lh_15 {
  line-height: 1.5 !important;
}

.lh_16 {
  line-height: 1.6 !important;
}

.lh_17 {
  line-height: 1.7 !important;
}

.lh_18 {
  line-height: 1.8 !important;
}

.lh_19 {
  line-height: 1.9 !important;
}

.lh_20 {
  line-height: 2 !important;
}

.lh_21 {
  line-height: 2.1 !important;
}

.lh_22 {
  line-height: 2.2 !important;
}

.lh_23 {
  line-height: 2.3 !important;
}

.lh_24 {
  line-height: 2.4 !important;
}

.lh_25 {
  line-height: 2.5 !important;
}

.lh_26 {
  line-height: 2.6 !important;
}

.lh_27 {
  line-height: 2.7 !important;
}

.lh_28 {
  line-height: 2.8 !important;
}

.lh_29 {
  line-height: 2.9 !important;
}

.lh_30 {
  line-height: 3 !important;
}

@media screen and (max-width: 960px) {
  .lh_md_10 {
    line-height: 1 !important;
  }
  .lh_md_11 {
    line-height: 1.1 !important;
  }
  .lh_md_12 {
    line-height: 1.2 !important;
  }
  .lh_md_13 {
    line-height: 1.3 !important;
  }
  .lh_md_14 {
    line-height: 1.4 !important;
  }
  .lh_md_15 {
    line-height: 1.5 !important;
  }
  .lh_md_16 {
    line-height: 1.6 !important;
  }
  .lh_md_17 {
    line-height: 1.7 !important;
  }
  .lh_md_18 {
    line-height: 1.8 !important;
  }
  .lh_md_19 {
    line-height: 1.9 !important;
  }
  .lh_md_20 {
    line-height: 2 !important;
  }
  .lh_md_21 {
    line-height: 2.1 !important;
  }
  .lh_md_22 {
    line-height: 2.2 !important;
  }
  .lh_md_23 {
    line-height: 2.3 !important;
  }
  .lh_md_24 {
    line-height: 2.4 !important;
  }
  .lh_md_25 {
    line-height: 2.5 !important;
  }
  .lh_md_26 {
    line-height: 2.6 !important;
  }
  .lh_md_27 {
    line-height: 2.7 !important;
  }
  .lh_md_28 {
    line-height: 2.8 !important;
  }
  .lh_md_29 {
    line-height: 2.9 !important;
  }
  .lh_md_30 {
    line-height: 3 !important;
  }
}
@media screen and (max-width: 768px) {
  .lh_sm_10 {
    line-height: 1 !important;
  }
  .lh_sm_11 {
    line-height: 1.1 !important;
  }
  .lh_sm_12 {
    line-height: 1.2 !important;
  }
  .lh_sm_13 {
    line-height: 1.3 !important;
  }
  .lh_sm_14 {
    line-height: 1.4 !important;
  }
  .lh_sm_15 {
    line-height: 1.5 !important;
  }
  .lh_sm_16 {
    line-height: 1.6 !important;
  }
  .lh_sm_17 {
    line-height: 1.7 !important;
  }
  .lh_sm_18 {
    line-height: 1.8 !important;
  }
  .lh_sm_19 {
    line-height: 1.9 !important;
  }
  .lh_sm_20 {
    line-height: 2 !important;
  }
  .lh_sm_21 {
    line-height: 2.1 !important;
  }
  .lh_sm_22 {
    line-height: 2.2 !important;
  }
  .lh_sm_23 {
    line-height: 2.3 !important;
  }
  .lh_sm_24 {
    line-height: 2.4 !important;
  }
  .lh_sm_25 {
    line-height: 2.5 !important;
  }
  .lh_sm_26 {
    line-height: 2.6 !important;
  }
  .lh_sm_27 {
    line-height: 2.7 !important;
  }
  .lh_sm_28 {
    line-height: 2.8 !important;
  }
  .lh_sm_29 {
    line-height: 2.9 !important;
  }
  .lh_sm_30 {
    line-height: 3 !important;
  }
}
/* text-align */
.ta_left {
  text-align: left !important;
}

.ta_right {
  text-align: right !important;
}

.ta_center {
  text-align: center !important;
}

@media screen and (max-width: 960px) {
  .ta_md_left {
    text-align: left !important;
  }
  .ta_md_right {
    text-align: right !important;
  }
  .ta_md_center {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .ta_sm_left {
    text-align: left !important;
  }
  .ta_sm_right {
    text-align: right !important;
  }
  .ta_sm_center {
    text-align: center !important;
  }
}
/* text-decoration */
.td_none {
  text-decoration: none !important;
}

.td_line {
  text-decoration: line-through !important;
}

.td_overline {
  text-decoration: overline !important;
}

.td_underline {
  text-decoration: underline !important;
}

@media screen and (max-width: 960px) {
  .td_md_none {
    text-decoration: none !important;
  }
  .td_md_line {
    text-decoration: line-through !important;
  }
  .td_md_overline {
    text-decoration: overline !important;
  }
  .td_md_underline {
    text-decoration: underline !important;
  }
}
@media screen and (max-width: 768px) {
  .td_sm_none {
    text-decoration: none !important;
  }
  .td_sm_line {
    text-decoration: line-through !important;
  }
  .td_sm_overline {
    text-decoration: overline !important;
  }
  .td_sm_underline {
    text-decoration: underline !important;
  }
}
/* vertical-align */
.va_top {
  vertical-align: top !important;
}

.va_bottom {
  vertical-align: bottom !important;
}

.va_middle {
  vertical-align: middle !important;
}

@media screen and (max-width: 960px) {
  .va_md_top {
    vertical-align: top !important;
  }
  .va_md_bottom {
    vertical-align: bottom !important;
  }
  .va_md_middle {
    vertical-align: middle !important;
  }
}
@media screen and (max-width: 768px) {
  .va_sm_top {
    vertical-align: top !important;
  }
  .va_sm_bottom {
    vertical-align: bottom !important;
  }
  .va_sm_middle {
    vertical-align: middle !important;
  }
}
/*----------------------------------------------------------

Column

----------------------------------------------------------*/
.row {
  display: flex;
  flex-wrap: wrap;
}

.row.ai_start {
  align-items: flex-start;
}

.row.ai_center {
  align-items: center;
}

.row.ai_end {
  align-items: flex-end;
}

.row.fd_column {
  flex-direction: column;
}

.row.fd_column_reverse {
  flex-direction: column-reverse;
}

.row.fd_row {
  flex-direction: row;
}

.row.fd_row_reverse {
  flex-direction: row-reverse;
}

.row.jc_start {
  justify-content: flex-start;
}

.row.jc_center {
  justify-content: center;
}

.row.jc_end {
  justify-content: flex-end;
}

.row.jc_between {
  justify-content: space-between;
}

.col_1 {
  width: 8.33333%;
}

.col_2 {
  width: 16.666666%;
}

.col_3 {
  width: 24.99999%;
}

.col_4 {
  width: 33.33333%;
}

.col_5 {
  width: 41.66666%;
}

.col_6 {
  width: 49.99999%;
}

.col_7 {
  width: 58.33333%;
}

.col_8 {
  width: 66.66666%;
}

.col_9 {
  width: 74.99999%;
}

.col_10 {
  width: 83.33333%;
}

.col_11 {
  width: 91.66666%;
}

.col_12 {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .col_md_1 {
    width: 8.33333%;
  }
  .col_md_2 {
    width: 16.666666%;
  }
  .col_md_3 {
    width: 24.99999%;
  }
  .col_md_4 {
    width: 33.33333%;
  }
  .col_md_5 {
    width: 41.66666%;
  }
  .col_md_6 {
    width: 49.99999%;
  }
  .col_md_7 {
    width: 58.33333%;
  }
  .col_md_8 {
    width: 66.66666%;
  }
  .col_md_9 {
    width: 74.99999%;
  }
  .col_md_10 {
    width: 83.33333%;
  }
  .col_md_11 {
    width: 91.66666%;
  }
  .col_md_12 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .col_sm_1 {
    width: 8.33333%;
  }
  .col_sm_2 {
    width: 16.666666%;
  }
  .col_sm_3 {
    width: 24.99999%;
  }
  .col_sm_4 {
    width: 33.33333%;
  }
  .col_sm_5 {
    width: 41.66666%;
  }
  .col_sm_6 {
    width: 49.99999%;
  }
  .col_sm_7 {
    width: 58.33333%;
  }
  .col_sm_8 {
    width: 66.66666%;
  }
  .col_sm_9 {
    width: 74.99999%;
  }
  .col_sm_10 {
    width: 83.33333%;
  }
  .col_sm_11 {
    width: 91.66666%;
  }
  .col_sm_12 {
    width: 100%;
  }
}
.space_0 {
  margin-left: 0px;
}

@media screen and (max-width: 768px) {
  .space_0 {
    margin-left: 0vw;
  }
}
.space_0 > [class*=col_], .space_0 > [class*=" col_"] {
  padding-left: 0px;
}

@media screen and (max-width: 768px) {
  .space_0 > [class*=col_], .space_0 > [class*=" col_"] {
    padding-left: 0vw;
  }
}
.space_10 {
  margin-left: -10px;
}

@media screen and (max-width: 768px) {
  .space_10 {
    margin-left: -1.6vw;
  }
}
.space_10 > [class*=col_], .space_10 > [class*=" col_"] {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .space_10 > [class*=col_], .space_10 > [class*=" col_"] {
    padding-left: 1.6vw;
  }
}
.space_20 {
  margin-left: -20px;
}

@media screen and (max-width: 768px) {
  .space_20 {
    margin-left: -3.2vw;
  }
}
.space_20 > [class*=col_], .space_20 > [class*=" col_"] {
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .space_20 > [class*=col_], .space_20 > [class*=" col_"] {
    padding-left: 3.2vw;
  }
}
.space_30 {
  margin-left: -30px;
}

@media screen and (max-width: 768px) {
  .space_30 {
    margin-left: -4.8vw;
  }
}
.space_30 > [class*=col_], .space_30 > [class*=" col_"] {
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .space_30 > [class*=col_], .space_30 > [class*=" col_"] {
    padding-left: 4.8vw;
  }
}
.space_40 {
  margin-left: -40px;
}

@media screen and (max-width: 768px) {
  .space_40 {
    margin-left: -6.4vw;
  }
}
.space_40 > [class*=col_], .space_40 > [class*=" col_"] {
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .space_40 > [class*=col_], .space_40 > [class*=" col_"] {
    padding-left: 6.4vw;
  }
}
.space_50 {
  margin-left: -50px;
}

@media screen and (max-width: 768px) {
  .space_50 {
    margin-left: -8vw;
  }
}
.space_50 > [class*=col_], .space_50 > [class*=" col_"] {
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .space_50 > [class*=col_], .space_50 > [class*=" col_"] {
    padding-left: 8vw;
  }
}
.space_60 {
  margin-left: -60px;
}

@media screen and (max-width: 768px) {
  .space_60 {
    margin-left: -9.6vw;
  }
}
.space_60 > [class*=col_], .space_60 > [class*=" col_"] {
  padding-left: 60px;
}

@media screen and (max-width: 768px) {
  .space_60 > [class*=col_], .space_60 > [class*=" col_"] {
    padding-left: 9.6vw;
  }
}
.space_70 {
  margin-left: -70px;
}

@media screen and (max-width: 768px) {
  .space_70 {
    margin-left: -11.2vw;
  }
}
.space_70 > [class*=col_], .space_70 > [class*=" col_"] {
  padding-left: 70px;
}

@media screen and (max-width: 768px) {
  .space_70 > [class*=col_], .space_70 > [class*=" col_"] {
    padding-left: 11.2vw;
  }
}
.space_80 {
  margin-left: -80px;
}

@media screen and (max-width: 768px) {
  .space_80 {
    margin-left: -12.8vw;
  }
}
.space_80 > [class*=col_], .space_80 > [class*=" col_"] {
  padding-left: 80px;
}

@media screen and (max-width: 768px) {
  .space_80 > [class*=col_], .space_80 > [class*=" col_"] {
    padding-left: 12.8vw;
  }
}
@media screen and (max-width: 960px) {
  .space_md_0 {
    margin-left: 0px;
  }
  .space_md_0 > [class*=col_], .space_md_0 > [class*=" col_"] {
    padding-left: 0px;
  }
  .space_md_10 {
    margin-left: -10px;
  }
  .space_md_10 > [class*=col_], .space_md_10 > [class*=" col_"] {
    padding-left: 10px;
  }
  .space_md_20 {
    margin-left: -20px;
  }
  .space_md_20 > [class*=col_], .space_md_20 > [class*=" col_"] {
    padding-left: 20px;
  }
  .space_md_30 {
    margin-left: -30px;
  }
  .space_md_30 > [class*=col_], .space_md_30 > [class*=" col_"] {
    padding-left: 30px;
  }
  .space_md_40 {
    margin-left: -40px;
  }
  .space_md_40 > [class*=col_], .space_md_40 > [class*=" col_"] {
    padding-left: 40px;
  }
  .space_md_50 {
    margin-left: -50px;
  }
  .space_md_50 > [class*=col_], .space_md_50 > [class*=" col_"] {
    padding-left: 50px;
  }
  .space_md_60 {
    margin-left: -60px;
  }
  .space_md_60 > [class*=col_], .space_md_60 > [class*=" col_"] {
    padding-left: 60px;
  }
  .space_md_70 {
    margin-left: -70px;
  }
  .space_md_70 > [class*=col_], .space_md_70 > [class*=" col_"] {
    padding-left: 70px;
  }
  .space_md_80 {
    margin-left: -80px;
  }
  .space_md_80 > [class*=col_], .space_md_80 > [class*=" col_"] {
    padding-left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .space_sm_0 {
    margin-left: 0px;
  }
  .space_sm_0 > [class*=col_], .space_sm_0 > [class*=" col_"] {
    padding-left: 0px;
  }
  .space_sm_10 {
    margin-left: -10px;
  }
  .space_sm_10 > [class*=col_], .space_sm_10 > [class*=" col_"] {
    padding-left: 10px;
  }
  .space_sm_20 {
    margin-left: -20px;
  }
  .space_sm_20 > [class*=col_], .space_sm_20 > [class*=" col_"] {
    padding-left: 20px;
  }
  .space_sm_30 {
    margin-left: -30px;
  }
  .space_sm_30 > [class*=col_], .space_sm_30 > [class*=" col_"] {
    padding-left: 30px;
  }
  .space_sm_40 {
    margin-left: -40px;
  }
  .space_sm_40 > [class*=col_], .space_sm_40 > [class*=" col_"] {
    padding-left: 40px;
  }
  .space_sm_50 {
    margin-left: -50px;
  }
  .space_sm_50 > [class*=col_], .space_sm_50 > [class*=" col_"] {
    padding-left: 50px;
  }
  .space_sm_60 {
    margin-left: -60px;
  }
  .space_sm_60 > [class*=col_], .space_sm_60 > [class*=" col_"] {
    padding-left: 60px;
  }
  .space_sm_70 {
    margin-left: -70px;
  }
  .space_sm_70 > [class*=col_], .space_sm_70 > [class*=" col_"] {
    padding-left: 70px;
  }
  .space_sm_80 {
    margin-left: -80px;
  }
  .space_sm_80 > [class*=col_], .space_sm_80 > [class*=" col_"] {
    padding-left: 80px;
  }
}
/** */
.container {
  width: 85.7vw;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1400px) {
  .container {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    width: 94.6vw;
    max-width: 710px;
  }
}

.color_green {
  color: #0E9352;
}

.color_red {
  color: #F23A3A;
}

.bg_green {
  background-color: #0E9352;
  color: #FFF;
}

.bg_lightgreen {
  background-color: #EEF7F2;
}

.bg_grey {
  background-color: #EFEFEF;
}

.underline_green {
  position: relative;
}
.underline_green::after {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -0.25em;
  left: 0;
  background-color: #0E9352;
  content: "";
}

.common_page_header {
  padding: 30px 0;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .common_page_header {
    padding: 6px 0 9px;
  }
}

.common_page_h1 {
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .common_page_h1 {
    padding: 6px 0 9px;
  }
}
.common_page_h1_en {
  display: block;
  margin-bottom: 5px;
  color: #0E9352;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .common_page_h1_en {
    display: none;
  }
}
.common_page_h1_ja {
  display: block;
  font-size: 42px;
  line-height: 1.45;
}
@media only screen and (max-width: 768px) {
  .common_page_h1_ja {
    font-size: 24px;
  }
}
.common_page_h1_jaWrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .common_page_h1_jaWrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 5px;
    padding-top: 3px;
  }
}
.common_page_h1_jaSmall {
  display: block;
  font-size: min(1.7857142857vw, 25px);
}
@media only screen and (max-width: 768px) {
  .common_page_h1_jaSmall {
    font-size: 13px;
  }
}

.common_page_h2 {
  position: relative;
  margin-bottom: 45px;
  color: #0E9352;
  font-size: 24px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .common_page_h2 {
    margin-bottom: 19px;
    font-size: 20px;
  }
}
.common_page_h2::before, .common_page_h2::after {
  display: block;
  position: absolute;
  height: 4px;
  left: 0;
  bottom: -7px;
  content: "";
}
@media only screen and (max-width: 768px) {
  .common_page_h2::before, .common_page_h2::after {
    height: 3px;
    bottom: -2px;
  }
}
.common_page_h2::before {
  width: 100%;
  background-color: #EFEFEF;
}
.common_page_h2::after {
  width: 200px;
  background-color: #0E9352;
}
@media only screen and (max-width: 768px) {
  .common_page_h2::after {
    width: 120px;
  }
}

.common_page_container {
  padding-bottom: 140px;
}
@media only screen and (max-width: 768px) {
  .common_page_container {
    padding-bottom: 80px;
  }
}

.common_page_main {
  width: 78%;
  max-width: 940px;
  min-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .common_page_main {
    width: 100%;
    min-width: unset;
  }
}

.common_headBand {
  width: 100%;
  margin-bottom: 20px;
  padding: 17px;
  background-color: #0E9352;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .common_headBand {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: auto;
    padding: 10px 10px 10px 20px;
  }
}
.common_headBand_title {
  font-size: 24px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .common_headBand_title {
    font-size: 20px;
  }
}

.common_link_arrow {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.common_link_arrow::before, .common_link_arrow::after {
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 3px);
  width: 6px;
  height: 2px;
  border-radius: 1px;
  transform-origin: right;
  content: "";
}
.common_link_arrow::before {
  transform: rotate(45deg);
}
.common_link_arrow::after {
  transform: rotate(-45deg);
}

.arrow_green {
  background-color: #0E9352;
}
.arrow_green::before, .arrow_green::after {
  background-color: #FFF;
}

.arrow_white {
  background-color: #FFF;
}
.arrow_white::before, .arrow_white::after {
  background-color: #0E9352;
}

.arrow_down::before, .arrow_down::after {
  top: calc(50% - 4px);
  left: calc(50% - 1px);
  width: 2px;
  height: 6px;
  transform-origin: bottom;
}

.arrow_up::before, .arrow_up::after {
  top: calc(50% - 4px);
  left: calc(50% - 1px);
  width: 2px;
  height: 6px;
  transform-origin: top;
}

.common_btn {
  display: block;
  position: relative;
  width: 100%;
  box-shadow: 0 3px 0 #0E9352;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
}
.common_btn.btn_white {
  background-color: #FFF;
  color: #0E9352;
}
.common_btn.btn_green {
  background-color: #0E9352;
  color: #FFF;
}
.common_btn_link {
  line-height: 40px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .common_btn_link {
    line-height: 50px;
  }
}
.common_btnIcon, .common_btnText {
  vertical-align: middle;
}
.common_btnIcon {
  margin-right: 7px;
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.tab_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tab_sp {
    display: block;
  }
}

.common_contact_tel_wrap {
  display: block;
  width: 100%;
  height: 100%;
}
.common_contact_telCatch {
  font-size: 10px;
  letter-spacing: 0.18em;
  line-height: 15px;
  text-align: right;
}
.common_contact_telNo {
  margin-bottom: 3px;
}
.common_contact_telNoIcon {
  width: 18px;
  aspect-ratio: auto 18/23;
  vertical-align: middle;
}
.common_contact_telNoText {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: middle;
}
.common_contact_telHour {
  display: block;
  width: 100%;
}
.common_mark {
  display: inline-block;
}
.common_mark.mark_yellow {
  background-image: linear-gradient(to bottom, transparent 75%, #F6E929 0%);
}
.common_mark.mark_green {
  background-image: linear-gradient(to bottom, transparent 75%, #0A6D3D 0%);
}

.common_sup {
  font-size: 0.5em;
  vertical-align: super;
}

.common_headline {
  padding: 80px 0 60px;
}
@media only screen and (max-width: 768px) {
  .common_headline {
    padding: 60px 0 40px;
  }
}
.common_headline .headline_wrap {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .common_headline .headline_wrap {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.common_headline .headline_news {
  flex-basis: 50%;
}
@media only screen and (max-width: 768px) {
  .common_headline .headline_news {
    flex-basis: 100%;
  }
}
.common_headline .headline_news.news_arrival {
  padding-right: 3.5%;
}
@media only screen and (max-width: 768px) {
  .common_headline .headline_news.news_arrival {
    padding-right: 0;
  }
}
.common_headline .headline_news.news_anounce {
  padding-left: 3.5%;
  border-left: 1px solid #CCC;
}
@media only screen and (max-width: 768px) {
  .common_headline .headline_news.news_anounce {
    padding-left: 0;
    border-left: none;
  }
}
.common_headline .headline_newsHead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .common_headline .headline_newsHead {
    margin-bottom: 30px;
  }
}
.common_headline .headline_newsHeadLink {
  text-align: right;
}
.common_headline .headline_newsHeadLink_span {
  margin-left: 4px;
  font-weight: 700;
  vertical-align: middle;
}

.headline_newsListItem {
  padding: 20px 0;
  border-top: 1px solid #CCC;
}
@media only screen and (max-width: 768px) {
  .headline_newsListItem {
    padding-left: 10px;
  }
}
.headline_newsListItem:last-child {
  border-bottom: 1px solid #CCC;
}
.headline_newsArticle {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .headline_newsArticle {
    flex-wrap: wrap;
  }
}
.headline_newsArticle a {
  text-decoration: underline;
}
.headline_newsArticle_meta {
  width: 130px;
  flex-shrink: 0;
  margin-right: 8.3%;
}
@media only screen and (max-width: 768px) {
  .headline_newsArticle_meta {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.headline_newsArticle_date {
  margin-bottom: 8px;
  line-height: 24px;
}
@media only screen and (max-width: 768px) {
  .headline_newsArticle_date {
    display: inline-block;
  }
}
.headline_newsArticle_flag {
  display: inline-block;
  width: 40px;
  height: 20px;
  vertical-align: middle;
  margin-left: 8px;
}
.headline_newsArticle_cat {
  width: 100%;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 22px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .headline_newsArticle_cat {
    display: inline-block;
    width: 136px;
    margin-left: 12px;
  }
}
.headline_newsArticle_cat.cat_color_white {
  border: 1px solid #0E9352;
  color: #0E9352;
}
.headline_newsArticle_cat.cat_color_green {
  background-color: #0E9352;
  color: #FFF;
}
.headline_newsArticle_cat.cat_color_red {
  background-color: #F23A3A;
  color: #FFF;
}
.headline_newsArticle_cat.cat_color_grey {
  background-color: #EFEFEF;
}
.headline_newsArticle_cat.cat_color_black {
  background-color: #333333;
  color: #FFF;
}
.headline_newsArticle_title {
  line-height: 24px;
}
.headline_newsArticle_title dd {
  margin: 8px 0;
}
.headline_newsArticle_title dd:last-child {
  margin-bottom: 0;
}

.font_roboto {
  font-family: "Roboto", sans-serif;
}

.span_inline_block {
  display: inline-block;
}

.common_float {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100000;
  height: 100vh;
  /*緑のボタン*/
  /*閲覧履歴*/
}
.common_float_btn {
  display: block;
  position: absolute;
  right: 0;
  padding: 15px 10px;
  border-radius: 6px 0 0 6px;
  border: 1px solid #078849;
  background: #0E9352;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  transition: all ease 0.3s;
  cursor: pointer;
}
.common_float_btn:hover {
  background-color: #078849;
}
.common_float_btn.btn_history {
  bottom: 55vh;
}
.common_float_btn.btn_favorite {
  top: 50vh;
}
.common_float_btn_txt {
  display: block;
  width: 1em;
  margin-bottom: 0;
}
.common_float_btn_icon {
  display: block;
  width: 17px;
  height: 17px;
  margin-bottom: 5px;
}
.common_float_btn_icon.icon_clock {
  background: url("/assets/img/common/common_ico_clock_white.png") center/contain no-repeat;
}
.common_float_btn_icon.icon_star {
  background: url("/assets/img/common/common_ico_star_white.png") center/contain no-repeat;
}
.common_float .jsc_float_btn_history,
.common_float .jsc_float_btn_favorite {
  z-index: 1000000;
}
.common_float .jsc_float_btn_history.hide,
.common_float .jsc_float_btn_favorite.hide {
  right: -40px;
}
.common_float_menu {
  width: 120px;
  position: fixed;
  border: 2px solid #d4d4d4;
  background: #ffffff;
  /*.float_menu_slider {
    margin-bottom: 0;
    padding: 10px 10px 0 10px;
    background: #ffffff;
    &Item {
      position: relative;
      &::before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: all ease .3s;
        content: '';
      }
      &:hover::before {
        background-color: rgba(255,255,255,0.25);
      }
    }
  }*/
}
.common_float_menu.stop {
  position: absolute;
  top: auto;
  bottom: 450px;
}
.common_float_menu .splide--slide {
  padding-bottom: 30px;
  background-color: #FFF;
}
.common_float_menu .splide--slide .splide__pagination--ttb {
  flex-direction: row;
  top: unset;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0 4px 0;
}
.common_float_menu .splide--slide .splide__pagination--ttb .splide__pagination__page {
  width: 16px;
  height: 16px;
  background-color: #333333;
}
.common_float_menu .splide--slide .splide__pagination--ttb .splide__pagination__page.is-active {
  width: 12px;
  height: 12px;
  border: 1px solid #333333;
  background-color: #FFF;
}
.common_float_menu .float_menu_head {
  background: #0e9352;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  padding: 5px 10px;
}
.common_float_menu .float_menu_headIcon, .common_float_menu .float_menu_headTxt {
  vertical-align: middle;
}
.common_float_menu .float_menu_headIcon {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
}
.common_float_menu .float_menu_headIcon.icon_clock {
  background: url("/assets/img/common/common_ico_clock_white.png") center/contain no-repeat;
}
.common_float_menu .float_menu_headIcon.icon_star {
  background: url("/assets/img/common/common_ico_star_white.png") center/contain no-repeat;
}
.common_float_menu .float_menu_btn_close {
  display: block;
  position: relative;
  margin-bottom: 0;
  padding: 5px 10px 5px 23px;
  background: #333333;
  color: #FFF;
  text-align: center;
  cursor: pointer;
}
.common_float_menu .float_menu_btn_close::before, .common_float_menu .float_menu_btn_close::after {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 1em;
  height: 2px;
  background: #FFF;
  transform-origin: left;
  content: "";
}
.common_float_menu .float_menu_btn_close::before {
  transform: rotate(45deg) translateX(-50%);
}
.common_float_menu .float_menu_btn_close::after {
  transform: rotate(-45deg) translateX(-50%);
}
.common_float_menu.history_wrap, .common_float_menu.favorite_wrap {
  top: auto;
  right: -120px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.common_float_menu.history_wrap.show, .common_float_menu.favorite_wrap.show {
  right: 60px;
  visibility: visible;
  max-height: 50vh;
  overflow-y: auto;
  opacity: 1;
  z-index: 1000000;
}
.common_float_menu.history_wrap {
  bottom: 55vh;
}
.common_float_menu.favorite_wrap {
  top: 50vh;
}

.common_icon_help {
  display: inline-block;
  width: 18px;
  height: 18px;
}

.common_breadcrumb {
  padding: 6px 0;
  background-color: #EFEFEF;
}
@media only screen and (max-width: 768px) {
  .common_breadcrumb {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.common_breadcrumb_list {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.common_breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.common_breadcrumb_listItem {
  display: inline-block;
  font-size: 12px;
}
.common_breadcrumb_listItem + .common_breadcrumb_listItem::before {
  content: "＞";
  margin: 0 5px;
}
.common_breadcrumb_listItemLink {
  text-decoration: underline;
}
.common_breadcrumb_listItem .ico_bc_home:before {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  background-image: url("/assets/img/common/common_ico_home.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: middle;
  content: "";
}
.common_breadcrumb .breadcrumb_stock_list .common_breadcrumb_listItem:last-child .common_breadcrumb_listItemLink {
  text-decoration: none;
}

/* /assets/css/dist/common.css より移動 */
/*モーダルウィンドウ全体のレイアウト（画面いっぱいに表示）*/
.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  overflow-y: scroll;
}

/*黒背景の設定*/
.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

/*ウィンドウの設定*/
.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  max-height: 80%;
  overflow: scroll;
}

.c-modal_content._sm {
  width: 30%;
}

.c-modal_content._md {
  width: 50%;
}

.c-modal_content._lg {
  width: 80%;
}

.c-modal_content_inner {
  position: relative;
  padding: 24px;
}

.c-modal_content_inner .container {
  width: 100%;
}

/*閉じるボタン*/
.c-modal_close {
  position: absolute;
  top: 13px;
  right: 10px;
}

.common_visit_nav {
  display: flex;
}

.lum-lightbox.lum-open {
  z-index: 10001;
}
@media only screen and (max-width: 768px) {
  .lum-lightbox.lum-open .lum-img {
    width: 100%;
  }
}

.common_ls_1em {
  letter-spacing: 1em;
}

.common_small {
  font-size: 0.75em;
}

.common_editForm_section {
  position: relative;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_section {
    padding-bottom: 30px;
  }
}
.common_editForm_h2 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_h2 {
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
}
.common_editForm_h2Span {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .common_editForm_h2Span {
    font-size: 20px;
  }
}
.common_editForm_h2::before, .common_editForm_h2::after {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  height: 4px;
  content: "";
}
.common_editForm_h2::before {
  width: 100%;
  background-color: #EFEFEF;
}
.common_editForm_h2::after {
  width: 200px;
  background-color: #0E9352;
}
@media only screen and (max-width: 768px) {
  .common_editForm_h2::after {
    width: 160px;
  }
}
.common_editForm_table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 100px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_table {
    table-layout: auto;
    margin-bottom: 50px;
    font-size: 16px;
  }
}
.common_editForm_tableRow {
  border-bottom: 2px solid #EFEFEF;
}
.common_editForm_tableHead {
  width: 28%;
  padding: 30px 0;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_editForm_tableHead {
    width: 100%;
    padding: 20px 0 10px;
  }
}
.common_editForm_tableData {
  width: 72%;
  padding: 30px 0;
}
@media only screen and (max-width: 768px) {
  .common_editForm_tableData {
    width: 100%;
    padding: 10px 0 20px;
  }
}
.common_editForm_tableDataFlex {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.common_editForm_tableHead, .common_editForm_tableData {
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .common_editForm_tableHead, .common_editForm_tableData {
    display: block;
  }
}
.common_editForm_required {
  display: inline-block;
  width: 35px;
  margin-left: 10px;
  background-color: #F23A3A;
  border-radius: 3px;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.common_editForm_inputText, .common_editForm_inputTextarea {
  width: 100%;
  height: 70px;
  padding: 22px 25px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_inputText, .common_editForm_inputTextarea {
    height: 60px;
    padding: 18px 20px;
    font-size: 16px;
  }
}
.common_editForm_inputText::placeholder, .common_editForm_inputTextarea::placeholder {
  color: #CCCCCC;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_inputText::placeholder, .common_editForm_inputTextarea::placeholder {
    font-size: 16px;
    line-height: 21px;
  }
}
.common_editForm_inputText.text_place_green::placeholder, .common_editForm_inputTextarea.text_place_green::placeholder {
  color: #0E9352;
  font-weight: 700;
}
.common_editForm_inputText.form_width_half, .common_editForm_inputTextarea.form_width_half {
  width: 30%;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_inputText.form_width_half, .common_editForm_inputTextarea.form_width_half {
    width: 45%;
  }
}
.common_editForm_inputText.text_w160, .common_editForm_inputTextarea.text_w160 {
  width: 160px;
}
.common_editForm_inputText.text_w220, .common_editForm_inputTextarea.text_w220 {
  width: 220px;
}
.common_editForm_inputTextarea {
  height: 160px;
  resize: none;
  line-height: 1.5;
}
.common_editForm_radioLabel {
  margin-right: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .common_editForm_radioLabel {
    display: block;
    width: 100%;
    height: 60px;
    margin-right: 0;
    margin-bottom: 10px;
    padding: 17px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
  }
  .common_editForm_radioLabel:last-of-type {
    margin-bottom: 0;
  }
}
.common_editForm_radioLabel .radio_mark, .common_editForm_radioLabel .radio_text {
  vertical-align: middle;
}
.common_editForm_radioLabel .radio_mark {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background-color: #FFF;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
}
.common_editForm_inputRadio {
  display: none;
}
@media only screen and (max-width: 768px) {
  .common_editForm_inputRadio:checked + .common_editForm_radioLabel {
    background-color: #EEF7F2;
  }
}
.common_editForm_inputRadio:checked + .common_editForm_radioLabel .radio_mark::before {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background-color: #0E9352;
  border-radius: 50%;
  content: "";
}
.common_editForm_note {
  margin-top: 10px;
  padding-left: 1em;
  font-size: 13px;
  text-indent: -1em;
}
.common_editForm_file {
  padding: 30px 0;
}
.common_editForm_fileDesc {
  color: #0E9352;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_editForm_fileDesc {
    font-size: 16px;
  }
}
.common_editForm_fileHead {
  margin: 46px 0 20px;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_editForm_fileHead {
    margin: 30px 0 16px;
    font-size: 16px;
  }
}
.common_editForm_fileHeadSmall {
  font-size: 13px;
}
.common_editForm_fileSelect {
  display: flex;
  align-items: center;
  column-gap: 5%;
  padding: 30px 5%;
  background-color: #EFEFEF;
  border: 1px dashed #CCCCCC;
}
@media only screen and (max-width: 768px) {
  .common_editForm_fileSelect {
    flex-wrap: wrap;
    row-gap: 16px;
  }
}
.common_editForm_fileSelect input[type=file] {
  display: none;
}
.common_editForm_fileSelectLabel {
  display: inline-block;
  width: 170px;
  background-color: #333333;
  border-radius: 6px;
  color: #FFF;
  font-size: 16px;
  line-height: 53px;
  text-align: center;
  cursor: pointer;
}
.common_editForm_fileSelectName {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_editForm_fileSelectName {
    width: 100%;
    font-size: 16px;
  }
}
.common_editForm_fileSelectNote {
  color: #999;
  font-size: 13px;
}
.common_editForm_ppNote {
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .common_editForm_ppNote {
    font-size: 16px;
    text-align: left;
  }
}
.common_editForm_btn {
  position: relative;
  display: block;
  width: 420px;
  box-shadow: 0 4px 0 #0A6D3D;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .common_editForm_btn {
    width: 100%;
  }
}
.common_editForm_btn.btn_white {
  background-color: #FFFFFF;
  color: #0E9352;
}
.common_editForm_btn.btn_green {
  background-color: #0E9352;
  color: #FFFFFF;
}
.common_editForm_btn.btn_grey {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: 0 3px 0 #AAA;
  color: #FFFFFF;
}
.common_editForm_btn.btn_no_shadow {
  box-shadow: none;
}
.common_editForm_btn_link {
  line-height: 76px;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_editForm_btn_link {
    line-height: 50px;
    font-size: 16px;
  }
}
.common_editForm_btn_link .btn_icon,
.common_editForm_btn_link .btn_text {
  vertical-align: middle;
}
.common_editForm_btn_link .btn_icon {
  aspect-ratio: auto 1/1;
  margin-right: 7px;
  width: 20px;
  height: 20px;
}
.common_editForm_btn_links {
  line-height: 76px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .common_editForm_btn_links {
    line-height: 1.5;
    padding-block: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .common_editForm_btn_links {
    font-size: 16px;
  }
}
.common_editForm_btn .btn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.common_editForm_btn:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_editForm_btn.btn_grey:hover {
  box-shadow: 0 2px 0 #AAA;
}
.common_editForm_dir {
  position: fixed;
  top: 50%;
  right: 5%;
  width: 120px;
  padding: 14px 0;
  background-color: #333333;
  border-radius: 6px;
  color: #FFF;
  text-align: center;
  z-index: 10000;
}
@media only screen and (max-width: 768px) {
  .common_editForm_dir {
    top: unset;
    bottom: 100px;
    right: 2.5%;
    width: 120px;
    padding: 10px 0;
  }
}
.common_editForm_dirCount {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .common_editForm_dirCount {
    font-size: 30px;
  }
}
.common_editForm_dir::before {
  display: flex;
  position: absolute;
  right: 98%;
  bottom: 12px;
  width: 21px;
  height: 16px;
  background-color: #333333;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: rotate(-10deg);
  content: "";
}
.common_editForm_checkLabel {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .common_editForm_checkLabel {
    height: 60px;
  }
}
.common_editForm_checkLabel .common_editForm_checkbox {
  display: none;
}
.common_editForm_checkLabel .common_editForm_checkMark {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  margin-right: 15px;
  border: 2px solid #CCCCCC;
  border-radius: 6px;
  background-color: #FFF;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .common_editForm_checkLabel .common_editForm_checkMark {
    width: 26px;
    height: 26px;
  }
}
.common_editForm_checkLabel .common_editForm_checkMark::before {
  display: block;
  position: absolute;
  top: 35%;
  left: 7px;
  width: 8px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #CCCCCC;
  border-right: 2px solid #CCCCCC;
  content: "";
}
@media only screen and (max-width: 768px) {
  .common_editForm_checkLabel .common_editForm_checkMark::before {
    width: 6px;
    height: 10px;
  }
}
.common_editForm_checkLabel .common_editForm_checkbox:checked ~ .common_editForm_checkMark {
  background-color: #0E9352;
  border: none;
}
.common_editForm_checkLabel .common_editForm_checkbox:checked ~ .common_editForm_checkMark::before {
  border-bottom-color: #FFF;
  border-right-color: #FFF;
}
.common_editForm_checkLabel .common_editForm_checkTxt {
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .common_editForm_checkLabel .common_editForm_checkTxt {
    font-size: 16px;
  }
}
.common_editForm_zipBtn {
  width: 152px;
  background-color: #333333;
  border-radius: 6px;
  border: none;
  color: #FFF;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .common_editForm_zipBtn {
    width: 140px;
    line-height: 44px;
  }
}
.common_editForm_select {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_select {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 5px;
  }
}
.common_editForm_selectLabel {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .common_editForm_selectLabel {
    text-align: left;
  }
}
.common_editForm_selectLabelTag {
  display: inline-block;
  width: 35px;
  margin-left: 10px;
  background-color: #CCCCCC;
  border-radius: 3px;
  color: #FFF;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}
.common_editForm_selectBox {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 70px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_selectBox {
    height: 60px;
  }
}
.common_editForm_selectBox.select_w220 {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  .common_editForm_selectBox.select_w220 {
    width: 150px;
  }
}
.common_editForm_selectBox::after {
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 25px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #0E9352;
  border-bottom: 2px solid #0E9352;
  transform: rotate(45deg);
  content: "";
}
@media only screen and (max-width: 768px) {
  .common_editForm_selectBox::after {
    right: 20px;
    width: 7px;
    height: 7px;
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
}
.common_editForm_selectInput {
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 20px 0 20px 25px;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  color: #0E9352;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.common_editForm_selectInput option {
  min-height: 1em;
  padding: 0;
}

.common_confirmForm_table {
  table-layout: fixed;
  width: 100%;
  border: 1px solid #CCCCCC;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_table {
    table-layout: auto;
  }
}
.common_confirmForm_tableHead, .common_confirmForm_tableData {
  padding: 30px 11px;
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_tableHead, .common_confirmForm_tableData {
    display: block;
    padding: 20px 10px;
  }
}
.common_confirmForm_tableHead {
  position: relative;
  width: 170px;
  background-color: #EFEFEF;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_tableHead {
    width: 100%;
  }
}
.common_confirmForm_tableHead .appraisal_confirmForm_required {
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 12px;
  width: 35px;
  margin-left: 10px;
  background-color: #F23A3A;
  border-radius: 3px;
  color: #FFF;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.common_confirmForm_tableData {
  width: calc(100% - 170px);
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_tableData {
    width: 100%;
  }
}
.common_confirmForm_fileList {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
.common_confirmForm_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
}
.common_confirmForm_btns .common_confirmForm_submit {
  position: relative;
  display: block;
  width: 300px;
  box-shadow: 0 4px 0 #0A6D3D;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_btns .common_confirmForm_submit {
    width: 100%;
  }
}
.common_confirmForm_btns .common_confirmForm_submit.btn_white {
  background-color: #FFFFFF;
  color: #0E9352;
}
.common_confirmForm_btns .common_confirmForm_submit.btn_green {
  background-color: #0E9352;
  color: #FFFFFF;
}
.common_confirmForm_btns .common_confirmForm_submit.btn_grey {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: 0 3px 0 #AAA;
  color: #FFFFFF;
}
.common_confirmForm_btns .common_confirmForm_submit.btn_no_shadow {
  box-shadow: none;
}
.common_confirmForm_btns .common_confirmForm_submit_link {
  line-height: 76px;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_btns .common_confirmForm_submit_link {
    line-height: 50px;
    font-size: 18px;
  }
}
.common_confirmForm_btns .common_confirmForm_submit_link .btn_icon,
.common_confirmForm_btns .common_confirmForm_submit_link .btn_text {
  vertical-align: middle;
}
.common_confirmForm_btns .common_confirmForm_submit_link .btn_icon {
  aspect-ratio: auto 1/1;
  margin-right: 7px;
  width: 20px;
  height: 20px;
}
.common_confirmForm_btns .common_confirmForm_submit_links {
  line-height: 76px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .common_confirmForm_btns .common_confirmForm_submit_links {
    line-height: 1.5;
    padding-block: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_btns .common_confirmForm_submit_links {
    font-size: 18px;
  }
}
.common_confirmForm_btns .common_confirmForm_submit .btn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.common_confirmForm_btns .common_confirmForm_submit:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_confirmForm_btns .common_confirmForm_submit.btn_grey:hover {
  box-shadow: 0 2px 0 #AAA;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_btns .common_confirmForm_submit {
    flex-grow: 1;
  }
}
.common_confirmForm_btns .common_confirmForm_back {
  width: 100px;
  background-color: #999;
  border: none;
  border-radius: 6px;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 76px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .common_confirmForm_btns .common_confirmForm_back {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 50px;
  }
}

.common_headBand960 {
  margin: 0 auto 40px;
  height: 70px;
  max-width: 960px;
  background-color: #0E9352;
}
.common_headBand960_title {
  padding-left: 2.2%;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 70px;
}
@media screen and (max-width: 1400px) {
  .common_headBand960 {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .common_headBand960 {
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
  }
  .common_headBand960_title {
    font-size: 18px;
    line-height: 50px;
  }
}
.common_headBand1200 {
  margin: 0 auto 40px;
  height: 60px;
  max-width: 1200px;
  background-color: #0E9352;
}
.common_headBand1200_title {
  padding-left: 2.2%;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 60px;
}
@media screen and (max-width: 1400px) {
  .common_headBand1200 {
    width: 95%;
  }
}
@media only screen and (max-width: 768px) {
  .common_headBand1200 {
    width: 100%;
    height: 50px;
    margin-bottom: 30px;
  }
  .common_headBand1200_title {
    font-size: 18px;
    line-height: 50px;
  }
}

/* common_btnLink */
.common_btnLink {
  color: #0E9352;
  font-weight: 700;
  background-color: #ffffff;
  padding-block: 12px;
  padding-right: min(0.7142857143vw, 10px);
  padding-left: min(1.7857142857vw, 25px);
  text-align: left;
  transition: opacity 0.3s ease 0s;
  display: block;
  transition: all 0.3s ease 0s;
  position: relative;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .common_btnLink {
    width: 300px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .common_btnLink > span {
    display: block;
    transform: translateX(-10px);
  }
}
.common_btn_2lines {
  display: block;
}
@media (max-width: 1250px) {
  .common_btn_2lines {
    text-align: center;
    display: block;
    margin-left: -20px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  .common_btn_2lines {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .common_btn_2linesLeft {
    text-align: left;
  }
}
.common_btnLinkCenter {
  padding-left: min(4.9285714286vw, 69px);
}
@media only screen and (max-width: 768px) {
  .common_btnLinkCenter {
    padding-left: 70px;
  }
}
.common_btnLinkRight {
  padding-left: min(3.5714285714vw, 50px);
}
@media only screen and (max-width: 768px) {
  .common_btnLinkRight {
    padding-left: 52px;
  }
}
.common_btnLink56 {
  padding-left: min(4vw, 56px);
}
@media only screen and (max-width: 768px) {
  .common_btnLink56 {
    padding-left: 52px;
  }
}
.common_btnLink79 {
  padding-left: min(5.6428571429vw, 79px);
}
@media only screen and (max-width: 768px) {
  .common_btnLink79 {
    padding-left: 77px;
  }
}
.common_btnLink:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_btnLink::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  right: 23px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: top;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .common_btnLink::before {
    width: 6px;
    height: 6px;
    right: 18px;
  }
}
.common_btnLink::after {
  content: "";
  position: absolute;
  background: #0E9352;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top;
  top: 50%;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .common_btnLink::after {
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.common_btnLinkGreen::before {
  border-top: solid 1px #0E9352;
  border-right: solid 1px #0E9352;
}
@media (max-width: 1200px) {
  .common_btnLinkGreen::before {
    right: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .common_btnLinkGreen::before {
    right: 18px;
  }
}
@media (max-width: 1200px) {
  .common_btnLinkGreen::after {
    right: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .common_btnLinkGreen::after {
    right: 10px;
  }
}
.common_btnLinkGreen::after {
  background: #FFF;
}
.common_btnLinkGreen {
  color: #FFF;
  background-color: #0E9352;
  box-shadow: 0px 4px 0px #0a6d3d;
}

/* list */
.common_list {
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .common_list {
    padding-left: 15px;
  }
}
.common_list::before {
  content: "";
  position: absolute;
  background-color: #0E9352;
  width: min(0.5714285714vw, 8px);
  height: min(0.5714285714vw, 8px);
  left: 10px;
  top: 10px;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .common_list::before {
    width: 8px;
    height: 8px;
    top: 9px;
    left: 0;
  }
}

/**/
.renewal_phase2 {
  display: none;
}

/*----------------------------------------------------------

ヘッダー

----------------------------------------------------------*/
/* 見出し */
/* ============================================ */
@media only screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    height: 70px;
  }
}
.header_info {
  display: block;
  width: 100%;
}
.header_info_txt {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header_info_txt {
    display: inherit;
    height: 20px;
    background: #0E9352;
    color: #fff;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    font-feature-settings: "palt";
  }
}
.header_navigation {
  padding: 6px 0 8px;
  border-top: 6px solid #0E9352;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .header_navigation {
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
  }
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .header_wrap {
    margin-right: calc(50% - 50vw);
  }
}
.header_logo {
  flex-basis: 25%;
}
@media only screen and (max-width: 768px) {
  .header_logo {
    flex-basis: 167px;
  }
}
.header_logo_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header_logo_img {
  width: 70%;
  aspect-ratio: auto 43/7;
  margin-right: 3%;
}
@media only screen and (max-width: 768px) {
  .header_logo_img {
    width: 121px;
  }
}
.header_logo_txt {
  font-size: clamp(14px, 1.87vw, 24px);
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .header_logo_txt {
    font-size: 13px;
  }
}
.header_mypage_menu {
  display: flex;
  justify-content: flex-end;
  column-gap: 2.7%;
  align-items: center;
  flex-grow: 1;
  margin-right: 1.5%;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu {
    margin-right: 0;
  }
}
.header_mypage_menu_user {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.header_mypage_menu_userIcon {
  margin-right: 8px;
}
.header_mypage_menu_userName {
  font-size: 15px;
  font-weight: 700;
}
.header_mypage_menu_inviteBtn {
  padding: 4px 12px 4px 4px;
  border: 1px solid #0E9352;
  border-radius: 6px;
  box-shadow: 0 2px 0 #0E9352;
  transition: all ease 0.3s;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_inviteBtn {
    display: none;
  }
}
.header_mypage_menu_inviteBtn:hover {
  background-color: #EEF7F2;
  box-shadow: 0 1px 0 #0E9352;
  transform: translateY(1px);
}
.header_mypage_menu_inviteBtnWrap {
  display: flex;
  align-items: center;
}
.header_mypage_menu_inviteBtnHead {
  margin-right: 6px;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #F6E929;
  font-size: clamp(10px, 1.01vw, 13px);
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.05em;
}
.header_mypage_menu_inviteBtnText {
  margin-right: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}
.header_mypage_menu_btn {
  display: flex;
  align-items: center;
}
.header_mypage_menu_btnItem {
  width: 80px;
  border-left: 1px solid #CCCCCC;
  transition: all ease 0.3s;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_btnItem {
    width: 60px;
  }
}
.header_mypage_menu_btnItem:last-child {
  border-right: 1px solid #CCCCCC;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_btnItem:last-child {
    border-right-width: 0;
  }
}
.header_mypage_menu_btnItem:hover {
  background-color: #EEF7F2;
}
.header_mypage_menu_btnItemWrap {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_btnItemWrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.header_mypage_menu_btnItemIcon {
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: auto 1/1;
  margin: 0 auto 4px;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_btnItemIcon {
    margin-top: 4px;
    margin-bottom: 0;
    width: 18px;
    height: 18px;
  }
}
.header_mypage_menu_btnItemText {
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.025em;
}
@media only screen and (max-width: 768px) {
  .header_mypage_menu_btnItemText {
    font-size: 10px;
    letter-spacing: 0;
  }
}
.header_contact {
  flex-basis: 216px;
  flex-shrink: 0;
}
.header_sp_btn {
  flex-basis: 56px;
  height: 50px;
}
.header_sp_btnLabel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #0E9352;
  cursor: pointer;
}
.header_sp_btnBar {
  position: relative;
  width: 23px;
  height: 14px;
  margin-bottom: 6px;
}
.header_sp_btnBarLine {
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  border-radius: 0.5px;
  background-color: #FFF;
  transform-origin: left;
  transition: all ease 0.3s;
}
.header_sp_btnBarLine.line1 {
  top: 0;
}
.header_sp_btnBarLine.line2 {
  top: 50%;
}
.header_sp_btnBarLine.line3 {
  bottom: 0;
}
.header_sp_btnText {
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.header_slide_menu {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 10000;
  width: 100vw;
  height: 0;
  overflow: hidden;
  background-color: #EEF7F2;
  transition: height ease 0.3s;
}
@media only screen and (max-width: 768px) {
  .header_slide_menu {
    top: 70px;
  }
}
.header_slide_menu_container {
  width: 80%;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 768px) {
  .header_slide_menu_container {
    width: 100%;
  }
}
.header_slide_menu_welcome {
  padding: 10px 0;
  border-bottom: 2px solid #FFF;
}
.header_slide_menu_member {
  padding: 19px 25px;
  border-radius: 6px;
  background-color: #FFF;
}
.header_slide_menu_memberName {
  margin-right: 8px;
  font-size: 18px;
  font-weight: 700;
}
.header_slide_menu_guest {
  padding: 14px 0;
  border-radius: 6px;
  background-color: #FFF;
}
.header_slide_menu_guestName {
  padding-left: 20px;
  margin-bottom: 9px;
  font-weight: 700;
}
.header_slide_menu_guestBtns {
  display: flex;
  justify-content: center;
  column-gap: 2.5%;
  padding: 0 3.6%;
}
.header_slide_menu_guestBtns_btn {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 4px 0 #0A6D3D;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header_slide_menu_guestBtns_btn {
    width: 100%;
  }
}
.header_slide_menu_guestBtns_btn.btn_white {
  background-color: #FFFFFF;
  color: #0E9352;
}
.header_slide_menu_guestBtns_btn.btn_green {
  background-color: #0E9352;
  color: #FFFFFF;
}
.header_slide_menu_guestBtns_btn.btn_grey {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: 0 3px 0 #AAA;
  color: #FFFFFF;
}
.header_slide_menu_guestBtns_btn.btn_no_shadow {
  box-shadow: none;
}
.header_slide_menu_guestBtns_btn_link {
  line-height: 40px;
  letter-spacing: 0.025em;
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .header_slide_menu_guestBtns_btn_link {
    line-height: 46px;
    font-size: 16px;
  }
}
.header_slide_menu_guestBtns_btn_link .btn_icon,
.header_slide_menu_guestBtns_btn_link .btn_text {
  vertical-align: middle;
}
.header_slide_menu_guestBtns_btn_link .btn_icon {
  aspect-ratio: auto 1/1;
  margin-right: 7px;
  width: 20px;
  height: 20px;
}
.header_slide_menu_guestBtns_btn_links {
  line-height: 40px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .header_slide_menu_guestBtns_btn_links {
    line-height: 1.5;
    padding-block: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .header_slide_menu_guestBtns_btn_links {
    font-size: 16px;
  }
}
.header_slide_menu_guestBtns_btn .btn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.header_slide_menu_guestBtns_btn:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.header_slide_menu_guestBtns_btn.btn_grey:hover {
  box-shadow: 0 2px 0 #AAA;
}
.header_slide_menuBtns {
  padding: 40px 0;
  background-color: #FFF;
}
.header_slide_menuBtnsWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.header_slide_menuBtns_btn {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 4px 0 #0A6D3D;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header_slide_menuBtns_btn {
    width: 100%;
  }
}
.header_slide_menuBtns_btn.btn_white {
  background-color: #FFFFFF;
  color: #0E9352;
}
.header_slide_menuBtns_btn.btn_green {
  background-color: #0E9352;
  color: #FFFFFF;
}
.header_slide_menuBtns_btn.btn_grey {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: 0 3px 0 #AAA;
  color: #FFFFFF;
}
.header_slide_menuBtns_btn.btn_no_shadow {
  box-shadow: none;
}
.header_slide_menuBtns_btn_link {
  line-height: 40px;
  letter-spacing: 0.025em;
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .header_slide_menuBtns_btn_link {
    line-height: 46px;
    font-size: 16px;
  }
}
.header_slide_menuBtns_btn_link .btn_icon,
.header_slide_menuBtns_btn_link .btn_text {
  vertical-align: middle;
}
.header_slide_menuBtns_btn_link .btn_icon {
  aspect-ratio: auto 1/1;
  margin-right: 7px;
  width: 20px;
  height: 20px;
}
.header_slide_menuBtns_btn_links {
  line-height: 40px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .header_slide_menuBtns_btn_links {
    line-height: 1.5;
    padding-block: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .header_slide_menuBtns_btn_links {
    font-size: 16px;
  }
}
.header_slide_menuBtns_btn .btn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.header_slide_menuBtns_btn:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.header_slide_menuBtns_btn.btn_grey:hover {
  box-shadow: 0 2px 0 #AAA;
}
.header #toggle-slide-menu:checked ~ .header_slide_menu {
  height: calc(100vh - 80px);
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  .header #toggle-slide-menu:checked ~ .header_slide_menu {
    height: calc(100vh - 70px);
  }
}
.header #toggle-slide-menu:checked ~ .header_navigation .header_sp_btnBar .line1 {
  width: 27px;
  transform: rotate(31deg);
}
.header #toggle-slide-menu:checked ~ .header_navigation .header_sp_btnBar .line2 {
  display: none;
}
.header #toggle-slide-menu:checked ~ .header_navigation .header_sp_btnBar .line3 {
  width: 27px;
  transform: rotate(-31deg);
}
.header_menu {
  height: 56px;
  background-color: #333333;
}
.header_menu_container {
  height: 100%;
}
.header_menu_list {
  display: flex;
  align-items: center;
  height: 100%;
}
.header_menu_item {
  position: relative;
  z-index: 1;
  flex-basis: 20%;
  height: 100%;
  border-left: 1px solid #FFF;
}
.header_menu_item:last-child {
  border-right: 1px solid #FFF;
}
.header_menu_item::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 0;
  background-color: #545454;
  content: "";
  transition: height ease 0.3s;
}
.header_menu_item:hover::before {
  height: 100%;
}
.header_menu_itemWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}
.header_menu_itemWrap .menu_item_small {
  font-size: 10px;
  line-height: 15px;
}
@media only screen and (max-width: 1024px) {
  .header_sp_none {
    display: none;
  }
}
.header_pc_none {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header_pc_none {
    display: block;
  }
}

.scroll_lock {
  overflow: hidden;
}

.front_spNav_sectionHead {
  padding: 11px 0;
}
.front_spNav_sectionIcon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.front_spNav_sectionTitle {
  color: #0E9352;
  font-weight: 700;
  vertical-align: middle;
}
.front_spNav_menu {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1px;
  row-gap: 1px;
  background-color: #CCC;
}
.front_spNav_menuItem {
  position: relative;
  flex-basis: calc(50% - 0.5px);
  padding-left: 20px;
  background-color: #FFF;
  font-weight: 700;
  line-height: 46px;
}
.front_spNav_menuItemArrow {
  position: absolute;
  right: 7%;
  top: calc(50% - 2px);
  transform: rotate(45deg);
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #0E9352;
  border-right: 1px solid #0E9352;
}
.front_spNav_menuItemW {
  line-height: 62px;
}
.front_spNav_menuItem2Row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 62px;
}
.front_spNav_menuItemSpan {
  display: block;
  line-height: 20px;
}
.front_spNav_menuItemSmall {
  font-size: 10px;
  line-height: 1.6;
}
.front_spNav_menuItemBottom {
  border-bottom: 1px solid #CCC;
}

@media only screen and (max-width: 1024px) {
  .main {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .main {
    padding-top: 70px;
  }
}

/*----------------------------------------------------------

フッター

----------------------------------------------------------*/
/* 見出し */
/* ============================================ */
@media only screen and (max-width: 768px) {
  .footer {
    padding-bottom: 52px;
  }
}
.footer_container {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .footer_container {
    flex-direction: column-reverse;
  }
}
.footer_info {
  background-color: #333333;
  color: #FFF;
  letter-spacing: 0.1em;
}
.footer_info_brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 0 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media only screen and (max-width: 768px) {
  .footer_info_brand {
    justify-content: center;
    flex-direction: column;
    padding: 50px 0 50px;
  }
}
.footer_info_brandCompany .footer_logo {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
@media only screen and (max-width: 768px) {
  .footer_info_brandCompany .footer_logo {
    justify-content: center;
    row-gap: 13px;
    margin-bottom: 31px;
  }
}
.footer_info_brandCompany .footer_logo_link {
  position: relative;
}
.footer_info_brandCompany .footer_logo_linkImg {
  aspect-ratio: auto 197/32;
  width: 197px;
  height: 32px;
  margin-right: 10px;
}
.footer_info_brandCompany .footer_logo_linkTxt {
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 32px;
}
.footer_info_brandCompany .footer_logo_linkImg, .footer_info_brandCompany .footer_logo_linkTxt {
  vertical-align: middle;
}
.footer_info_brandCompany .footer_logo_nakanoauto {
  font-size: 15px;
}
.footer_info_brandCompany .footer_logo_nakanoautoLink {
  text-decoration: underline;
}
.footer_info_brandCompanyAccess {
  font-size: 13px;
  line-height: 23.4px;
}
@media only screen and (max-width: 768px) {
  .footer_info_brandCompanyAccess {
    text-align: center;
    letter-spacing: 0.025em;
  }
}
@media only screen and (max-width: 768px) {
  .footer_info_brandCompanyAccessLink {
    text-decoration: underline;
  }
}
.footer_info_brandSeal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 15px;
  flex-basis: 42%;
  padding: 15px 20px;
  border-radius: 6px;
  background-color: #EFEFEF;
}
@media only screen and (max-width: 768px) {
  .footer_info_brandSeal {
    margin-top: 25px;
    padding: 15px 5px;
  }
}
.footer_info_brandSeal .seal {
  flex-basis: 30%;
}
@media only screen and (max-width: 768px) {
  .footer_info_brandSeal .seal {
    flex-basis: 200px;
  }
}
.footer_info_brandSealTxt {
  flex-grow: 1;
  color: #333333;
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 20.8px;
}
.footer_info_nav {
  padding: 35px 0 60px;
}
.footer_info_navWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  align-items: flex-start;
}
.footer_info_navMenu {
  min-width: 185px;
}
.footer_info_navMenuTtl {
  margin-bottom: 10px;
  font-size: 15px;
}
.footer_info_navMenuItem {
  position: relative;
  padding-left: 40px;
  font-size: 13px;
  line-height: 2;
}
.footer_info_navMenuItem::before {
  position: absolute;
  top: calc(50% - 2px);
  left: 17px;
  display: block;
  width: 13px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  content: "";
}
.footer_info_navMenuItemSmall {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1;
}
.footer_info_navMenuItemLink:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer_contact {
  padding: 30px 0;
}
.footer_contact_wrap {
  display: flex;
  justify-content: space-between;
}
.footer_contact_exMenu {
  flex-grow: 1;
}
.footer_contact_exMenuList {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuList {
    flex-wrap: wrap;
    row-gap: 0.5em;
    column-gap: 0.5em;
    margin-bottom: 30px;
  }
}
.footer_contact_exMenuListItem {
  font-size: clamp(12px, 1.01vw, 13px);
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuListItem {
    font-size: 16px;
  }
}
.footer_contact_exMenuListItem:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer_contact_exMenuListItem_separator {
  color: #CCC;
}
.footer_contact_exMenuBtns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuBtns {
    row-gap: 12px;
    justify-content: center;
  }
}
.footer_contact_exMenuBtns .footer_contact_btn {
  width: 252px;
  height: 36px;
  border-radius: 18px;
  background-color: #E8340C;
  transition: all ease 0.3s;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuBtns .footer_contact_btn {
    width: 310px;
    height: 44px;
    border-radius: 22px;
  }
}
.footer_contact_exMenuBtns .footer_contact_btn:hover {
  background-color: #D1320E;
}
.footer_contact_exMenuBtns .footer_contact_btnWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer_contact_exMenuBtns .footer_contact_btnIcon {
  display: inline-block;
  aspect-ratio: auto 1/1;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuBtns .footer_contact_btnIcon {
    width: 20px;
    height: 20px;
  }
}
.footer_contact_exMenuBtns .footer_contact_btnTxt {
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .footer_contact_exMenuBtns .footer_contact_btnTxt {
    font-size: 16px;
  }
}
.footer_contact_exMenuBtns .footer_contact_btnIcon, .footer_contact_exMenuBtns .footer_contact_btnTxt {
  vertical-align: middle;
}
.footer_contact_telCopy {
  flex-basis: 33%;
  flex-shrink: 0;
}
.footer_contact_telCopy .footer_contact_tel {
  width: 216px;
  margin-left: auto;
  margin-bottom: 14px;
}
.footer_contact_telCopy .footer_copyright {
  color: #666;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: right;
}
.footer_copyright_sp {
  padding: 20px 0;
  color: #666;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.footer_fixed {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px;
  background-color: #EEF7F2;
}
.footer_fixed_wrap {
  display: flex;
  justify-content: center;
  column-gap: 6px;
}
.footer_fixed_btn {
  position: relative;
  display: block;
  width: 100%;
  box-shadow: 0 4px 0 #0A6D3D;
  border: 1px solid #0E9352;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  flex-basis: 50%;
}
@media only screen and (max-width: 768px) {
  .footer_fixed_btn {
    width: 100%;
  }
}
.footer_fixed_btn.btn_white {
  background-color: #FFFFFF;
  color: #0E9352;
}
.footer_fixed_btn.btn_green {
  background-color: #0E9352;
  color: #FFFFFF;
}
.footer_fixed_btn.btn_grey {
  background-color: #CCC;
  border-color: #CCC;
  box-shadow: 0 3px 0 #AAA;
  color: #FFFFFF;
}
.footer_fixed_btn.btn_no_shadow {
  box-shadow: none;
}
.footer_fixed_btn_link {
  line-height: 40px;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .footer_fixed_btn_link {
    line-height: 40px;
    font-size: 16px;
  }
}
.footer_fixed_btn_link .btn_icon,
.footer_fixed_btn_link .btn_text {
  vertical-align: middle;
}
.footer_fixed_btn_link .btn_icon {
  aspect-ratio: auto 1/1;
  margin-right: 7px;
  width: 20px;
  height: 20px;
}
.footer_fixed_btn_links {
  line-height: 40px;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .footer_fixed_btn_links {
    line-height: 1.5;
    padding-block: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .footer_fixed_btn_links {
    font-size: 16px;
  }
}
.footer_fixed_btn .btn_arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.footer_fixed_btn:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.footer_fixed_btn.btn_grey:hover {
  box-shadow: 0 2px 0 #AAA;
}
.footer_fixed_btn_img {
  display: block;
  margin: auto 5px auto 0;
}
.footer_fixed_btn_link {
  display: flex;
  justify-content: center;
}
.footer_spNav {
  background-color: #EEF7F2;
}
.footer_spNav .front_spNav_sectionIcon {
  display: none;
}

#page_top {
  position: fixed;
  right: 50px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #999;
}
@media only screen and (max-width: 768px) {
  #page_top {
    width: 9.766vw;
    height: 9.766vw;
  }
}
#page_top .page_top_link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 6em;
}
#page_top .page_top_link::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 15px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(-45deg);
  transform-origin: center;
  content: "";
}