<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*------------------------------------------------------------------------------

  Common

------------------------------------------------------------------------------*/
/*
  Utility
------------------------------------------------------------------------------*/
.pcOnly {
  display: block;
}

@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

.pcOnly-ib {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .pcOnly-ib {
    display: none;
  }
}

.spOnly-ib {
  display: none;
}

@media only screen and (max-width: 767px) {
  .spOnly-ib {
    display: inline-block;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

@media print, screen and (min-width: 768px) {
  .p0 {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .p0 {
    padding-top: 0 !important;
  }
}

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

@media print, screen and (min-width: 768px) {
  .txt-center-pc {
    text-align: center !important;
  }
}

@media only screen and (max-width: 767px) {
  .txt-center-sp {
    text-align: center !important;
  }
}

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

@media print, screen and (min-width: 768px) {
  .txt-left-pc {
    text-align: left !important;
  }
}

@media only screen and (max-width: 767px) {
  .txt-left-sp {
    text-align: left !important;
  }
}

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

@media print, screen and (min-width: 768px) {
  .txt-right-pc {
    text-align: right !important;
  }
}

@media only screen and (max-width: 767px) {
  .txt-right-sp {
    text-align: right !important;
  }
}

.c-red {
  color: #ed0022 !important;
}

.quoatationmarks {
  font-weight: 300;
  display: inline-block;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .quoatationmarks.foward {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .quoatationmarks.foward {
    margin-left: pxtovw(3);
  }
}

@media print, screen and (min-width: 768px) {
  .quoatationmarks.back {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .quoatationmarks.back {
    margin-right: pxtovw(3);
  }
}

.noWrap {
  white-space: nowrap;
}

/*
  Transition
------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .link_hover {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}

.link_hover:hover {
  color: #ed0022 !important;
}

.link_hover:hover .icon_blank::after {
  background-image: url(/common/img/icon/icon_blank_r.svg);
}

.link_opacity {
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .link_opacity {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}

@media print, screen and (min-width: 768px) {
  .link_opacity:hover {
    opacity: .75;
  }
}

.link_blank:hover .icon_blank::after {
  background-image: url(/common/img/icon/icon_blank_r.svg);
}

@media print, screen and (min-width: 768px) {
  .img_hover img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}

@media print, screen and (min-width: 768px) {
  .img_hover:hover img {
    opacity: .7;
  }
}

.btn_hover:hover .mod-btn &gt; * {
  background-color: #fa0000;
  background-position: -100% 100%;
  color: #fff;
}

.arrow_hover:hover .icon_circleArrow::before {
  opacity: 0 !important;
  -webkit-transform: translate(200%, -50%) !important;
  transform: translate(200%, -50%) !important;
}

.arrow_hover:hover .icon_circleArrow::after {
  opacity: 1 !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.arrow_slide:hover .arrow::before,
.arrow_slide:hover .icon_impArrow::before {
  opacity: 0 !important;
  -webkit-transform: translate(200%, -50%) !important;
  transform: translate(200%, -50%) !important;
}

.arrow_slide:hover .arrow::after,
.arrow_slide:hover .icon_impArrow::after {
  opacity: 1 !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

/*
  Icon
------------------------------------------------------------------------------*/
.icon_blank {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .icon_blank {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_blank {
    width: 3.46667vw;
    height: 3.46667vw;
    margin-left: 2.66667vw;
  }
}

.icon_blank::after {
  content: '';
  position: absolute;
  display: block;
  background: url(/common/img/icon/icon_blank_g.svg) center/contain no-repeat;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media print, screen and (min-width: 768px) {
  .icon_blank::after {
    width: 12px;
    height: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_blank::after {
    width: 3.46667vw;
    height: 3.46667vw;
  }
}

.icon_blank.white::after {
  background-image: url(/common/img/icon/icon_blank_w.svg);
}

.icon_blank.red::after {
  background-image: url(/common/img/icon/icon_blank_r.svg);
}

.icon_pdf {
  color: #ed0022;
  display: inline-block;
  border: 1px solid #ed0022;
  vertical-align: middle;
  font-weight: bold;
}

@media print, screen and (min-width: 768px) {
  .icon_pdf {
    font-size: 10px;
    padding: 1px 3px;
    margin: -4px 0 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_pdf {
    font-size: 10px;
    font-size: 2.66667vw;
    padding: 0.26667vw 0.8vw;
    margin: -1.06667vw 0 0 2.66667vw;
  }
}

.icon_circleArrow {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 50%;
}

@media print, screen and (min-width: 768px) {
  .icon_circleArrow {
    border: 1px solid #ed0022;
    top: -2px;
    margin-right: 10px;
    width: 20px;
    height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circleArrow {
    border: 0.26667vw solid #ed0022;
    top: -0.53333vw;
    margin-right: 2.66667vw;
    width: 5.33333vw;
    height: 5.33333vw;
  }
}

.icon_circleArrow::before, .icon_circleArrow::after {
  content: '';
  position: absolute;
  display: block;
  background: url(/common/img/icon/icon_arrow_r.svg) center/contain no-repeat;
  -webkit-transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  top: 50%;
}

@media print, screen and (min-width: 768px) {
  .icon_circleArrow::before, .icon_circleArrow::after {
    width: 10px;
    height: 8px;
    left: 4px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circleArrow::before, .icon_circleArrow::after {
    width: 2.66667vw;
    height: 2.13333vw;
    left: 1.06667vw;
  }
}

.icon_circleArrow::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon_circleArrow::after {
  opacity: 0;
  -webkit-transform: translate(-200%, -50%);
  transform: translate(-200%, -50%);
}

.icon_circleArrow.red {
  background-color: #ed0022;
}

.icon_circleArrow.red::before, .icon_circleArrow.red::after {
  background-image: url(/common/img/icon/icon_arrow_w.svg);
}

@media print, screen and (min-width: 768px) {
  .icon_circleArrow.red::before, .icon_circleArrow.red::after {
    top: calc(50% - 1px);
  }
}

.icon_impArrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  background-color: #ed0022;
  border-radius: 50%;
}

@media print, screen and (min-width: 768px) {
  .icon_impArrow {
    width: 32px;
    height: 32px;
    margin-right: 17px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_impArrow {
    width: 8.53333vw;
    height: 8.53333vw;
    margin-right: 3.46667vw;
  }
}

.icon_impArrow::before, .icon_impArrow::after {
  content: '';
  position: absolute;
  display: block;
  background: url(/common/img/icon/icon_arrow_w.svg) center/contain no-repeat;
  -webkit-transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  top: 50%;
}

@media print, screen and (min-width: 768px) {
  .icon_impArrow::before, .icon_impArrow::after {
    width: 14px;
    height: 10px;
    left: 9px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_impArrow::before, .icon_impArrow::after {
    width: 3.73333vw;
    height: 2.66667vw;
    left: 2.4vw;
  }
}

.icon_impArrow::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon_impArrow::after {
  opacity: 0;
  -webkit-transform: translate(-200%, -50%);
  transform: translate(-200%, -50%);
}

.icon_circle-red {
  background-color: #ed0022;
  color: #fff;
  font-style: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 400;
  font-family: Arial;
}

@media print, screen and (min-width: 768px) {
  .icon_circle-red {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circle-red {
    width: 6.4vw;
    height: 6.4vw;
    margin-right: 2.13333vw;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .icon_circle-red ~ span {
    font-size: 19px;
  }
}

@media only screen and (max-width: 767px) {
  .icon_circle-red ~ span {
    font-size: 15px;
    font-size: 4vw;
  }
}

.btn_more a {
  position: relative;
  color: #ed0022;
  font-weight: bold;
}

@media print, screen and (min-width: 768px) {
  .btn_more a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_more a {
    font-size: 15px;
    font-size: 4vw;
  }
}

.btn_more a:hover .arrow::before {
  opacity: 0;
  -webkit-transform: translate(200%, -50%);
  transform: translate(200%, -50%);
}

.btn_more a:hover .arrow::after {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn_more .arrow {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  background-color: #ed0022;
  border-radius: 50%;
}

@media print, screen and (min-width: 768px) {
  .btn_more .arrow {
    margin-right: 15px;
    margin-top: -3px;
    width: 32px;
    height: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_more .arrow {
    margin-right: 3.46667vw;
    margin-top: -0.53333vw;
    width: 8.53333vw;
    height: 8.53333vw;
  }
}

.btn_more .arrow::before, .btn_more .arrow::after {
  content: '';
  position: absolute;
  display: block;
  background: url(/common/img/icon/icon_arrow_w.svg) center/contain no-repeat;
  -webkit-transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  top: 50%;
}

@media print, screen and (min-width: 768px) {
  .btn_more .arrow::before, .btn_more .arrow::after {
    width: 14px;
    height: 10px;
    left: 9px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_more .arrow::before, .btn_more .arrow::after {
    width: 3.73333vw;
    height: 2.66667vw;
    left: 2.4vw;
  }
}

.btn_more .arrow::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn_more .arrow::after {
  opacity: 0;
  -webkit-transform: translate(-200%, -50%);
  transform: translate(-200%, -50%);
}

.btn_more.white a {
  color: #fff;
}

.btn_more.white .arrow {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  border: 2px solid #fff;
}

@media print, screen and (min-width: 768px) {
  .btn_more.white .arrow::before, .btn_more.white .arrow::after {
    left: 7px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_more.white .arrow::before, .btn_more.white .arrow::after {
    left: 1.86667vw;
  }
}

.inline-link {
  color: #ed0022;
  text-decoration: underline;
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .inline-link {
    margin: 0 5px;
  }
}

@media only screen and (max-width: 767px) {
  .inline-link {
    margin: 0 1.33333vw;
  }
}

.inline-link:hover {
  text-decoration: none;
}

.inline-link [class^="icon_"] {
  margin-right: 0;
}

@media print, screen and (min-width: 768px) {
  .inline-link [class^="icon_"] {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .inline-link [class^="icon_"] {
    margin-left: 1.33333vw;
  }
}

.inline-link .icon_blank::after {
  background-image: url(/common/img/icon/icon_blank_r.svg);
}

/*
  IE11
------------------------------------------------------------------------------*/
/*
  Style Guide
------------------------------------------------------------------------------*/
.c-red {
  color: #ed0022;
}

.d-gray {
  color: #444;
}

/*------------------------------------------------------------------------------

  数字でわかる国分

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .characteristic_number {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number {
    margin-top: 10.66667vw;
  }
}

.characteristic_number_wrapper {
  background: center / cover no-repeat;
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_wrapper {
    padding: 25px 0;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_wrapper {
    padding: 5.33333vw 0;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.characteristic_number_item {
  border: 2px solid #ddd;
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_item {
    border-radius: 20px;
    width: calc(50% - 20px);
    margin-bottom: 40px;
    padding: 40px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_item {
    border-radius: 2.66667vw;
    padding: 8vw;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_item + .characteristic_number_item {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_item + .characteristic_number_item {
    margin-top: 5.33333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_item:nth-child(2n+1):nth-last-child(-n+2),
  .characteristic_number_item:nth-child(2n+1):nth-last-child(-n+2) ~ li {
    margin-bottom: 0;
  }
}

.characteristic_number_heading &gt; p {
  color: #ed0022;
  line-height: 1;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_heading &gt; p {
    font-size: 21px;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_heading &gt; p {
    font-size: 18px;
    font-size: 4.8vw;
    margin-bottom: 1.33333vw;
  }
}

.characteristic_number_ttl &gt; p {
  color: #ed0022;
  line-height: 1;
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_ttl &gt; p {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_ttl &gt; p {
    font-size: 26px;
    font-size: 6.93333vw;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_ttl &gt; p .number {
    font-size: 62px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_ttl &gt; p .number {
    font-size: 52px;
    font-size: 13.86667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_txt {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_txt {
    margin-top: 5.33333vw;
  }
}

.characteristic_number_txt &gt; p {
  line-height: 1.9;
}

@media print, screen and (min-width: 768px) {
  .characteristic_number_txt &gt; p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .characteristic_number_txt &gt; p {
    font-size: 15px;
    font-size: 4vw;
  }
}

/*
  IE11
------------------------------------------------------------------------------*/
</pre></body></html>