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

  Utility

* ============================================================= */
/* margin
----------------------------*/
.u-both-space {
  padding: 5em 0;
}

.u-top-space {
  padding-top: 5em;
}

.u-bottom-space {
  padding-bottom: 5em;
}

/* background
----------------------------*/
.u-bg-white {
  background-color: #fff;
}

.u-bg-gray {
  background-color: #F4F4F4;
}

.u-bg-gray02 {
  background-color: #F2F2F2;
}

.u-bg-gray03 {
  background-color: #a0a0a0;
}

.u-bg-red {
  background-color: #c00;
}

.u-bg-black {
  background-color: #000;
}

/* color
----------------------------*/
.u-color-white {
  color: #fff;
}

.u-color-black {
  color: #000;
}

.u-color-lightgray {
  color: #F4F4F4;
}

.u-color-red {
  color: #c00;
}

/* display
----------------------------*/
.u-d-block {
  display: block !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-none {
  display: none !important;
}

/* utility
----------------------------*/
.u-align-center {
  text-align: center;
}

.u-strong {
  font-weight: bold !important;
}

.u-pc-br {
  display: block;
}

.u-sp-br {
  display: none;
}

.u-sp-only {
  display: none !important;
}

.u-fz-small {
  font-size: 1.2rem;
}

.u-w-100p {
  width: 100% !important;
}

/* hover
----------------------------*/
.u-hover-text {
  text-decoration: underline;
}

.u-hover-text:hover {
  text-decoration: none;
}

.u-hover-opacity {
  display: block;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.u-hover-opacity:hover {
  opacity: .6;
}

/*  Utility Media Query
* ===================================== */
@media screen and (max-width: 1024px) {
  .u-dt-only {
    display: none !important;
  }
  .u-sp-only {
    display: block !important;
  }
  .u-hover-opacity:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 414px) {
  .u-both-space {
    padding: 3em 0;
  }
  .u-top-space {
    padding-top: 3em;
  }
  .u-bottom-space {
    padding-bottom: 3em;
  }
  .u-pc-br {
    display: none;
  }
  .u-sp-br {
    display: block;
  }
}

/* =============================================================

  Base

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

body {
  width: 100%;
  height: 100%;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  -webkit-font-kerning: auto;
  font-kerning: auto;
  text-rendering: optimizeLegibility;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  position: relative;
}

a {
  color: #c00;
  text-decoration: none;
}

a.js-tel {
  text-decoration: none !important;
  color: #000;
}

a.js-tel._active {
  text-decoration: underline !important;
}

.l-wrapper {
  width: 100%;
  min-height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
  color: #000;
  overflow: hidden;
}

#googleAnalyticsImageObj {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*  Base Media Query
* ===================================== */
@media screen and (max-width: 414px) {
  .l-wrapper {
    font-size: 1.3rem;
  }
}

/* =============================================================

  Header

* ============================================================= */
.l-header {
  width: 100%;
  height: 94px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  z-index: 3;
  background-color: #fff;
}

.l-header__inner {
  width: 100%;
  height: 100%;
  padding: 0 2.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.l-header-logo {
  width: 16em;
  z-index: 2;
}

.l-header-logo > a {
  display: block;
}

.l-header-logo > a img {
  max-width: 100%;
  display: block;
}

/* g-navigation
----------------------------*/
.l-header-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header-gnav__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-header-gnav__target {
  color: #fff;
}

.l-header-gnav__item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.l-header-gnav__item:not(:first-of-type) {
  margin-left: 1.5em;
}

.l-header-gnav__item:hover .l-header-drawer {
  opacity: 1;
  visibility: visible;
}

.l-header-gnav__item:hover .l-header-gnav__link:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #F4F4F4 transparent;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: -55%;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.l-header-gnav__item:hover .l-header-gnav__link.is-disable:before {
  content: none;
}

.l-header-gnav__item .en,
.l-header-gnav__item .ja {
  display: block;
}

.l-header-gnav__item .en {
  font-size: 1rem;
  color: #a0a0a0;
  letter-spacing: 0.1rem;
}

.l-header-gnav__item .ja {
  font-size: 1.55rem;
  font-weight: 500;
}

.l-header-gnav__link {
  display: block;
  padding: 0 .35em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-decoration: none !important;
  color: #000 !important;
}

/* drawer
----------------------------*/
.l-header-drawer {
  position: absolute;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 100%;
  padding: 1.5em 2em;
  visibility: hidden;
  z-index: 999;
  background-color: #F4F4F4;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header-drawer__inner {
  width: 1160px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-header-drawer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.l-header-drawer__item:not(:first-of-type):before {
  content: "/";
  display: inline;
  margin: 0 1em;
}

.l-header-drawer__item > a {
  display: block;
  font-size: 1em;
  color: #000 !important;
  text-decoration: none !important;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

/* hamburger
----------------------------*/
.l-header-toggle-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  width: 40px;
  z-index: 3;
}

.l-header-menu-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 30px;
}

.l-header-menu-trigger span {
  display: block;
  -webkit-transition: all .4s ease-out;
  -o-transition: all .4s ease-out;
  transition: all .4s ease-out;
  width: 100%;
  height: 4px;
  background-color: #191919;
}

.l-header-menu-trigger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(0.65em) rotate(-45deg);
  -ms-transform: translateY(0.65em) rotate(-45deg);
  transform: translateY(0.65em) rotate(-45deg);
}

.l-header-menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.l-header-menu-trigger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-1em) rotate(45deg);
  -ms-transform: translateY(-1em) rotate(45deg);
  transform: translateY(-1em) rotate(45deg);
}

