@charset "UTF-8";
.l-footer {
  width: 100%;
  padding: 0 40px;
  background: #E9ECEF;
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 0 20px;
  }
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    display: block;
  }
}

.l-header {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 107px;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 2px 6px 3px rgba(182, 182, 182, 0.32);
  transition-duration: 0.5s;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: absolute;
    height: auto;
    padding: 12px 5vw;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-header__inner {
    gap: 4%;
  }
}

.l-main {
  width: 100%;
  /*min-height: calc(var(--vh, 1vh) * 100 - 107px - 496px);*/
  margin: 0 auto;
  padding-top: 107px;
}
@media screen and (max-width: 767px) {
  .l-main {
    min-height: auto;
    padding-top: 49px;
  }
}

.l-content {
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .l-content {
    margin: 24px auto 0;
  }
}
.l-content__small {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-content__small {
    padding: 0 5vw;
  }
}
.l-content__medium {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-content__medium {
    padding: 0 5vw;
  }
}
.l-content__large {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-content__large {
    padding: 0 5vw;
  }
}

.l-section {
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin: 56px 0 0;
  }
}
.l-section:first-child {
  margin: 0;
}

.l-article {
  margin: 60px 0 0;
}
@media screen and (max-width: 767px) {
  .l-article {
    margin: 40px 0;
  }
}
.l-article:first-child {
  margin: 0;
}
.l-article > * {
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .l-article > * {
    margin: 20px 0;
  }
}
.l-article__inner > * {
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .l-article__inner > * {
    margin: 20px 0;
  }
}
.l-article__inner .c-subttl + * {
  margin: 12px 0 24px;
}
@media screen and (max-width: 767px) {
  .l-article__inner .c-subttl + * {
    margin: 8px 0 20px;
  }
}

.l-linklist {
  width: 100%;
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  .l-linklist {
    margin: 48px auto;
  }
}

.l-sdglist {
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .l-sdglist {
    margin: 40px 0;
  }
}

.l-btmbnr {
  width: 100%;
  margin: 80px auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-btmbnr {
    margin: 48px auto;
    padding: 0 5vw;
  }
}

.c-breadcrumb {
  max-width: 640px;
  margin-left: auto;
  font-size: 0.75rem;
}
@media screen and (max-width: 960px) {
  .c-breadcrumb {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    width: 100%;
    margin-left: 0;
    overflow: auto;
    font-size: 0.68rem;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__list {
    flex-wrap: inherit;
    justify-content: flex-start;
  }
}
.c-breadcrumb__list li {
  line-height: 1.6;
}
.c-breadcrumb__list li:after {
  display: inlin-block;
  margin: 0 6px;
  content: "/";
}
.c-breadcrumb__list li:last-child:after {
  display: none;
}
.c-breadcrumb__list li a {
  text-decoration: underline;
}

.c-pagination {
  margin: 40px auto;
}
.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__list li {
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .c-pagination__list li {
    margin: 0 4px;
  }
}
.c-pagination__list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  background: #E9ECEF;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  text-indent: 2px;
}
@media screen and (max-width: 767px) {
  .c-pagination__list li a {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}
.c-pagination__list li.is-current a {
  background: #E60012;
  color: #fff;
}

.c-ttl__wrap {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .c-ttl__wrap {
    margin: 0 0 24px;
  }
}
.c-ttl__content {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-ttl__content {
    font-size: 1rem;
  }
}
.c-ttl__content small {
  margin-left: 20px;
  font-weight: 400;
  font-size: 0.875rem;
}
.c-ttl__border {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-ttl__border {
    font-size: 1rem;
  }
}
.c-ttl__border small {
  margin-left: 20px;
  font-weight: 400;
  font-size: 0.875rem;
}
.c-ttl__border:before {
  display: inline-block;
  width: 20px;
  height: 2px;
  margin-right: 20px;
  background-color: #E60012;
  content: "";
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-ttl__border:before {
    margin-right: 12px;
  }
}
.c-ttl__circle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-ttl__circle {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.c-ttl__circle--txt:before {
  display: inline-block;
  margin-right: 4px;
  content: "●";
  color: #E60012;
  vertical-align: 0;
}
.c-ttl__circle--border .c-ttl__circle--txt {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-ttl__circle--border .c-ttl__circle--txt {
    white-space: inherit;
  }
}
.c-ttl__circle--border:after {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin-right: 20px;
  background-color: #E60012;
  content: "";
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-ttl__circle--border:after {
    display: none;
  }
}
.c-ttl__square {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-ttl__square {
    font-size: 1rem;
  }
}
.c-ttl__square--txt {
  white-space: nowrap;
}
.c-ttl__square--txt:before {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  border-radius: 4px;
  background-color: #E60012;
  content: "";
  vertical-align: middle;
}
.c-ttl__grey {
  padding: 8px;
  border-radius: 5px;
  background: #F7F7F7;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-ttl__grey {
    padding: 12px 8px;
    font-size: 1rem;
    text-align: center;
  }
}
.c-ttl__grey--txt {
  /*white-space: nowrap;*/
}
.c-ttl__grey02 {
  padding: 12px 20px;
  border-radius: 5px;
  background: #F4F5F7;
  font-weight: 600;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-ttl__grey02 {
    padding: 16px 8px;
    font-size: 1rem;
    text-align: center;
  }
}
.c-ttl__grey02--txt {
  white-space: nowrap;
}

.c-subttl {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-subttl {
    font-size: 1rem;
  }
}

.c-pagettl {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-pagettl {
    font-size: 1.125rem;
  }
}

.c-icon__accord {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-icon__accord {
    width: 20px;
    height: 20px;
  }
}
.c-icon__accord::before, .c-icon__accord::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: #fff;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-icon__accord::before, .c-icon__accord::after {
    height: 9px;
  }
}
.c-icon__accord::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.c-icon__accord::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.c-icon__accord.is-active::before {
  display: none;
}
.c-icon__accord.is-active {
  background: #888888;
}
.c-icon__arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 10px;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-icon__radius {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #E60012;
}
.c-icon__radius:after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

.c-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #dddddd;
  border-radius: 50px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 10px 24px;
  }
}
.c-btn[border=gray] {
  border: 1px solid #dddddd;
}
.c-btn[border=red] {
  border: 1px solid #E60012;
}
.c-btn[color=black] {
  color: #000000;
}
.c-btn[color=red] {
  color: #E60012;
}
.c-btn[size=large] {
  padding: 18px 60px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn[size=large] {
    padding: 16px 20px;
    font-size: 1rem;
  }
}
.c-btn[size=middle] {
  width: 100%;
  max-width: 300px;
}
.c-btn[data=pdf] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-btn[data=pdf] + small {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
}
.c-btn__icon {
  display: block;
  width: 20px;
}
@media screen and (max-width: 767px) {
  .c-btn__icon {
    width: 16px;
  }
}

.c-form__select {
  display: block;
  position: relative;
}
.c-form__select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  padding: 0 25px 0 12px;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 50px;
  background: url(../img/common/icon-select.svg) no-repeat;
  background-position: calc(100% - 15px);
  font-size: 0.85rem;
  line-height: 39px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-form__select select {
    padding: 0 20px;
    background-position: calc(100% - 8px);
  }
}
.c-form__select--txt {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 25px 0 12px;
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 50px;
  background: url(../img/common/icon-select.svg) no-repeat;
  background-position: calc(100% - 15px);
  font-size: 0.85rem;
  line-height: 39px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-form__select--txt {
    padding: 0 20px;
    background-position: calc(100% - 8px);
  }
}
.c-form__search {
  display: block;
  position: relative;
}
.c-form__search input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border-bottom: 1px solid #dddddd;
  font-size: 0.85rem;
}
.c-form__search button {
  position: absolute;
  top: 6px;
  right: 12px;
}
.c-form__radio {
  display: block;
  position: relative;
  padding-left: 20px;
}
.c-form__radio label {
  font-size: 0.85rem;
  cursor: pointer;
}
.c-form__radio label span {
  display: inline-block;
}
.c-form__radio label span::after {
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.c-form__radio label span::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 5px;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  opacity: 0;
}
.c-form__radio input {
  display: none;
}
.c-form__radio input:checked + span::after {
  background: #000;
}
.c-form__radio input:checked + span::before {
  opacity: 1;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table__ttl {
  width: 22.7%;
  padding: 20px;
  border: 1px solid #E9ECEF;
  background: #F4F5F7;
  font-weight: 400;
  font-size: 0.875rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table__ttl {
    width: 36%;
    padding: 16px;
  }
}
.c-table__txt {
  width: 77.3%;
  padding: 20px;
  border: 1px solid #E9ECEF;
  font-size: 0.875rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table__txt {
    padding: 16px;
  }
}

.c-define {
  width: 100%;
}
.c-define__row {
  display: flex;
  align-items: flex-start;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .c-define__row {
    display: block;
    padding: 8px 20px;
  }
}
.c-define__row:nth-child(2n) {
  background: inherit;
}
.c-define__row i {
  margin-left: 4px;
}
.c-define__row i img {
  vertical-align: -1px;
}
.c-define__ttl {
  width: 20%;
  padding: 16px 40px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-define__ttl {
    width: 100%;
    padding: 8px 0 4px;
  }
}
.c-define__txt {
  width: 80%;
  padding: 16px 40px;
  font-size: 0.875rem;
  line-height: 1.8;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-define__txt {
    width: 100%;
    padding: 4px 0;
  }
}
.c-define__txt a {
  text-decoration: underline;
}

.c-pagelink {
  display: flex;
  align-items: stretch;
  gap: 4px;
}
.c-pagelink__item {
  width: 33.333%;
  font-weight: 600;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-pagelink__item {
    font-size: 0.75rem;
  }
}
.c-pagelink__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px 0;
  background: #F7F7F7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-pagelink__item a {
    padding: 16px 0;
  }
}
.c-pagelink__item:first-child a {
  border-radius: 4px 0 0 4px;
}
.c-pagelink__item:last-child a {
  border-radius: 0 4px 4px 0;
}
.c-pagelink__item i {
  position: relative;
  top: -3px;
  width: 8px;
  height: 8px;
  margin: 0 12px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .c-pagelink__item i {
    display: none;
  }
}

