/* ==========================================================================
   parts
   ========================================================================== */
@media print, screen and (min-width: 769px) {
  .c-highlightContainer .p-ttl {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer .p-ttl {
    margin-bottom: 40px;
  }
}

.c-highlightContainer-note .p-txt {
  text-indent: -2em;
  padding-left: 2em;
}

.c-highlightContainer-note .p-txt.-indent01 {
  text-indent: -1em;
  padding-left: 1em;
}

/* ==========================================================================
   modules
   ========================================================================== */
.m-table-header.-width12per, .m-table-data.-width12per {
  width: 11%;
}

.m-table-header.-width14per, .m-table-data.-width14per {
  width: 14%;
}

.m-table-header.-width24per, .m-table-data.-width24per {
  width: 24%;
}

.m-table-header.-width28per, .m-table-data.-width28per {
  width: 28%;
}

.m-table-header.-width48per, .m-table-data.-width48per {
  width: 48%;
}

.m-tableWrap {
  margin-top: 10px;
}

.m-table-header.-width35per,
.m-table-data.-width35per {
  width: 35%;
}

.m-table-header.-width24per,
.m-table-data.-width24per {
  width: 24%;
}

.m-table-header.-width16per,
.m-table-data.-width16per {
  width: 16%;
}

.m-table-header.-width13per,
.m-table-data.-width13per {
  width: 13%;
}

.m-graphList {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media only screen and (max-width: 768px) {
  .m-graphList {
    display: block;
  }
}

.m-graphList-item {
  width: calc(530 / 1080 * 100%);
}

@media print, screen and (min-width: 769px) {
  .m-graphList-item {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .m-graphList-item {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .m-graphList-item {
    width: 100%;
  }
}

.m-graphList-graph {
  width: 100%;
}

.m-graphList-graph img {
  width: 100%;
}

.m-tab-btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #999;
}

.m-tab-btn {
  position: relative;
  line-height: 1.3;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  margin-left: 20px;
  border: 1px solid #f3be00;
  border-bottom: none;
  letter-spacing: -0.02rem;
  cursor: pointer;
  background-color: #f3be00;
  text-align: center;
  font-weight: bold;
}

@media print, screen and (min-width: 769px) {
  .m-tab-btn {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .m-tab-btn {
    font-size: 1.4rem;
  }
}

.m-tab-btn.-middle {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.m-tab-btn.-middle > div {
  vertical-align: middle;
}

.m-tab-btn::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  vertical-align: middle;
  right: 30px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.m-tab-btn.-active {
  border: 1px solid #999;
  border-bottom: none;
  background-color: #fff;
  margin-bottom: -1px;
}

.m-tab-btn.-active::after {
  top: -5px;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  border-top: 2px solid #f3be00;
  border-right: 2px solid #f3be00;
}

.m-tab-btn > span {
  font-size: 1.2rem;
  font-weight: normal;
}

@media print, screen and (min-width: 769px) {
  .m-tab-btn {
    padding: 15px 55px 15px 40px;
  }
  .m-tab-btn.-active {
    padding: 15px 55px 16px 40px;
  }
}

@media only screen and (max-width: 768px) {
  .m-tab-btn {
    width: calc(50% - 10px);
    margin-right: 10px;
    margin-left: 0;
    padding: 15px 35px 15px 10px;
  }
  .m-tab-btn::after {
    top: -5px;
    right: 10px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

.m-tab-contents {
  display: none;
  opacity: 0;
}

.m-tab-contents.-active {
  opacity: 1;
  display: block;
  -webkit-animation-name: fadeInOpacity;
          animation-name: fadeInOpacity;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

/* ==========================================================================
   components
   ========================================================================== */
.c-headdingContainer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

@media print, screen and (min-width: 769px) {
  .c-headdingContainer {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    min-width: 1000px;
  }
}

@media only screen and (max-width: 768px) {
  .c-headdingContainer {
    width: 92%;
  }
}

@media only screen and (max-width: 768px) {
  .c-headdingContainer {
    margin-bottom: 47px;
  }
}

.c-graphContainer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width: 769px) {
  .c-graphContainer {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    min-width: 1000px;
  }
}

@media only screen and (max-width: 768px) {
  .c-graphContainer {
    width: 92%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-graphContainer {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .c-graphContainer {
    margin-bottom: 15px;
  }
}

.c-graphContainer-labelLink {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1080px;
}

@media only screen and (max-width: 768px) {
  .c-graphContainer-labelLink {
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-graphContainer-labelLink {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .c-graphContainer-labelLink {
    margin-bottom: 60px;
  }
}

.c-graphContainer-graph {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1080px;
}

@media only screen and (max-width: 768px) {
  .c-graphContainer-graph {
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-graphContainer-graph {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .c-graphContainer-graph {
    margin-top: 40px;
  }
}

.c-highlightContainer {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (min-width: 769px) {
  .c-highlightContainer {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    min-width: 1000px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer {
    width: 92%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-highlightContainer {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer {
    margin-bottom: 60px;
  }
}

.c-highlightContainer-table {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1080px;
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer-table {
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-highlightContainer-table {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer-table {
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer-table {
    overflow-x: auto;
  }
  .c-highlightContainer-table::-webkit-scrollbar {
    width: 5px;
    background: #eee;
  }
  .c-highlightContainer-table::-webkit-scrollbar:horizontal {
    height: 5px;
    background: #eee;
  }
  .c-highlightContainer-table::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 2px;
  }
  .c-highlightContainer-table::-webkit-scrollbar-thumb:horizontal {
    background: #666;
    border-radius: 2px;
  }
}

.c-highlightContainer-note {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1080px;
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer-note {
    width: 100%;
  }
}

@media print, screen and (min-width: 769px) {
  .c-highlightContainer-note.-top {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .c-highlightContainer-note.-top {
    margin-bottom: 15px;
  }
}

/* ==========================================================================
   追加 c-highlightContainer-contents
   ========================================================================== */

.c-highlightContainer-ttl {
    font-size: 2.4rem;
	font-weight: bold;
    line-height: 1.29;
    color: #8b8558;
    padding-top: 0px;
    margin-bottom: 10px
}