/* sidebar
----------------------------*/
.l-sidebar {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  top: 35%;
  right: 0;
  z-index: 2;
}

.l-sidebar-button {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Verdana, Helvetica, Arial, sans-serif !important;
  color: #fff !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none !important;
  width: 8em;
  padding: .594em 0;
  text-align: center;
  position: relative;
}

.l-sidebar-button:before {
  content: "";
  display: block;
  position: absolute;
  left: -1.28em;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 20px 35px 0;
}

.l-sidebar-button:first-of-type {
  background-color: #c00;
}

.l-sidebar-button:first-of-type:before {
  border-color: transparent #c00 transparent transparent;
}

.l-sidebar-button:last-of-type {
  background-color: #ffb300;
}

.l-sidebar-button:last-of-type:before {
  border-color: transparent #ffb300 transparent transparent;
}

.l-sidebar-button__icon {
  padding-bottom: .5em;
}

.l-sidebar-button__icon img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.l-sidebar-button__label {
  font-size: 1.2rem;
  letter-spacing: .5em;
  font-weight: 200;
}

/*  Header Media Query
* ===================================== */
@media screen and (min-width: 1025px) and (max-width: 1240px) {
  .l-header-logo {
    width: 13em;
  }
  .l-header-gnav__item:not(:first-of-type) {
    margin-left: 1em;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1136px) {
  .l-header-gnav__item .ja {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .l-header-gnav {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-top: 90px solid #fff;
    background-color: rgba(255, 255, 255, 0.9);
    visibility: hidden;
    overflow-y: auto;
    opacity: 0;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
  }
  .l-header-gnav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .l-header-gnav__item {
    margin: auto;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border-bottom: 1px solid #000;
  }
  .l-header-gnav__item:not(:first-of-type) {
    margin-left: 0;
  }
  .l-header-gnav__item:hover .l-header-drawer {
    visibility: hidden;
    opacity: 0;
  }
  .l-header-gnav__item:hover .l-header-gnav__link:before {
    content: none;
  }
  .l-header-gnav__link {
    padding: .6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-header-gnav__link:before {
    content: none;
  }
  .l-header-gnav__link:after {
    content: "\FF0B";
    font-size: 2rem;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    line-height: 1;
  }
  .l-header-gnav__link.is-open:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header-gnav__link.is-disable:after {
    content: "";
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    transition: none;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    width: 12px;
    height: 12px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: .25em;
  }
  .l-header-gnav__link .en {
    display: none;
  }
  .l-header-drawer {
    position: static;
    width: 100%;
    min-width: 0;
    height: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    opacity: 1;
    visibility: hidden;
    overflow: hidden;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  .l-header-drawer.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    height: 100%;
  }
  .l-header-drawer__inner {
    display: block;
    padding: 0 1em 1em;
  }
  .l-header-drawer__item:not(:first-of-type):before {
    content: none;
  }
  .l-header-drawer__item:not(:last-of-type) {
    margin: .75em 0;
  }
  .l-header-drawer__item > a:hover {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .l-header-toggle-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .l-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    opacity: 0;
    -webkit-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s;
    width: 100%;
    z-index: 3;
    top: initial;
    bottom: 0px;
    /* height: 10em; */
    /* height: 6.5em; */
  }
  .l-sidebar.is-open {
    opacity: 1;
  }
  .l-sidebar-button {
    width: 33.33333%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: .7em;
  }
  .l-sidebar-button a {
    display: flex;
    justify-content: flex-start;
    padding: 1.3em 0 0.594em;
  }
  .l-sidebar-button:before {
    content: none;
  }
  .l-sidebar-button:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .l-header-gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-header-gnav__list {
    margin-bottom: auto;
  }
}

@media screen and (max-width: 414px) {
  .l-header {
    height: 65px;
  }
  .l-header__inner {
    padding: 0 1em;
  }
  .l-header-logo {
    width: 60%;
  }
  .l-header-gnav {
    border-top: 65px solid #fff;
  }
  .l-header-gnav__link {
    font-size: 1.4rem;
  }
  .l-header-drawer__item > a {
    font-size: 1.2rem;
  }
  .l-header-menu-trigger.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-1.25em) rotate(45deg);
    -ms-transform: translateY(-1.25em) rotate(45deg);
    transform: translateY(-1.25em) rotate(45deg);
  }
}

/* =============================================================

  Footer

* ============================================================= */
.l-footer {
  position: relative;
  background-color: #191919;
}

.l-footer-logo {
  padding-bottom: 1em;
}

.l-footer-pagetop {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  border: 3px solid #fff;
  background-color: #a0a0a0;
  font-size: .8em;
  position: absolute;
  right: 4em;
  top: -1em;
  padding: 1em;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100;
}

.l-footer-pagetop span {
  position: relative;
}

.l-footer-pagetop span:before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  margin: auto;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.l-footer-inner {
  padding: 2em 0 6em;
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-footer-info {
  text-align: center;
  font-size: .75em;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-footer-info__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-footer-info__body li:not(:last-of-type):after {
  content: "/";
  margin: 0 .5em;
}

.l-footer-info__body a {
  color: #fff;
}

.l-footer-sitemap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 50%;
}

.l-footer-sitemap-col {
  width: 50%;
}

.l-footer-sitemap-box {
  letter-spacing: .07em;
  position: relative;
}

.l-footer-sitemap-box:not(:first-of-type) {
  margin-top: 1em;
}

.l-footer-sitemap-box__head {
  margin-bottom: 1.25em;
  text-decoration: none !important;
  color: #fff;
}

.l-footer-sitemap-box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #fff;
  line-height: 1;
}

.l-footer-sitemap-box__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .5em;
}