.c-linklist {
  width: calc((100% - 72px) / 4);
  padding: 32px 16px;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-linklist {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
  }
}
.c-linklist:last-child {
  margin-bottom: 0;
}
.c-linklist__small {
  padding: 0;
  border: 0;
  border-radius: 10px;
}
.c-linklist__small.is-current {
  border: 0 !important;
}
.c-linklist__small .c-linklist__ttl {
  border: 0 !important;
}
.c-linklist__small a {
  padding: 20px 16px;
  border: 1px solid #dddddd;
  border-radius: 10px;
}
.c-linklist__small a.is-current {
  border: 2px solid #E60012;
}
.c-linklist__small a .c-linklist__icon {
  right: 16px;
}
.c-linklist__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-linklist__wrap {
    display: block;
  }
}
.c-linklist__icon {
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .c-linklist__icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-linklist__icon--sp {
    display: inline-flex;
    right: 5vw;
  }
}
.c-linklist__icon--gray {
  background: #E9ECEF;
}
.c-linklist__ttl {
  position: relative;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-linklist__ttl.is-active a {
    border: 1px solid #F5F5F5;
    background: #F5F5F5;
  }
}
.c-linklist__ttl--en {
  display: block;
  margin-bottom: 0;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-linklist__ttl:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    content: "";
  }
}
.c-linklist__ttl a {
  display: block;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-linklist__ttl a {
    padding: 20px 16px;
    padding-right: 0;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-size: 0.875rem;
  }
}
.c-linklist__ttl i {
  width: 6px;
  height: 6px;
  margin: 0;
  margin-right: 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.c-linklist__list {
  position: relative;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-linklist__list {
    display: none;
    margin-top: 20px;
    padding: 12px 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-linklist__list:before {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -6px;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #dddddd;
    border-left: 12px solid transparent;
    content: "";
  }
}
.c-linklist__item {
  position: relative;
  padding: 4px 0;
  padding-right: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-linklist__item {
    padding: 12px 0;
  }
}
.c-linklist__item a {
  display: block;
}
.c-linklist__item i {
  width: 6px;
  height: 6px;
  margin: 0;
  margin-right: 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.c-linklist.is-current {
  border: 2px solid #E60412;
}
@media screen and (max-width: 767px) {
  .c-linklist.is-current {
    border: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-linklist.is-current .c-linklist__ttl a {
    border: 2px solid #E60412;
  }
}
.c-linklist .c-icon__accord {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-linklist .c-icon__accord {
    display: block;
    position: absolute;
    top: 50%;
    right: 5vw;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border: 0;
    background: #E9ECEF;
  }
}
.c-linklist .c-icon__accord:before, .c-linklist .c-icon__accord:after {
  background: #000;
}
.c-linklist__accord {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-linklist__accord {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 76px;
    height: 40px;
    margin-top: -20px;
  }
}
.c-linklist__accord.is-active .c-icon__accord {
  background: #fff;
}
.c-linklist__accord.is-active .c-icon__accord:before {
  display: none;
}

.c-imglink {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-imglink {
    width: 205vw;
    gap: 12px;
  }
}
.c-imglink__item {
  width: calc(20% - 20px);
  font-weight: 400;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-imglink__item {
    width: calc(45% - 12px);
  }
}
.c-imglink__img {
  margin-bottom: 12px;
  overflow: hidden;
  border: 2px solid #E60012;
  border-radius: 10px;
}
.c-imglink__desc {
  display: block;
  font-weight: 500;
  line-height: 1.5;
}
.c-imglink__link {
  display: block;
  position: relative;
  padding-bottom: 20px;
}
.c-imglink__link:after {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: 20px auto;
  transform: translate(-50%, 0);
  transform: rotate(135deg);
  border-top: 2px solid #E60012;
  border-right: 2px solid #E60012;
  content: "";
}
.c-imglink__wrap {
  margin: 40px 0 20px;
}
@media screen and (max-width: 767px) {
  .c-imglink__wrap {
    width: 95vw;
    margin: 20px 0 0;
    padding-bottom: 12px;
    overflow: auto;
  }
}

.c-sdglist {
  text-align: center;
}
.c-sdglist__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .c-sdglist__list[item="1"] {
    width: 33.3333%;
  }
}
@media screen and (max-width: 767px) {
  .c-sdglist__list[item="1"] .c-sdglist__item {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-sdglist__list[item="2"] {
    width: 66.6667%;
  }
}
@media screen and (max-width: 767px) {
  .c-sdglist__list[item="2"] .c-sdglist__item {
    max-width: calc((100% - 20px) / 2);
  }
}
.c-sdglist__item {
  max-width: 170px;
}
@media screen and (max-width: 767px) {
  .c-sdglist__item {
    max-width: calc((100% - 40px) / 3);
  }
}

.c-pdflist {
  text-align: center;
}
.c-pdflist__item {
  padding: 0 40px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .c-pdflist__item {
    padding: 0;
  }
}
.c-pdflist__item:first-child {
  border-top: 1px solid #dddddd;
}
.c-pdflist__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .c-pdflist__link {
    align-items: center;
    padding: 32px 0;
  }
}
.c-pdflist__txt {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-pdflist__txt {
    font-size: 0.875rem;
  }
}
.c-pdflist__txt--size {
  margin-left: 34px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-pdflist__txt--size {
    align-items: center;
    margin-left: 12px;
  }
}
.c-pdflist__icon {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .c-pdflist__icon {
    width: 20px;
  }
}
.c-pdflist__icon img {
  width: 100%;
}

.c-imglist__img img {
  width: 100%;
}
.c-imglist__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .c-imglist__list {
    display: block;
  }
}
.c-imglist__list__item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-imglist__list__item {
    margin-bottom: 20px;
  }
}
.c-imglist__list--2column .c-imglist__item {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .c-imglist__list--2column .c-imglist__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }
}
.c-imglist__list--2column .c-imglist__item:last-child {
  margin-bottom: 0;
}
.c-imglist__list--3column {
  gap: 16px;
}
.c-imglist__list--3column .c-imglist__item {
  width: calc((100% - 32px) / 3);
}
@media screen and (max-width: 767px) {
  .c-imglist__list--3column .c-imglist__item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.c-imglist__list--3column .c-imglist__item:last-child {
  margin-bottom: 0;
}
.c-imglist__video {
  aspect-ratio: 16/9;
  width: 100%;
}
.c-imglist__video iframe {
  width: 100%;
  height: 100%;
}
.c-imglist__top {
  margin-bottom: 10px;
  padding: 8px;
  background: #F7F7F7;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
}
.c-imglist__txt {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .c-imglist__txt {
    margin-top: 12px;
  }
}
.c-imglist__txt--ttl {
  font-weight: 600;
}
.c-imglist__txt--desc {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .c-imglist__txt--desc {
    margin-top: 4px;
  }
}
.c-imglist__caption {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}
.c-imglist__caption--right {
  text-align: right;
}
.c-imglist__caption--center {
  text-align: center;
}
.c-imglist__caption--left {
  text-align: let;
}
@media screen and (max-width: 767px) {
  .c-imglist__caption {
    text-align: center;
  }
}

.c-desc {
  font-size: 0.875rem;
  line-height: 2;
}
.c-desc a {
  text-decoration: underline;
}

.c-caption__l {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-caption__l {
    font-size: 1rem;
  }
}
.c-caption__m {
  font-size: 1rem;
  line-height: 1.6;
}
.c-caption__s {
  font-size: 0.875rem;
  line-height: 1.6;
}

.c-splitcont {
  display: flex;
  width: 100%;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .c-splitcont {
    display: block;
  }
}
.c-splitcont[align=start] {
  align-items: flex-start;
}
.c-splitcont[align=end] {
  align-items: flex-end;
}
.c-splitcont[align=center] {
  align-items: center;
}
.c-splitcont__reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .c-splitcont__reverse .c-splitcont__img {
    margin-bottom: 20px;
  }
}
.c-splitcont__harf .c-splitcont__img {
  width: calc(50% - 18px);
}
@media screen and (max-width: 767px) {
  .c-splitcont__harf .c-splitcont__img {
    width: 100%;
  }
}
.c-splitcont__harf .c-splitcont__txt {
  width: calc(50% - 18px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-splitcont__harf .c-splitcont__txt {
    width: 100%;
    margin-bottom: 20px;
  }
}
.c-splitcont__6to4 .c-splitcont__img {
  width: calc(40% - 18px);
}
@media screen and (max-width: 767px) {
  .c-splitcont__6to4 .c-splitcont__img {
    width: 100%;
  }
}
.c-splitcont__6to4 .c-splitcont__txt {
  width: calc(60% - 18px);
}
@media screen and (max-width: 767px) {
  .c-splitcont__6to4 .c-splitcont__txt {
    width: 100%;
    margin-top: 20px;
  }
}
.c-splitcont__7to3 .c-splitcont__img {
  width: calc(30% - 18px);
}
@media screen and (max-width: 767px) {
  .c-splitcont__7to3 .c-splitcont__img {
    width: 100%;
  }
}
.c-splitcont__7to3 .c-splitcont__txt {
  width: calc(70% - 18px);
}
@media screen and (max-width: 767px) {
  .c-splitcont__7to3 .c-splitcont__txt {
    width: 100%;
    margin-top: 20px;
  }
}
.c-splitcont__txt--desc {
  margin-top: 12px;
}
.c-splitcont__txt--ttl {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.c-splitcont__btn {
  margin-top: 20px;
}
.c-splitcont__btn a {
  margin-top: 12px;
}

.c-backlink {
  margin-bottom: 24px;
}
.c-backlink__link {
  display: block;
  position: relative;
  padding-left: 36px;
  font-weight: 600;
}
.c-backlink__icon {
  display: inline-flex;
  position: absolute;
  top: 50%;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 20px;
}
.c-backlink__icon--gray {
  background: #E9ECEF;
}
.c-backlink i {
  width: 6px;
  height: 6px;
  margin: 0;
  margin-left: 2px;
  transform: rotate(-135deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.c-border {
  padding: 40px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-border {
    padding: 32px 0;
  }
}
.c-border__box {
  border: 1px solid #dddddd;
}
.c-border__box[size=large] {
  padding: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .c-border__box[size=large] {
    padding: 32px 20px;
  }
}
.c-border__box[size=large] .c-border__ttl {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-border__box[size=large] .c-border__ttl {
    font-size: 1rem;
  }
}
.c-border__box[size=small] {
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-border__box[size=small] {
    padding: 20px 12px;
  }
}
.c-border__ttl {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.8;
}
.c-border__txt {
  margin-top: 12px;
}

.c-white__box {
  border-radius: 10px;
  background: #fff;
}
.c-white__box[size=large] {
  padding: 40px;
  border-radius: 20px;
}
.c-white__box[size=small] {
  padding: 20px;
  border-radius: 10px;
}
.c-white__ttl {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.8;
}
.c-white__txt {
  margin-top: 12px;
}

.c-message {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 50px 0;
  gap: 60px;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .c-message {
    display: block;
    padding: 32px 0;
  }
}
.c-message__img {
  width: calc(44% - 30px);
}
@media screen and (max-width: 767px) {
  .c-message__img {
    width: 60%;
    margin: 0 auto 24px;
  }
}
.c-message__img--logo {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .c-message__img--logo {
    padding: 20px 0 8px;
  }
}
.c-message__img--logo img {
  display: block;
  max-width: 260px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-message__img--logo img {
    width: 80%;
    max-width: 100%;
  }
}
.c-message__txt {
  width: calc(60% - 30px);
}
@media screen and (max-width: 767px) {
  .c-message__txt {
    width: 100%;
    margin-top: 24px;
  }
}
.c-message__ttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .c-message__ttl {
    margin-bottom: 24px;
  }
}
.c-message__caption {
  margin-bottom: 32px;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-message__caption {
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
}
.c-message__name {
  max-width: 122px;
  margin-top: 24px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .c-message__name {
    width: 40%;
    margin: 0 auto;
  }
}

.c-history:before {
  display: block;
  position: absolute;
  top: 0;
  left: 4.5px;
  width: 1px;
  height: 100%;
  background: #dddddd;
  content: "";
}
.c-history__item {
  display: flex;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .c-history__item {
    display: block;
    margin-bottom: 40px;
  }
}
.c-history__term {
  min-width: 280px;
}
@media screen and (max-width: 767px) {
  .c-history__term {
    min-width: inherit;
    margin-bottom: 16px;
  }
}
.c-history__term span {
  display: block;
  position: relative;
  padding-left: 72px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-history__term span {
    padding-left: 0;
    padding-left: 50px;
    font-size: 1rem;
  }
}
.c-history__term span:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 56px;
  height: 1px;
  background: #E60012;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-history__term span:after {
    width: 32px;
  }
}
.c-history__term span:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 16px;
  background: #E60012;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-history__term span:before {
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
}
.c-history__txt {
  width: calc(100% - 280px);
}
@media screen and (max-width: 767px) {
  .c-history__txt {
    width: 100%;
    padding-left: 50px;
  }
}
.c-history__caption {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-history__caption {
    font-size: 1rem;
  }
}
.c-history__desc {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .c-history__desc {
    margin-top: 16px;
  }
}
.c-history__img {
  margin-top: 24px;
}
.c-history__img[img="1941"] {
  max-width: 440px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="1941"] {
    width: 100%;
  }
}
.c-history__img[img="1949"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="1949"] {
    width: 100%;
  }
}
.c-history__img[img="1951"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="1951"] {
    width: 100%;
  }
}
.c-history__img[img="1957"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="1957"] {
    width: 100%;
  }
}
.c-history__img[img="1996"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="1996"] {
    width: 100%;
  }
}
.c-history__img[img="2001"] {
  max-width: 318px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2001"] {
    width: 100%;
  }
}
.c-history__img[img="2002"] {
  max-width: 219px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2002"] {
    width: 50%;
  }
}
.c-history__img[img="2005"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2005"] {
    width: 100%;
  }
}
.c-history__img[img="2006-01"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2006-01"] {
    width: 100%;
  }
}
.c-history__img[img="2006-02"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2006-02"] {
    width: 60%;
  }
}
.c-history__img[img="2006-03"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2006-03"] {
    width: 50%;
  }
}
.c-history__img[img="2010-01"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2010-01"] {
    width: 50%;
  }
}
.c-history__img[img="2010-02"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2010-02"] {
    width: 100%;
  }
}
.c-history__img[img="2010-03"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2010-03"] {
    width: 100%;
  }
}
.c-history__img[img="2010-04"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2010-04"] {
    width: 100%;
  }
}
.c-history__img[img="2011"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2011"] {
    width: 100%;
  }
}
.c-history__img[img="2012-01"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2012-01"] {
    width: 50%;
  }
}
.c-history__img[img="2012-02"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2012-02"] {
    width: 44%;
  }
}
.c-history__img[img="2012-03"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2012-03"] {
    width: 100%;
  }
}
.c-history__img[img="2013"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2013"] {
    width: 100%;
  }
}
.c-history__img[img="2014"] {
  max-width: 655px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2014"] {
    width: 100%;
  }
}
.c-history__img[img="2015"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2015"] {
    width: 100%;
  }
}
.c-history__img[img="2016-01"] {
  max-width: 274px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2016-01"] {
    width: 44%;
  }
}
.c-history__img[img="2016-02"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2016-02"] {
    width: 100%;
  }
}
.c-history__img[img="2017-01"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2017-01"] {
    width: 50%;
  }
}
.c-history__img[img="2017-02"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2017-02"] {
    width: 100%;
  }
}
.c-history__img[img="2017-03"] {
  max-width: 266px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2017-03"] {
    width: 80%;
  }
}
.c-history__img[img="2017-04"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2017-04"] {
    width: 100%;
  }
}
.c-history__img[img="2017-05"] {
  max-width: 316px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2017-05"] {
    width: 90%;
  }
}
.c-history__img[img="2019-01"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2019-01"] {
    width: 100%;
  }
}
.c-history__img[img="2019-02"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2019-02"] {
    width: 100%;
  }
}
.c-history__img[img="2020"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2020"] {
    width: 100%;
  }
}
.c-history__img[img="2021-01"] {
  max-width: 656px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2021-01"] {
    width: 100%;
  }
}
.c-history__img[img="2021-02"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2021-02"] {
    width: 100%;
  }
}
.c-history__img[img="2021-03"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2021-03"] {
    width: 80%;
  }
}
.c-history__img[img="2022"] {
  max-width: 273px;
}
@media screen and (max-width: 767px) {
  .c-history__img[img="2022"] {
    width: 50%;
  }
}
.c-history__inner {
  margin-top: 48px;
}
.c-history__inner:first-child {
  margin-top: 0;
}