.l-footer-sitemap-box__list > li:not(:last-of-type):after {
  content: "/";
  margin: 0 .25em;
}

.l-footer-sitemap-box__list > li a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none !important;
  font-weight: 300;
}

.l-footer-corporate {
  width: 100%;
  color: #fff;
  text-align: right;
  font-size: 1.2rem;
}

.l-footer-copyright {
  display: block;
  text-align: center;
}

/*  Footer Media Query
* ===================================== */
@media screen and (max-width: 1024px) {
  .l-footer-corporate {
    text-align: center;
    padding: 2em 0 0;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-pagetop {
    top: -2.5em;
  }
  .l-footer-sitemap {
    display: none;
  }
}

.CMN-RECYCLE a{
  color: #fff;
  text-decoration: underline;
}
.CMN-RECYCLE a:hover{
  text-decoration: none;
}

/* =============================================================

  Main

* ============================================================= */
.l-main {
  position: relative;
  width: 100%;
  padding-top: 90px;
}

.c-container {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-container-inner {
  max-width: 1160px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* language
----------------------------*/
.ja {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

.en {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Verdana, Helvetica, Arial, sans-serif;
  letter-spacing: .5em;
}

.en:first-letter {
  color: #c00;
}

/* page-heading
----------------------------*/
.c-page-heading {
  position: relative;
}

.c-page-heading__bg {
  width: 100%;
  height: 0;
  padding-top: 20%;
  min-width: 0%;
}

.c-page-heading__inner {
  width: 1160px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.c-page-heading__title {
  position: relative;
}

.c-page-heading__title:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #c00;
  display: block;
  margin-top: 1.5em;
}

.c-page-heading__title .ja {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.c-page-heading__title .en {
  font-size: 1.6rem;
  display: block;
}

.c-title-overlaybg {
  font-size: 15rem;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  z-index: 0;
  opacity: .05;
}

.c-title-overlaybg._opacity {
  opacity: 1;
}

/* breadcrumbs
----------------------------*/
.c-breadcrumb {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 5em;
}

.c-breadcrumbs {
  color: #000 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-breadcrumbs a {
  font-weight: 500;
  color: #c00 !important;
  text-decoration: none !important;
}

.c-breadcrumbs a:hover {
  text-decoration: underline !important;
}

.c-breadcrumbs li {
  font-size: 1.4rem !important;
}

.c-breadcrumbs li:first-of-type:before {
  content: url(../img/icon_home.png);
  padding-right: 1.5em;
}

.c-breadcrumbs li + li:before {
  content: "＞";
  display: inline;
  padding: 0 .8em;
}

/* page-contents
---------------------------- */
.l-page-contents {
  position: relative;
}

.c-position-center {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

/*  Main Media Query
* ============================== */
@media screen and (max-width: 1024px) {
  .c-container-inner {
    padding: 0 2em;
  }
  .c-page-heading__inner {
    padding: 0 2em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .c-breadcrumbs {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .c-page-heading__title .ja {
    font-size: 3rem;
  }
  .c-page-heading__title .en {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 414px) {
  .l-main {
    padding-top: 65px;
  }
  .c-icon {
    display: block;
    max-width: 3em;
  }
  .c-icon img {
    display: block;
    max-width: 100%;
    margin: auto;
  }
  .c-container-inner {
    padding: 0 1em;
  }
  .c-page-heading__bg {
    padding-top: 30%;
    background-position: center;
  }
  .c-page-heading__title .en {
    font-size: 1.4rem;
  }
  .c-page-heading__title .ja {
    font-size: 2rem;
  }
}

/* =============================================================

  Button

* ============================================================= */
.c-button {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  text-decoration: none !important;
  font-size: 1.8rem;
  padding: .5em;
  text-align: center;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.c-button:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 1em;
  top: 1em;
}

.c-button.is-default {
  border: 2px solid #fff;
  color: #c00;
  background-color: #fff;
}

.c-button.is-default:before {
  border-color: #c00;
}

.c-button.is-default:hover {
  color: #fff;
  background-color: #c00;
}

.c-button.is-default:hover:before {
  border-color: #fff;
}

.c-button.is-primary {
  border: 2px solid #c00;
  color: #fff;
  background-color: #c00;
}

.c-button.is-primary:before {
  border-color: #fff;
}

.c-button.is-primary:hover {
  color: #c00;
  background-color: #fff;
}

.c-button.is-primary:hover:before {
  border-color: #c00;
}

/*  Button Media Query
* ============================== */
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .c-button {
    font-size: 1.2rem;
  }
}

/* =============================================================

  Calendar

* ============================================================= */
.c-calendar {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  padding: 0;
  pointer-events: none;
  -webkit-transition: padding .3s ease-in-out, opacity .3s ease-in-out, left .1s linear .3s;
  -o-transition: padding .3s ease-in-out, opacity .3s ease-in-out, left .1s linear .3s;
  transition: padding .3s ease-in-out, opacity .3s ease-in-out, left .1s linear .3s;
}

.c-calendar.is-visible {
  left: 0;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: padding .3s ease-in-out, opacity .3s ease-in-out;
  -o-transition: padding .3s ease-in-out, opacity .3s ease-in-out;
  transition: padding .3s ease-in-out, opacity .3s ease-in-out;
}

.c-calendar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 0 auto;
}

.c-calendar__box {
  position: relative;
  background-color: #fff;
  padding: 2em;
}

.c-calendar__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-bottom: 1.75em;
}

.c-calendar__head a {
  font-size: 0;
  position: relative;
  display: block;
}

.c-calendar__head a:before {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.c-calendar__head a.c-calendar__prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 0;
}

.c-calendar__head a.c-calendar__next:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 0;
}

.c-calendar .cal_month {
  margin-bottom: 15px;
  line-height: 1;
  text-align: center;
  font-size: 1.8em;
}

.c-calendar__body table {
  border-spacing: 1px;
  border-collapse: separate;
  table-layout: fixed;
  width: 100%;
}

.c-calendar__body table th,
.c-calendar__body table td {
  line-height: 1.2;
}

.c-calendar__body table th > div {
  text-align: center;
}

.c-calendar__body table td > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 3.85em;
  margin: .1em auto 0;
}


.c-calendar__body table td .cal_close01 {
  background-color: #c00;
  color: #fff;
}

.c-calendar__body table td .cal_close02 {
  background-color: #ffb300;
  color: #fff;
}

.c-calendar__body table td .cal_noClose {
  color: #000;
  background-color: #fff;
}

.c-calendar__body table .cal_headline th,
.c-calendar__body table .cal_headline td {
  font-weight: bold;
  padding-bottom: 1em;
}

.c-calendar__notes li {
  position: relative;
}

.c-calendar__notes li:before {
  content: "■";
}

.c-calendar__notes li.cal_close01:before {
  color: #c00;
}

.c-calendar__notes li.cal_close02:before {
  color: #ffb300;
}

.js-calendar-arrow.is-disabled {
  opacity: 0 !important;
  pointer-events: none;
}

/*  Calendar Media Query
* ============================== */
@media screen and (max-width: 768px) {
  .c-calendar__inner {
    width: 90%;
  }
}

@media screen and (max-width: 414px) {
  .c-calendar__box {
    padding: 1.5em;
  }
  .c-calendar__head {
    padding: 0 2.5em 1.75em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

/* =============================================================

  Card

* ============================================================= */
.c-card__link {
  position: relative;
  overflow: hidden;
  display: block;
}

.c-card__link:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  -webkit-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.c-card__link:hover:before {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: -webkit-transform ease 1000ms;
  transition: -webkit-transform ease 1000ms;
  -o-transition: transform ease 1000ms;
  transition: transform ease 1000ms;
  transition: transform ease 1000ms, -webkit-transform ease 1000ms;
}

/* ============================================================= *

  Grid

* ============================================================= */
.c-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-grid__box {
  width: calc((100%/2) - .5em);
}

.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-row._jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Grid Media Query
=============================== */
@media screen and (max-width: 768px) {
  .c-grid__box {
    width: 100%;
  }
  .c-grid__box:not(:last-of-type) {
    margin-bottom: 5em;
  }
}

/* =============================================================

  List

* ============================================================= */
.c-list {
  line-height: 1.9;
}

.c-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}

.c-list__item:before {
  content: "・";
  margin-bottom: .35em;
}

.c-list__item em {
  font-weight: 600;
}

.c-caution {
  margin-top: 1.5em;
  font-size: 1.3rem;
}

.c-caution > li:before {
  content: "※";
}

.c-caution > li em {
  font-weight: 600;
}

.c-notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-notes li:before {
  content: "□";
  margin-right: .5em;
}

/*  List Media Query
* ============================== */
@media screen and (max-width: 414px) {
  .c-list__item {
    font-size: 1.1rem;
  }
  .c-caution {
    font-size: 1.1rem;
  }
  .c-notes li {
    font-size: 1.1rem;
  }
}

/* =============================================================

  Loading

* ============================================================= */
.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
}

.l-loading-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

.l-loading-spinner .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.l-loading-spinner .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c00;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.l-loading-spinner .sk-cube:nth-of-type(2) {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  -ms-transform: scale(1.1) rotate(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.l-loading-spinner .sk-cube:nth-of-type(2):before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.l-loading-spinner .sk-cube:nth-of-type(3) {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  -ms-transform: scale(1.1) rotate(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.l-loading-spinner .sk-cube:nth-of-type(3):before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.l-loading-spinner .sk-cube:nth-of-type(4) {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  -ms-transform: scale(1.1) rotate(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.l-loading-spinner .sk-cube:nth-of-type(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* =============================================================

  Section

* ============================================================= */
/* sec-container
----------------------------*/
.c-section-container {
  width: 100%;
  position: relative;
}

/* sec-header
----------------------------*/
.c-section-header {
  width: 100%;
  padding: 0 0 2.5em;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-section-header__title {
  position: relative;
  text-align: center;
}

.c-section-header__title:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #c00;
  display: block;
  margin: 2em auto 0;
}

.c-section-header__title .ja {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: .2em;
}

.c-section-header__title .en {
  display: block;
  font-weight: 500;
  margin-bottom: 1px;
}

/* sec-subtitle
----------------------------*/
.c-section-sub {
  width: 100%;
  padding: 0 0 1.875em;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-section-sub__title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1;
}

.c-section-sub__title:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #c00;
  display: block;
  margin: .83335em 0 0;
}

/* sec-title
----------------------------*/
.c-section-title {
  position: relative;
  width: 100%;
}

.c-section-title:after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #c00;
  display: block;
  margin-top: 1.5em;
}

.c-section-title._center:after {
  margin: 1.5em auto 0;
}

.c-section-title._lg .ja {
  font-size: 2.8rem;
}

.c-section-title .en,
.c-section-title .ja {
  color: #000;
}

.c-section-title .en {
  display: inline-block;
  font-size: 1.23em;
}

.c-section-title .ja {
  display: block;
  font-size: 2.15em;
  letter-spacing: .3em;
  font-weight: 500;
}

/* sec-inner
----------------------------*/
.c-section-inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1160px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* section-lead
----------------------------*/
.c-section-lead p {
  text-align: center;
  font-weight: 500;
}

/* section-desc
----------------------------*/
.c-section-desc {
  letter-spacing: .07em;
  padding: 2.85em 0;
}

/*  Section Media Query
* ============================== */
@media screen and (max-width: 1024px) {
  .c-section-inner {
    padding: 0 2em;
  }
}

@media screen and (max-width: 768px) {
  .c-section-header__title {
    padding-bottom: .75em;
  }
  .c-section-header .ja {
    font-size: 2.4rem;
  }
  .c-section-header .en {
    font-size: 1.5rem;
  }
  .c-section-header__subtitle {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 414px) {
  .c-section-header {
    padding: 0 0 1.5em;
  }
  .c-section-header .en {
    font-size: 1.2rem;
  }
  .c-section-sub__title {
    font-size: 1.8rem;
  }
  .c-section-title._lg .ja {
    font-size: 2.2rem;
  }
  .c-section-inner {
    padding: 0 1em;
  }
  .c-section-lead {
    font-size: 1.2rem;
  }
  .c-section-lead p {
    text-align: left;
    line-height: 1.8;
  }
  .c-section-desc {
    padding: 1.5em 0;
    font-size: 1.2rem;
  }
}

/* ============================================================= *

  Navigation

* ============================================================= */
.c-nav-menu {
  width: 33.33333%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-nav-menu__link {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.c-nav-menu__link:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 77.033%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  -webkit-transition: all 300ms ease 0ms;
  -o-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
}

.c-nav-menu__link:hover:before {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transition: -webkit-transform ease 1000ms;
  transition: -webkit-transform ease 1000ms;
  -o-transition: transform ease 1000ms;
  transition: transform ease 1000ms;
  transition: transform ease 1000ms, -webkit-transform ease 1000ms;
}

.c-nav-menu__link[data-id="democar"]:before {
  background-image: url(../img/top/topContents_democar.jpg);
}

.c-nav-menu__link[data-id="campaign"]:before {
  background-image: url(../img/top/topContents_campaign.jpg);
}

.c-nav-menu__link[data-id="maintenance"]:before {
  background-image: url(../img/top/topContents_maintenance.jpg);
}

.c-nav-menu__link[data-id="carlife"]:before {
  background-image: url(../img/top/topContents_rental.jpg);
}

.c-nav-menu__link[data-id="usedcar"]:before {
  background-image: url(../img/sr/srContents_usedcar.jpg);
}

.c-nav-menu__link[data-id="beginners"]:before {
  background-image: url(../img/top/bg_welcome.jpg);
}

.c-nav-menu__inner {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.c-nav-menu__head .ja,
.c-nav-menu__head .en {
  color: #fff !important;
}

.c-nav-menu__head .ja {
  letter-spacing: .3em;
  font-size: 2.8rem;
  display: block;
  text-indent: .3em;
}

.c-nav-menu__head .en {
  font-size: 1.6rem;
  text-align: center;
  display: block;
}

.c-nav-menu__body {
  position: absolute;
  bottom: 4em;
  left: 0;
  right: 0;
}

/* Navigation Media Query
=============================== */
@media screen and (max-width: 1024px) {
  .c-nav-menu__body {
    bottom: 1em;
  }
}

@media screen and (max-width: 768px) {
  .c-nav-menu__inner {
    width: 100%;
  }
  .c-nav-menu__head .ja {
    font-size: 2rem;
  }
  .c-nav-menu__head .en {
    font-size: 1.3rem;
  }
  .c-nav-menu__body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .c-nav-menu {
    width: 100%;
  }
}

/* =============================================================

  Tab

* ============================================================= */
.c-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: calc(100% + 2%);
  position: relative;
}

.c-tab:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-tab__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 33.33333%;
}

.c-tab__item:not(:last-of-type) {
  padding-right: 2%;
}

.c-tab__item:first-of-type .c-tab__button:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 1.5em;
}

.c-tab__item:last-of-type .c-tab__button:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 1.5em;
}

.c-tab__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  background-color: #c00;
  color: #fff;
}

.c-tab__button.is-current {
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-size: 2.5rem;
}

.c-tab__button.is-current:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #c00;
  margin: 2em auto 0;
  position: absolute;
}

.c-tab__button.is-current:after {
  content: none;
}

.c-tab__button:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
}

.js-tab-channel {
  display: none;
}

.js-tab-channel.is-current {
  display: block;
}

/* Tab Media Query
=============================== */
@media screen and (max-width: 768px) {
  .c-tab__button {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 414px) {
  .c-tab__button {
    font-size: 1.2rem;
  }
  .c-tab__button.is-current {
    font-size: 1.6rem;
  }
}

/* =============================================================

  Table

* ============================================================= */
/* profile-table
----------------------------*/
.c-profile-table dl {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 1em 0;
  border-bottom: 1px solid #aaa;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-profile-table dl > dt,
.c-profile-table dl > dd {
  display: table-cell;
  vertical-align: middle;
}

.c-profile-table dl > dt {
  width: 25%;
  text-align: center;
  color: #c00;
}

/* price-table
----------------------------*/
.c-price-table {
  border-collapse: collapse;
  width: 100%;
}

.c-price-table + .c-price-table {
  margin-top: 3em;
}

.c-price-table._fixed {
  table-layout: fixed;
}

.c-price-table__inner {
  overflow: auto;
  background-color: #fff;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.c-price-table table {
  background-repeat: no-repeat;
  background-attachment: local;
  width: 100%;
  min-width: 800px;
}

.c-price-table thead th,
.c-price-table thead td {
  width: 30%;
  background-color: #fff;
  color: #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 2px solid #000;
  border-right: 1px solid #000;
  border-bottom: 2px solid #000;
  padding: .5em;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}

.c-price-table thead th:first-of-type {
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

.c-price-table thead th._bdr-r {
  border-right: 2px solid #000;
}

.c-price-table thead th:last-of-type {
  border-right: 2px solid #000;
}

.c-price-table thead th._thead {
  color: #fff;
  background-color: #6a6a6a;
}

.c-price-table thead td {
  color: #000;
}

.c-price-table tbody th,
.c-price-table tbody td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  background-color: #fff;
  color: #000;
  padding: 1em .4em;
  vertical-align: middle;
}

.c-price-table tbody tr:last-of-type th,
.c-price-table tbody tr:last-of-type td {
  border-bottom: 2px solid #000;
}

.c-price-table tbody th {
  color: #000;
  background-color: #e9e9e9;
  text-align: center;
  border-right: 2px solid #000;
}

.c-price-table tbody th:first-of-type {
  border-left: 2px solid #000;
}

.c-price-table tbody th._totalHead {
  color: #000;
  background-color: #fff;
}

.c-price-table tbody td {
  text-align: right;
  font-weight: 500;
}

.c-price-table tbody td._total {
  background-color: #fff8ea;
  color: #c00;
}

.c-price-table tbody td:last-of-type {
  border-right: 2px solid #000;
}

.c-price-table ._insHead {
  background-color: #aadef8;
  color: #0068b7;
}

.c-price-table ._insSub {
  background-color: #0068b7;
}

.c-price-table ._insCourse,
.c-price-table ._checkCourse {
  font-size: 2rem;
  font-weight: 500;
  background-color: #fff;
}

.c-price-table ._insCourse {
  color: #0068b7;
}

.c-price-table ._insCourseBg {
  background-color: #eaf7fd;
}

.c-price-table ._insSub,
.c-price-table ._checkSub {
  color: #fff;
}

.c-price-table ._checkHead {
  background-color: #f9cbcd;
  color: #e75063;
}

.c-price-table ._checkSub {
  background-color: #e75063;
}

.c-price-table ._checkCourse {
  font-size: 2rem;
  color: #e75063;
}

.c-price-table ._checkCourseBg {
  background-color: #fef7f7;
}

/*  Table Media Query
* ============================== */
@media screen and (max-width: 414px) {
  .c-profile-table {
    font-size: 1.2rem;
  }
  .c-profile-table dl {
    padding: 1em 0;
  }
  .c-profile-table dl > dt {
    width: 30%;
  }
  .c-price-table {
    background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0), #F4F4F4 15px) 0 0/50px 100%, -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #f6f6f6 15px) right/50px 100%;
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0), #F4F4F4 15px) 0 0/50px 100%, -o-linear-gradient(left, rgba(255, 255, 255, 0), #f6f6f6 15px) right/50px 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #F4F4F4 15px) 0 0/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #f6f6f6 15px) right/50px 100%;
    background-repeat: no-repeat;
    background-attachment: local;
    min-width: 800px;
    font-size: 1.3rem;
  }
  .c-price-table tbody th, .c-price-table tbody td {
    padding: 0;
  }
  .c-price-table tbody td {
    font-size: 1.5rem;
    background-color: transparent;
  }
}