.c-philosophy {
  position: relative;
}
.c-philosophy__item {
  display: flex;
  align-items: flex-start;
  padding: 40px 0;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .c-philosophy__item {
    display: block;
    padding: 32px 0;
  }
}
.c-philosophy__term {
  display: flex;
  position: relative;
  align-items: center;
  min-width: 320px;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__term {
    min-width: inherit;
    gap: 18px;
  }
}
.c-philosophy__term:before {
  position: absolute;
  top: -40px;
  width: 100%;
  height: 3px;
  background: #E60012;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-philosophy__term:before {
    top: -32px;
    width: 50%;
  }
}
.c-philosophy__ttl {
  color: #E60012;
}
.c-philosophy__ttl strong {
  display: block;
  font-weight: 600;
}
.c-philosophy__ttl strong[lang=en] {
  font-size: 1.5rem;
}
.c-philosophy__ttl strong[lang=ja] {
  font-size: 1.125rem;
}
.c-philosophy__ttl small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
}
.c-philosophy__txt {
  width: calc(100% - 320px);
  padding: 12px 0 12px 64px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__txt {
    width: 100%;
    padding: 12px 0 0;
  }
}
.c-philosophy__caption {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-philosophy__caption {
    font-size: 1rem;
  }
}
.c-philosophy__desc {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__desc {
    margin-top: 12px;
  }
}
.c-philosophy__expansion {
  margin-left: 8px;
}
.c-philosophy__expansion img {
  vertical-align: middle;
}
.c-philosophy__img {
  max-width: 367px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__img {
    margin-top: 20px;
  }
}
.c-philosophy__img:first-child {
  margin-top: 0;
}
.c-philosophy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 70px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__icon {
    width: 44px;
    height: 44px;
    border-radius: 44px;
  }
}
.c-philosophy__icon[color=red] {
  border: 1px solid #E60012;
  background: #E60012;
}
.c-philosophy__icon[color=white] {
  border: 1px solid #E60012;
  background: #fff;
}
.c-philosophy__icon img {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__icon img {
    width: 22px;
  }
}
.c-philosophy__table {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .c-philosophy__table {
    margin-top: 12px;
  }
}
.c-philosophy__table th, .c-philosophy__table td {
  padding: 4px 0;
  font-weight: 600;
}
.c-philosophy__table th {
  min-width: 80px;
  padding-right: 12px;
}

.c-report {
  text-align: center;
}
.c-report__img {
  max-width: 280px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .c-report__img {
    width: 60%;
    margin: 0 auto 32px;
  }
}
.c-report__ttl {
  margin-bottom: 32px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-report__ttl {
    font-size: 1rem;
  }
}

.c-mv {
  position: relative;
}
.c-mv__slider {
  height: calc(100vh - 107px);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-mv__slider {
    height: calc(100vh - 53px);
  }
}
.c-mv__slider * {
  height: 100%;
}
.c-mv__slider video {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-mv__ttl {
  -webkit-animation: mvAnim 4s ease forwards 0.5s;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  transform: translate(-50%, -50%);
  animation: mvAnim 4s ease forwards 0.5s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .c-mv__ttl {
    width: 58%;
  }
}
.c-mv__ttl img {
  width: 100%;
}
.c-mv .slick-dots {
  display: flex;
  position: absolute;
  bottom: 24px;
  left: 0;
  justify-content: center;
  width: 100%;
  height: auto;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-mv .slick-dots {
    bottom: 20px;
    gap: 16px;
  }
}
.c-mv .slick-dots button {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-indent: -9999px;
}
@media screen and (max-width: 767px) {
  .c-mv .slick-dots button {
    width: 10px;
    height: 10px;
  }
}
.c-mv .slick-dots li.slick-active button {
  background: #fff;
}

@-webkit-keyframes mvAnim {
  0% {
    width: 36%;
    opacity: 0;
  }
  100% {
    width: 38%;
    opacity: 1;
  }
}

@keyframes mvAnim {
  0% {
    width: 36%;
    opacity: 0;
  }
  100% {
    width: 38%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes mvAnim {
    0% {
      width: 58%;
      opacity: 0;
    }
    100% {
      width: 60%;
      opacity: 1;
    }
  }
  @keyframes mvAnim {
    0% {
      width: 58%;
      opacity: 0;
    }
    100% {
      width: 60%;
      opacity: 1;
    }
  }
}
.c-information {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .c-information {
    padding: 32px 0 20px;
  }
}
.c-information__inner {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-information__inner {
    width: 100%;
    padding: 0 5vw;
  }
}
.c-information__item {
  padding: 20px 0;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .c-information__item {
    padding: 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-information__item:first-child {
    padding: 0 0 16px;
  }
}
.c-information__item a {
  display: block;
}
.c-information__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-information__top {
    margin-bottom: 8px;
    gap: 2px;
    font-size: 0.75rem;
  }
}
.c-information__top--time {
  min-width: 128px;
}
@media screen and (max-width: 767px) {
  .c-information__top--time {
    width: 100%;
    margin-bottom: 8px;
  }
}
.c-information__top--cat {
  display: inline-block;
  padding: 6px 12px;
  background: #E9ECEF;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-information__top--cat {
    margin: 0 2px 4px;
    padding: 4px 8px;
  }
}
.c-information__txt {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-information__txt {
    font-size: 0.875rem;
  }
}
.c-information__btn {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-information__btn {
    width: 98%;
    margin: 36px auto 0;
  }
}
.c-information .c-search .c-form__select {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .c-information .c-search .c-form__select {
    width: 50%;
  }
}
.c-information .c-search .c-form__select[size=large] {
  width: 100%;
}
.c-information .c-search .c-form__search {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .c-information .c-search .c-form__search {
    width: 100%;
  }
}
.c-information__main[layout=tworow] .p-information__item a {
  display: block;
}
.c-information__main[layout=tworow] .p-information__top {
  margin-bottom: 12px;
}

.c-content {
  padding: 20px 0 68px;
}
@media screen and (max-width: 767px) {
  .c-content {
    padding: 20px 0 40px;
  }
}
.c-content__inner {
  max-width: 1286px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-content__inner {
    padding: 0 5vw;
  }
}
.c-content__list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .c-content__list {
    display: block;
  }
}
.c-content__item {
  position: relative;
  width: calc((100% - 52px) / 3);
}
@media screen and (max-width: 767px) {
  .c-content__item {
    width: 100%;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-content__item:last-child {
    margin-bottom: 0;
  }
}
.c-content__item--txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  padding: 16px 20px;
  border-radius: 0 20px 0 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-content__item--txt {
    width: 70%;
    padding: 18px 16px;
  }
}
.c-content__item--txt span {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-content__item--txt span {
    font-size: 0.6rem;
  }
}
.c-content__item--txt p {
  font-weight: 600;
  font-size: 1.025rem;
}
@media screen and (max-width: 767px) {
  .c-content__item--txt p {
    font-size: 0.875rem;
  }
}
.c-content__item--txt i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .c-content__item--txt i {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .c-content__item--txt i:after {
    width: 8px;
    height: 8px;
  }
}
.c-content__btn {
  margin-top: 40px;
  text-align: center;
}
.c-content__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 2px solid #E60012 !important;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .c-content__btn a {
    width: 100%;
  }
}
.c-content__btn i {
  width: 18px;
}
@media screen and (max-width: 767px) {
  .c-content__btn i {
    width: 18px;
  }
}

.c-pagetop {
  display: flex;
  position: relative;
  align-items: flex-end;
  height: 323px;
  background-position: center !important;
  background-size: cover !important;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    height: 53vw;
  }
}
.c-pagetop__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 5vw 32px;
  }
}
.c-pagetop__middle {
  align-items: center;
  height: 148px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__middle {
    height: 100px;
  }
}
.c-pagetop__middle .c-pagetop__inner {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__middle .c-pagetop__inner {
    padding: 0 5vw;
  }
}
.c-pagetop__small {
  align-items: center;
  height: 88px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__small {
    height: 56px;
  }
}
.c-pagetop__small .c-pagetop__inner {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__small .c-pagetop__inner {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-pagetop__small .c-breadcrumb {
    margin-bottom: 0;
  }
}

.c-search {
  margin-bottom: 32px;
}
.c-search__top {
  display: flex;
  margin-bottom: 32px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-search__top {
    flex-direction: column-reverse;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-search__input {
    margin-bottom: 16px;
  }
}
.c-search__select {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-search__select {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-search__select:first-child {
    margin-bottom: 0;
  }
}
.c-search__radio {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-search__radio {
    margin-bottom: 16px;
  }
}
.c-search__btm {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-search__ttl {
  font-size: 0.85rem;
}

.c-backbtn {
  margin: 40px 0 64px;
}

.c-btmbnr {
  max-width: 980px;
  margin: 0 auto;
}

.c-modal {
  display: none;
  z-index: 3;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 800px;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-modal {
    width: 90%;
  }
}
.c-modal__overlay {
  display: none;
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.c-modal__close {
  display: none;
  z-index: 4;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    top: 4vw;
    right: 4vw;
    width: 40px;
    height: 40px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 40px;
  background: #fff;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-modal__close::before, .c-modal__close::after {
    height: 32px;
  }
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.p-header__logo {
  z-index: 1;
  position: relaive;
}
.p-header__logo a {
  display: flex;
  align-items: center;
  max-width: 268px;
  gap: 18px;
  transition-duration: 0.5s;
}
@media screen and (max-width: 960px) {
  .p-header__logo a {
    max-width: 200px;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 170px;
  }
}
.p-header__logo--company {
  display: block;
  max-width: 58px;
}
@media screen and (max-width: 767px) {
  .p-header__logo--company {
    max-width: 30px;
  }
}
.p-header__logo--txt {
  font-weight: 600;
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .p-header__logo--txt {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo--txt {
    font-size: 0.68rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-header__main.is-active {
    height: calc(var(--vh, 1vh) * 100);
    overflow: auto;
    /*height: 100vh;*/
    background: #fff;
  }
  .p-header__main.is-active .p-header__logo {
    display: block;
    opacity: 0;
  }
  .p-header__main.is-active .p-header__top {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-header__top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 5vw;
  }
}
.p-header__top .p-header__logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__global {
    display: none;
    /*position: fixed;*/
    /*top: 52px;*/
    /*top: 0;
    left: 0;*/
    width: 100%;
    min-height: calc(var(--vh, 1vh) * 100 - 52px);
    padding: 0 0 32px;
    background: #F7F7F7;
  }
}
@media screen and (max-width: 767px) {
  .p-header__global--inner {
    /*padding-top: 52px;
    height: calc(var(--vh, 1vh) * 100 - 52px);
    overflow: auto;*/
  }
}
.p-header__official {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-header__official {
    display: none;
  }
}
.p-header__navi--list {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .p-header__navi--list {
    display: block;
  }
}
.p-header__navi--item {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-header__navi--item {
    border-bottom: 1px solid #dddddd;
    font-size: 0.875rem;
  }
  .p-header__navi--item:last-child {
    margin-bottom: 0;
  }
}
.p-header__navi--item > strong {
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__navi--item > strong {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-header__navi--item > strong a {
    display: block;
    padding: 22px 5vw;
  }
}
.p-header__navi--item > strong a.is-current {
  color: #E60012;
}
@media screen and (max-width: 767px) {
  .p-header__navi--item > strong.is-accordion a {
    margin-right: 15vw;
  }
}
.p-header__navi--item > strong i {
  display: none;
  position: absolute;
  top: 50%;
  right: 5vw;
}
@media screen and (max-width: 767px) {
  .p-header__navi--item > strong i {
    display: block;
  }
}
.p-header__navi--item > strong .c-icon__accord {
  margin-top: -12px;
}
.p-header__navi--item > strong .c-icon__arrow {
  margin-top: -7px;
}
@media screen and (max-width: 767px) {
  .p-header__navi--item[accorion=true] i {
    display: block;
  }
}
.p-header__navi--accord {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__navi--accord {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 78px;
    height: 40px;
    margin-top: -20px;
  }
}
.p-header__navi--accord.is-active .c-icon__accord::before {
  display: none;
}
.p-header__other {
  padding: 20px 5vw;
}
.p-header__other--item {
  display: block;
  padding: 16px 0;
  font-size: 0.75rem;
}
.p-header__subMenu {
  display: none;
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .p-header__subMenu {
    position: static;
    margin-bottom: 16px;
    padding: 0 3vw;
    background: inherit;
  }
}
.p-header__subMenu--list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  gap: 20px 36px;
}
@media screen and (max-width: 767px) {
  .p-header__subMenu--list {
    display: block;
  }
}
.p-header__subMenu--list li {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-header__subMenu--list li {
    color: #555555;
    font-size: 0.75rem;
  }
  .p-header__subMenu--list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header__subMenu--list li a {
    display: block;
    padding: 16px 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-header__subMenu--list li:first-child a {
    display: block;
    padding: 8px 5vw 16px;
  }
}
.p-header__subMenu--close {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border-radius: 50%;
  background: #000000;
  content: "";
  color: #fff;
  cursor: pointer;
}
.p-header__subMenu--close::before, .p-header__subMenu--close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 12px;
  background: #fff;
  content: "";
}
.p-header__subMenu--close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-header__subMenu--close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-header__subMenu--close {
    display: none;
  }
}
.p-header__hamburger {
  display: none;
  z-index: 1;
  /*position: absolute;
  top: 11px;
  right: 5vw;*/
  width: 21px;
  min-width: 21px;
  height: 28px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header__hamburger .p-header__hamburger--inner {
  position: relative;
  width: 100%;
  height: 19px;
  margin-top: 4px;
}
.p-header__hamburger .p-header__hamburger--inner span {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 20px;
  background: #E60012;
  transition: all 0.4s;
}
.p-header__hamburger .p-header__hamburger--inner span:nth-child(2) {
  top: 8px;
}
.p-header__hamburger .p-header__hamburger--inner span:nth-child(3) {
  top: 16px;
}
.p-header__hamburger.is-active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.p-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.p-footer__top {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .p-footer__top {
    display: block;
    padding: 0;
    border-bottom: 0;
  }
}
.p-footer__nav {
  display: flex;
  justify-content: flex-start;
  padding: 42px 0;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: block;
    padding: 0;
  }
}
.p-footer__nav--column {
  width: 20%;
}
@media screen and (max-width: 960px) {
  .p-footer__nav--column {
    width: 22%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--column {
    width: 100%;
    border-bottom: 1px solid #dddddd;
  }
}
.p-footer__nav--column:last-child {
  border-bottom: 0;
}
.p-footer__nav--column[column="2"] {
  width: 48%;
}
@media screen and (max-width: 960px) {
  .p-footer__nav--column[column="2"] {
    width: 52%;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--column[column="2"] {
    width: 100%;
  }
}
.p-footer__nav--column[column="2"] .p-footer__nav--list {
  -moz-column-count: 2;
  gap: 36px;
  column-count: 2;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--column[column="2"] .p-footer__nav--list {
    -moz-column-count: 1;
    display: none;
    column-count: 1;
  }
}
.p-footer__nav--ttl {
  position: relative;
  margin-bottom: 26px;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl {
    margin-bottom: 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl[border=true] {
    border-bottom: 1px solid #dddddd;
  }
}
.p-footer__nav--ttl:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl a {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding: 24px 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl a.is-current {
    background: #F2F4F5;
    color: #E60012;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl:before {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    width: 78px;
    height: 100%;
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--ttl strong.is-accordion a {
    /*margin-right: 15vw;*/
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--list {
    display: none;
    padding: 24px 0 16px;
  }
}
.p-footer__nav--list li {
  margin-bottom: 26px;
  color: #555555;
  font-weight: 600;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--list li {
    margin-bottom: 0;
    font-size: 0.75rem;
  }
}
.p-footer__nav--list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--list li a {
    display: block;
    padding: 16px 8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav--list li:first-child a {
    padding: 8px 8vw 16px;
  }
}
.p-footer__nav i {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav i {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav .c-icon__accord {
    z-index: 2;
    position: absolute;
    top: 50%;
    right: 5vw;
    margin-top: -11px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav .c-icon__arrow {
    position: absolute;
    top: 50%;
    right: 5vw;
    width: 12px;
    height: 12px;
    margin-top: -7px;
  }
}
.p-footer__nav--accord {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-footer__nav--accord {
    display: block;
    z-index: 1;
    position: absolute;
    top: 50%;
    right: 0;
    width: 78px;
    height: 40px;
    margin-top: -20px;
  }
}
.p-footer__nav--accord.is-active .c-icon__accord::before {
  display: none;
}
.p-footer__mdl {
  display: flex;
  justify-content: space-between;
  padding: 42px 0;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__mdl {
    display: block;
    padding: 4vw 0;
  }
}
.p-footer__other {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .p-footer__other {
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__other {
    display: block;
    padding: 0;
  }
}
.p-footer__other--item {
  font-weight: 500;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__other--item {
    display: block;
    padding: 16px 0;
    font-size: 0.75rem;
  }
}
.p-footer__btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 55px calc(50vw - 50%);
  gap: 20px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__btm {
    display: block;
    padding: 55px 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__btm--left {
    margin-bottom: 71px;
  }
}
.p-footer__logo {
  display: flex;
  align-items: center;
  max-width: 280px;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 100%;
  }
}
.p-footer__logo--company {
  display: block;
  max-width: 48px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo--company {
    max-width: 40px;
    margin: 0 auto;
  }
}
.p-footer__logo--txt {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-footer__logo--txt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo--txt {
    display: none;
    font-size: 0.68rem;
  }
}
.p-footer__seven {
  max-width: 60px;
}
@media screen and (max-width: 960px) {
  .p-footer__seven {
    max-width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__seven {
    max-width: 40px;
    margin: 0 auto 43px;
  }
}
.p-footer__copyright {
  margin-top: 16px;
  color: #6c757d !important;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 22px;
    font-size: 0.75rem;
    text-align: center;
  }
}

.p-detail {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-detail {
    margin-bottom: 56px;
  }
}
.p-detail__ttl {
  margin: 20px auto 32px;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-detail__ttl {
    margin: 16px auto 20px;
    font-size: 1.125rem;
  }
}
.p-detail__img--thumb {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-detail__img--thumb {
    margin-bottom: 20px;
  }
}
.p-detail__txt {
  margin-bottom: 40px;
}
.p-detail__txt > * {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-detail__txt > * {
    margin: 16px 0;
  }
}
.p-detail__btm > * {
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .p-detail__btm > * {
    margin: 16px 0;
  }
}
.p-detail .c-desc {
  margin-bottom: 40px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-detail .c-desc {
    margin-bottom: 32px;
  }
}
.p-detail .c-table {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-detail .c-table {
    margin-bottom: 32px;
  }
}
.p-detail .c-ttl__wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-detail .c-ttl__wrap {
    margin-bottom: 32px;
  }
}
.p-detail .c-border {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-detail .c-border {
    margin-bottom: 32px;
  }
}
.p-detail .c-ttl__grey02 {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-detail .c-ttl__grey02 {
    padding: 16px 20px;
    font-size: 0.875rem;
    text-align: left;
  }
}
.p-detail p {
  font-size: 0.875rem;
  line-height: 2;
  word-break: break-all;
}
.p-detail p a {
  text-decoration: underline;
}
.p-detail .text-muted {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-detail .text-muted {
    display: block;
    gap: 6px;
  }
}
.p-detail .text-muted .mdl--news--pubdate {
  min-width: 132px;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .p-detail .text-muted .mdl--news--pubdate {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 0.75rem;
  }
}
.p-detail .text-muted .mdl--news--category {
  display: inline-block;
  margin-left: 0 !important;
  padding: 6px 12px;
  background: #E9ECEF;
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .p-detail .text-muted .mdl--news--category {
    margin: 0 2px 4px;
    padding: 4px 8px;
    font-size: 0.75rem;
  }
}
.p-detail .mdl--type-kerning {
  margin-bottom: 40px;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-detail .mdl--type-kerning {
    margin-bottom: 24px !important;
    font-size: 1.15rem;
  }
}
.p-detail .alert-secondary {
  border-color: #E9ECEF;
  background-color: #F4F5F7;
  color: #000;
}
.p-detail .btn-outline-dark {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin-bottom: 0.2rem;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  border-color: #dddddd;
  color: #000;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}
.p-detail .btn-outline-dark svg {
  display: block;
  vertical-align: middle;
}
.p-detail .btn-outline-dark:hover {
  background-color: #ffffff;
}
.p-detail .bsx--table-block {
  border-collapse: collapse;
}
.p-detail .bsx--table-block th {
  padding: 1rem;
  border: 1px solid #E9ECEF;
  background: #F4F5F7;
  font-size: 0.875rem;
}
.p-detail .bsx--table-block td {
  padding: 1rem;
  border: 1px solid #E9ECEF;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-detail .container {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.p-about {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-about {
    margin-bottom: 56px;
  }
}
.p-about__top {
  margin: 0 0 70px;
}
@media screen and (max-width: 767px) {
  .p-about__top {
    margin: 0 0 32px;
  }
}
.p-about__btn {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-about__btn {
    margin: 32px 0;
  }
}

.p-message__btm {
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .p-message__btm {
    padding: 40px 0 0;
  }
}
.p-message__btm .c-imglist {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-message__btm .c-imglist {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .p-outline__top + div {
    padding: 24px 0 40px;
  }
}
.p-outline__main {
  padding: 80px 0;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .p-outline__main {
    padding: 40px 0 44px;
  }
}
.p-outline__main:last-child {
  padding: 80px 0 0;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-outline__main:last-child {
    padding: 40px 0 0;
  }
}
.p-outline__btn {
  margin-top: 40px;
}

.p-history__top {
  margin: 0 0 40px;
}
.p-history__main {
  position: relative;
  padding: 80px 0 24px;
}
@media screen and (max-width: 767px) {
  .p-history__main {
    padding: 44px 0 24px;
  }
}
.p-history__main:before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  margin-left: -50vw;
  background: #dddddd;
  content: "";
}
.p-history__main:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  margin-left: -50vw;
  background: #dddddd;
  content: "";
}

.p-sustainability__btn {
  margin: 40px 0 48px;
}
@media screen and (max-width: 767px) {
  .p-sustainability__btn {
    margin: 32px 0;
  }
}

.p-zanbia__top {
  padding: 40px;
  border-radius: 20px;
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .p-zanbia__top {
    padding: 32px 20px;
  }
}
.p-zanbia__intro {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-zanbia__intro {
    display: block;
  }
}
.p-zanbia__intro--ttl {
  color: #E60012;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-zanbia__intro--ttl {
    font-size: 1rem;
  }
}
.p-zanbia__intro--desc {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__intro--desc {
    margin-top: 32px;
  }
}
.p-zanbia__intro--img {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__intro--img {
    width: 80%;
    margin: 0 auto 32px;
  }
}
.p-zanbia .c-white {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia .c-white {
    margin-top: 32px;
  }
}
.p-zanbia__ngo .c-border__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__ngo .c-border__ttl {
    margin-bottom: 32px;
  }
}
.p-zanbia__house {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__house {
    gap: 16px;
  }
}
.p-zanbia__house--img {
  max-width: 214px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__house--img {
    width: 34%;
  }
}
.p-zanbia__house--ttl {
  color: #E60012;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-zanbia__house--ttl {
    width: 66%;
    font-size: 1rem;
  }
}
.p-zanbia__fund {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__fund {
    display: block;
  }
}
.p-zanbia__fund--img {
  width: calc(45% - 20px);
  max-width: 310px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__fund--img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.p-zanbia__fund--img figure {
  margin-bottom: 20px;
}
.p-zanbia__fund--txt {
  width: calc(55% - 20px);
}
@media screen and (max-width: 767px) {
  .p-zanbia__fund--txt {
    width: 100%;
    max-width: 100%;
  }
}
.p-zanbia__fund--ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__fund--ttl {
    margin-bottom: 20px;
  }
}
.p-zanbia__fund--btn {
  margin: 24px 0 40px;
}
@media screen and (max-width: 767px) {
  .p-zanbia__fund--btn {
    margin: 24px 0 32px;
  }
}
.p-zanbia__fund--btn:last-child {
  margin: 24px 0 0;
}

.p-sa-about__top {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-sa-about__top {
    margin: 0 0 32px;
  }
}
.p-sa-about__main {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-sa-about__main {
    margin: 32px 0 0;
  }
}

.p-support__btn {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-support__btn {
    margin: 32px 0 0;
  }
}

.p-stores__top {
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  .p-stores__top {
    margin: 0 0 32px;
  }
}
.p-stores__main {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-stores__main {
    margin: 32px 0 0;
  }
}
.p-stores__main .c-splitcont__txt--ttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-stores__main .c-splitcont__txt--ttl {
    margin-bottom: 20px;
  }
}
.p-stores__main .c-imglist {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-stores__main .c-imglist {
    margin-bottom: 20px;
  }
}

.p-product .c-ttl__circle {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-product .c-ttl__circle {
    margin: 32px 0 20px;
  }
}

.p-activities__top + .p-activities__main {
  margin: 40px 0 0;
}
.p-activities .p-activities__btn {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-activities .p-activities__btn {
    margin: 20px 0 0;
    text-align: center;
  }
}
.p-activities .c-ttl__wrap {
  margin: 0 0 20px;
}

.p-white__top + .p-white__main {
  margin: 40px 0 0;
}
.p-white .p-white__btn {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-white .p-white__btn {
    margin: 20px 0 0;
    text-align: center;
  }
}
.p-white .c-ttl__wrap {
  margin: 0 0 20px;
}

.p-development .c-border__box {
  margin: 32px 0 24px;
}
.p-development__btn {
  margin: 32px 0 24px;
}
@media screen and (max-width: 767px) {
  .p-development__btn {
    margin: 20px 0;
    text-align: center;
  }
}

.p-awards__logo {
  max-width: 260px;
  margin: 24px auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-awards__logo {
    width: 70%;
    margin: 20px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-awards .c-ttl__wrap {
    margin: 32px 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-awards .c-ttl__circle {
    margin: 32px 0;
  }
}

.p-service__img {
  max-width: 728px;
  margin: 80px auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-service__img {
    margin: 40px auto !important;
  }
}
@media screen and (max-width: 767px) {
  .p-service__img .c-imglist__list {
    display: block !important;
    width: 80%;
    margin: 0 auto !important;
  }
}
.p-service__btn {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-service .c-imglist__list {
    display: flex;
    flex-wrap: inherit;
    margin: 32px 0 12px;
    gap: 8px;
  }
}

.p-zanbia-report .c-splitcont__txt--desc {
  margin-top: 0;
}
.p-zanbia-report .c-splitcont__harf[align=center] .c-splitcont__txt {
  margin-top: -20px;
}
@media screen and (max-width: 767px) {
  .p-zanbia-report .c-splitcont__harf[align=center] .c-splitcont__txt {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-zanbia-report .l-section {
    margin: 32px 0 0;
  }
}
.p-zanbia-report .l-article > * {
  margin: 32px 0;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

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

  .u-sp {
    display: block;
  }
}
.u-pc__flex {
  display: flex;
}

.u-sp_flex {
  display: none;
}

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

  .u-sp {
    display: block;
  }

  .u-pc__flex {
    display: none;
  }

  .u-sp_flex {
    display: flex;
  }
}
.u-border {
  border: 1px solid #dddddd;
}

.u-align__center {
  text-align: center;
}
.u-align__left {
  text-align: left;
}
.u-align__right {
  text-align: right;
}

.u-pt0 {
  padding-top: 0px;
}

.u-pt4 {
  padding-top: 4px;
}

.u-pt5 {
  padding-top: 5px;
}

.u-pt8 {
  padding-top: 8px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt12 {
  padding-top: 12px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt16 {
  padding-top: 16px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt24 {
  padding-top: 24px;
}

.u-pt25 {
  padding-top: 25px;
}

.u-pt28 {
  padding-top: 28px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt32 {
  padding-top: 32px;
}

.u-pt35 {
  padding-top: 35px;
}

.u-pt36 {
  padding-top: 36px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt44 {
  padding-top: 44px;
}

.u-pt45 {
  padding-top: 45px;
}

.u-pt48 {
  padding-top: 48px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt52 {
  padding-top: 52px;
}

.u-pt55 {
  padding-top: 55px;
}

.u-pt56 {
  padding-top: 56px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt64 {
  padding-top: 64px;
}

.u-pt65 {
  padding-top: 65px;
}

.u-pt68 {
  padding-top: 68px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt72 {
  padding-top: 72px;
}

.u-pt75 {
  padding-top: 75px;
}

.u-pt76 {
  padding-top: 76px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt84 {
  padding-top: 84px;
}

.u-pt85 {
  padding-top: 85px;
}

.u-pt88 {
  padding-top: 88px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt92 {
  padding-top: 92px;
}

.u-pt95 {
  padding-top: 95px;
}

.u-pt96 {
  padding-top: 96px;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pb0 {
  padding-bottom: 0px;
}

.u-pb4 {
  padding-bottom: 4px;
}

.u-pb5 {
  padding-bottom: 5px;
}

.u-pb8 {
  padding-bottom: 8px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb12 {
  padding-bottom: 12px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb16 {
  padding-bottom: 16px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb24 {
  padding-bottom: 24px;
}

.u-pb25 {
  padding-bottom: 25px;
}

.u-pb28 {
  padding-bottom: 28px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb32 {
  padding-bottom: 32px;
}

.u-pb35 {
  padding-bottom: 35px;
}

.u-pb36 {
  padding-bottom: 36px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb44 {
  padding-bottom: 44px;
}

.u-pb45 {
  padding-bottom: 45px;
}

.u-pb48 {
  padding-bottom: 48px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb52 {
  padding-bottom: 52px;
}

.u-pb55 {
  padding-bottom: 55px;
}

.u-pb56 {
  padding-bottom: 56px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb64 {
  padding-bottom: 64px;
}

.u-pb65 {
  padding-bottom: 65px;
}

.u-pb68 {
  padding-bottom: 68px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb72 {
  padding-bottom: 72px;
}

.u-pb75 {
  padding-bottom: 75px;
}

.u-pb76 {
  padding-bottom: 76px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb84 {
  padding-bottom: 84px;
}

.u-pb85 {
  padding-bottom: 85px;
}

.u-pb88 {
  padding-bottom: 88px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb92 {
  padding-bottom: 92px;
}

.u-pb95 {
  padding-bottom: 95px;
}

.u-pb96 {
  padding-bottom: 96px;
}

.u-pb100 {
  padding-bottom: 100px;
}

.u-pl0 {
  padding-left: 0px;
}

.u-pl4 {
  padding-left: 4px;
}

.u-pl5 {
  padding-left: 5px;
}

.u-pl8 {
  padding-left: 8px;
}

.u-pl10 {
  padding-left: 10px;
}

.u-pl12 {
  padding-left: 12px;
}

.u-pl15 {
  padding-left: 15px;
}

.u-pl16 {
  padding-left: 16px;
}

.u-pl20 {
  padding-left: 20px;
}

.u-pl24 {
  padding-left: 24px;
}

.u-pl25 {
  padding-left: 25px;
}

.u-pl28 {
  padding-left: 28px;
}

.u-pl30 {
  padding-left: 30px;
}

.u-pl32 {
  padding-left: 32px;
}

.u-pl35 {
  padding-left: 35px;
}

.u-pl36 {
  padding-left: 36px;
}

.u-pl40 {
  padding-left: 40px;
}

.u-pl44 {
  padding-left: 44px;
}

.u-pl45 {
  padding-left: 45px;
}

.u-pl48 {
  padding-left: 48px;
}

.u-pl50 {
  padding-left: 50px;
}

.u-pl52 {
  padding-left: 52px;
}

.u-pl55 {
  padding-left: 55px;
}

.u-pl56 {
  padding-left: 56px;
}

.u-pl60 {
  padding-left: 60px;
}

.u-pl64 {
  padding-left: 64px;
}

.u-pl65 {
  padding-left: 65px;
}

.u-pl68 {
  padding-left: 68px;
}

.u-pl70 {
  padding-left: 70px;
}

.u-pl72 {
  padding-left: 72px;
}

.u-pl75 {
  padding-left: 75px;
}

.u-pl76 {
  padding-left: 76px;
}

.u-pl80 {
  padding-left: 80px;
}

.u-pl84 {
  padding-left: 84px;
}

.u-pl85 {
  padding-left: 85px;
}

.u-pl88 {
  padding-left: 88px;
}

.u-pl90 {
  padding-left: 90px;
}

.u-pl92 {
  padding-left: 92px;
}

.u-pl95 {
  padding-left: 95px;
}

.u-pl96 {
  padding-left: 96px;
}

.u-pl100 {
  padding-left: 100px;
}

.u-pr0 {
  padding-right: 0px;
}

.u-pr4 {
  padding-right: 4px;
}

.u-pr5 {
  padding-right: 5px;
}

.u-pr8 {
  padding-right: 8px;
}

.u-pr10 {
  padding-right: 10px;
}

.u-pr12 {
  padding-right: 12px;
}

.u-pr15 {
  padding-right: 15px;
}

.u-pr16 {
  padding-right: 16px;
}

.u-pr20 {
  padding-right: 20px;
}

.u-pr24 {
  padding-right: 24px;
}

.u-pr25 {
  padding-right: 25px;
}

.u-pr28 {
  padding-right: 28px;
}

.u-pr30 {
  padding-right: 30px;
}

.u-pr32 {
  padding-right: 32px;
}

.u-pr35 {
  padding-right: 35px;
}

.u-pr36 {
  padding-right: 36px;
}

.u-pr40 {
  padding-right: 40px;
}

.u-pr44 {
  padding-right: 44px;
}

.u-pr45 {
  padding-right: 45px;
}

.u-pr48 {
  padding-right: 48px;
}

.u-pr50 {
  padding-right: 50px;
}

.u-pr52 {
  padding-right: 52px;
}

.u-pr55 {
  padding-right: 55px;
}

.u-pr56 {
  padding-right: 56px;
}

.u-pr60 {
  padding-right: 60px;
}

.u-pr64 {
  padding-right: 64px;
}

.u-pr65 {
  padding-right: 65px;
}

.u-pr68 {
  padding-right: 68px;
}

.u-pr70 {
  padding-right: 70px;
}

.u-pr72 {
  padding-right: 72px;
}

.u-pr75 {
  padding-right: 75px;
}

.u-pr76 {
  padding-right: 76px;
}

.u-pr80 {
  padding-right: 80px;
}

.u-pr84 {
  padding-right: 84px;
}

.u-pr85 {
  padding-right: 85px;
}

.u-pr88 {
  padding-right: 88px;
}

.u-pr90 {
  padding-right: 90px;
}

.u-pr92 {
  padding-right: 92px;
}

.u-pr95 {
  padding-right: 95px;
}

.u-pr96 {
  padding-right: 96px;
}

.u-pr100 {
  padding-right: 100px;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt4 {
  margin-top: 4px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt12 {
  margin-top: 12px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt28 {
  margin-top: 28px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt36 {
  margin-top: 36px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt44 {
  margin-top: 44px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt48 {
  margin-top: 48px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt52 {
  margin-top: 52px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt56 {
  margin-top: 56px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt65 {
  margin-top: 65px;
}

.u-mt68 {
  margin-top: 68px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt75 {
  margin-top: 75px;
}

.u-mt76 {
  margin-top: 76px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt84 {
  margin-top: 84px;
}

.u-mt85 {
  margin-top: 85px;
}

.u-mt88 {
  margin-top: 88px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt92 {
  margin-top: 92px;
}

.u-mt95 {
  margin-top: 95px;
}

.u-mt96 {
  margin-top: 96px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb28 {
  margin-bottom: 28px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb32 {
  margin-bottom: 32px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb44 {
  margin-bottom: 44px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb48 {
  margin-bottom: 48px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb52 {
  margin-bottom: 52px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb56 {
  margin-bottom: 56px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb64 {
  margin-bottom: 64px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb68 {
  margin-bottom: 68px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb72 {
  margin-bottom: 72px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb76 {
  margin-bottom: 76px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb84 {
  margin-bottom: 84px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb88 {
  margin-bottom: 88px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb92 {
  margin-bottom: 92px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb96 {
  margin-bottom: 96px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-ml0 {
  margin-left: 0px;
}

.u-ml4 {
  margin-left: 4px;
}

.u-ml5 {
  margin-left: 5px;
}

.u-ml8 {
  margin-left: 8px;
}

.u-ml10 {
  margin-left: 10px;
}

.u-ml12 {
  margin-left: 12px;
}

.u-ml15 {
  margin-left: 15px;
}

.u-ml16 {
  margin-left: 16px;
}

.u-ml20 {
  margin-left: 20px;
}

.u-ml24 {
  margin-left: 24px;
}

.u-ml25 {
  margin-left: 25px;
}

.u-ml28 {
  margin-left: 28px;
}

.u-ml30 {
  margin-left: 30px;
}

.u-ml32 {
  margin-left: 32px;
}

.u-ml35 {
  margin-left: 35px;
}

.u-ml36 {
  margin-left: 36px;
}

.u-ml40 {
  margin-left: 40px;
}

.u-ml44 {
  margin-left: 44px;
}

.u-ml45 {
  margin-left: 45px;
}

.u-ml48 {
  margin-left: 48px;
}

.u-ml50 {
  margin-left: 50px;
}

.u-ml52 {
  margin-left: 52px;
}

.u-ml55 {
  margin-left: 55px;
}

.u-ml56 {
  margin-left: 56px;
}

.u-ml60 {
  margin-left: 60px;
}

.u-ml64 {
  margin-left: 64px;
}

.u-ml65 {
  margin-left: 65px;
}

.u-ml68 {
  margin-left: 68px;
}

.u-ml70 {
  margin-left: 70px;
}

.u-ml72 {
  margin-left: 72px;
}

.u-ml75 {
  margin-left: 75px;
}

.u-ml76 {
  margin-left: 76px;
}

.u-ml80 {
  margin-left: 80px;
}

.u-ml84 {
  margin-left: 84px;
}

.u-ml85 {
  margin-left: 85px;
}

.u-ml88 {
  margin-left: 88px;
}

.u-ml90 {
  margin-left: 90px;
}

.u-ml92 {
  margin-left: 92px;
}

.u-ml95 {
  margin-left: 95px;
}

.u-ml96 {
  margin-left: 96px;
}

.u-ml100 {
  margin-left: 100px;
}

.u-mr0 {
  margin-right: 0px;
}

.u-mr4 {
  margin-right: 4px;
}

.u-mr5 {
  margin-right: 5px;
}

.u-mr8 {
  margin-right: 8px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr12 {
  margin-right: 12px;
}

.u-mr15 {
  margin-right: 15px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}

.u-mr24 {
  margin-right: 24px;
}

.u-mr25 {
  margin-right: 25px;
}

.u-mr28 {
  margin-right: 28px;
}

.u-mr30 {
  margin-right: 30px;
}

.u-mr32 {
  margin-right: 32px;
}

.u-mr35 {
  margin-right: 35px;
}

.u-mr36 {
  margin-right: 36px;
}

.u-mr40 {
  margin-right: 40px;
}

.u-mr44 {
  margin-right: 44px;
}

.u-mr45 {
  margin-right: 45px;
}

.u-mr48 {
  margin-right: 48px;
}

.u-mr50 {
  margin-right: 50px;
}

.u-mr52 {
  margin-right: 52px;
}

.u-mr55 {
  margin-right: 55px;
}

.u-mr56 {
  margin-right: 56px;
}

.u-mr60 {
  margin-right: 60px;
}

.u-mr64 {
  margin-right: 64px;
}

.u-mr65 {
  margin-right: 65px;
}

.u-mr68 {
  margin-right: 68px;
}

.u-mr70 {
  margin-right: 70px;
}

.u-mr72 {
  margin-right: 72px;
}

.u-mr75 {
  margin-right: 75px;
}

.u-mr76 {
  margin-right: 76px;
}

.u-mr80 {
  margin-right: 80px;
}

.u-mr84 {
  margin-right: 84px;
}

.u-mr85 {
  margin-right: 85px;
}

.u-mr88 {
  margin-right: 88px;
}

.u-mr90 {
  margin-right: 90px;
}

.u-mr92 {
  margin-right: 92px;
}

.u-mr95 {
  margin-right: 95px;
}

.u-mr96 {
  margin-right: 96px;
}

.u-mr100 {
  margin-right: 100px;
}

.c-article--content ul {
  list-style: revert;
  margin: revert;
  padding: revert;
}

.c-article--content ol {
  list-style: revert;
  margin: revert;
  padding: revert;
}

.c-article--content h3 {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-article--content h3 {
    font-size: 1rem;
  }
}
