  @charset "UTF-8";

html {
  font-size: 10px;
}

body {
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

br {
  letter-spacing: 0;
}

img {
  border: 0 none;
}

abbr {
  border: none;
}

input,
select,
textarea {
  vertical-align: middle;
}

textarea {
  padding: 1px;
}

table,
td,
th {
  padding: 0;
  border: none;
  border-collapse: separate;
}

th {
  font-weight: bold;
}

tr,
th,
td {
  vertical-align: middle;
}

ul,
ol,
li {
  list-style: none;
}

#globalHeader .header__title {
  font-size: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
}

.onlyPc {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .onlyPc {
    display: none !important;
  }
}

.onlySp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .onlySp {
    display: block !important;
  }
}

.zoomImg {
  overflow: hidden;
}

.zoomImg__img {
  transition-duration: 0.3s;
}

.zoomImg:hover .zoomImg__img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

.blankIcon {
  display: inline-block;
  margin-left: 6px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.3s;
}

.blankIcon--white {
  background-image: url(/information/ir_assets/img/blank_icon_white.png);
}

.content {
  max-width: 1100px;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section {
  margin-bottom: 60px;
}

.section__row {
  display: flex;
}

@media screen and (max-width: 767px) {
  .section__row {
    flex-direction: column;
  }
}

.section__row .section__imgWrapper {
  flex-shrink: 0;
  margin-top: 0;
  margin-left: 5.5555555%;
  max-width: 367px;
}

@media screen and (max-width: 767px) {
  .section__row .section__imgWrapper {
    margin-left: 0;
    max-width: none;
  }
}

.section__imgWrapper {
  margin-top: 45px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section__imgWrapper {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

.section__imgWrapper img {
  vertical-align: middle;
  max-width: 100%;
}

.section__sign {
  width: 290px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .section__sign {
    width: 50%;
  }
}

.section__sign img {
  width: 100%;
}

.relatedNavi {
  max-width: 1080px;
  margin: auto;
  margin-top: 90px;
  margin-bottom: 58px;
}

@media screen and (max-width: 767px) {
  .relatedNavi {
    margin-top: 60px;
  }
}

.relatedNavi__title {
  margin-bottom: 10px;
  font-size: 2.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .relatedNavi__title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    padding: 0 20px;
  }
}

.relatedNavi__wrapper {
  padding: 32px 45px;
  background-color: #F5F7F7;
}

@media screen and (max-width: 767px) {
  .relatedNavi__wrapper {
    padding: 25px 20px;
  }
}

.relatedList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .relatedList {
    flex-direction: column;
  }
}

.relatedList__item {
  position: relative;
  flex-shrink: 0;
  width: 32.2222222222%;
  margin-right: 1.6161616%;
}

.relatedList__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .relatedList__item {
    width: 100%;
    margin-top: 15px;
    margin-right: 0;
  }
}

.relatedList__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#018D54 0%, #ADC123 100%);
  z-index: 2;
}

.relatedList__item:nth-child(n+4) {
  margin-top: 15px;
}

.relatedList__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 28px 20px 28px 15px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: -0.02em;
  background-color: #fff;
  transition: all 0.3s;
}

.relatedList__link:hover {
  color: #fff;
  background-color: #018D54;
}

.relatedList__link:hover .blankIcon {
  background-image: url(/information/ir_assets/img/blank_icon_white.png);
}

.relatedList__link:hover.relatedList__link::before, .relatedList__link:hover.relatedList__link::after {
  background-color: #fff;
}

.relatedList__link::before, .relatedList__link::after {
  content: "";
  width: 9px;
  height: 1.5px;
  display: inline-block;
  border-radius: 2px;
  background-color: #018D54;
  position: absolute;
  right: 12px;
}

.relatedList__link::before {
  top: calc(50% - 3px);
  transform: rotate(45deg);
}

.relatedList__link::after {
  bottom: calc(50% - 4px);
  transform: rotate(-45deg);
}

.breadcrumb {
  background-color: #018D54;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1310px;
  margin: 0 auto;
  padding: 12px 16px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .breadcrumb__list {
    padding: 12px 20px;
  }
}

.breadcrumb__item {
  font-size: 1.4rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .breadcrumb__item {
    font-size: 1.2rem;
  }
}

.breadcrumb__item+.breadcrumb__item::before {
  content: "";
  display: inline-block;
  margin-left: 14px;
  margin-right: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .breadcrumb__item+.breadcrumb__item::before {
    margin-left: 8px;
    margin-right: 12px;
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}

.breadcrumb__link {
  color: #fff;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.type1Heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 47px;
  font-size: 3.7rem;
}

@media screen and (max-width: 767px) {
  .type1Heading {
    margin-bottom: 40px;
    font-size: 2.8rem;
  }
}

.type1Heading::after {
  content: "";
  width: 35px;
  height: 3px;
  background-color: #018D54;
}

.type2Heading {
  position: relative;
  font-size: 3.7rem;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .type2Heading {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}

.type2Heading--spaceWide {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .type2Heading--spaceWide {
    margin-bottom: 39px;
  }
}

.type2Heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0%;
  display: inline-block;
  width: 35px;
  height: 3px;
  background-color: #018D54;
}

.type3Heading {
  margin-bottom: 18px;
  font-size: 2.4rem;
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .type3Heading {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}

.type4Heading {
  font-size: 2.4rem;
  padding: 4px 0;
  margin-bottom: 30px;
  line-height: 1.5;
  border-bottom: 1px solid #CECECE;
}

@media screen and (max-width: 767px) {
  .type4Heading {
    margin-bottom: 17px;
    font-size: 1.8rem;
  }
}

.type5Heading {
  margin-bottom: 12px;
  font-size: 2.4rem;
  color: #006A46;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .type5Heading {
    margin-bottom: 8px;
    font-size: 1.8rem;
  }
}

.type6Heading {
  margin-bottom: 8px;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .type6Heading {
    font-size: 1.6rem;
  }
}

.textLink {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 27px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .textLink {
    font-size: 1.6rem;
  }
}

.textLink:hover {
  color: #018D54;
}

.textLink::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

.textLink::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 10px;
  left: 4px;
  transform: rotate(45deg);
}

.textLink__pdfIcon {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}

.textLink__format {
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .textLink__format {
    font-size: 1rem;
  }
}

.listLink {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .listLink {
    margin-bottom: 30px;
  }
}

.listLink__item {
  border-bottom: 1px solid #B8B8B8;
}

.listLink__item:first-of-type {
  border-top: 1px solid #B8B8B8;
}

.listLink__link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.listLink__link:hover {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .listLink__link {
    padding-right: 20px;
    font-size: 1.6rem;
  }
}

.listLink__link::before, .listLink__link::after {
  content: "";
  width: 10px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #018D54;
  position: absolute;
  right: 12px;
}

.listLink__link::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.listLink__link::after {
  bottom: calc(50% - 4px);
  transform: rotate(-45deg);
}

.listLink__time {
  margin-right: 16px;
  font-weight: bold;
}

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

.listLink__text {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 14px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .listLink__text {
    padding-right: 20px;
    font-size: 1.6rem;
  }
}

.link {
  margin-bottom: 10px;
}

.link__text {
  color: #333;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.link__text:hover {
  color: #018D54;
}

.link__pdfIcon {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.buttonWrapper {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .buttonWrapper {
    flex-direction: column;
  }
}

.buttonWrapper .button:not(:first-child) {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .buttonWrapper .button:not(:first-child) {
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .buttonWrapper .button {
    margin: auto;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .buttonWrapper .button:last-child {
    margin-bottom: 0;
  }
}

.buttonWrapper--right {
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .buttonWrapper--right {
    justify-content: center;
  }
}

.buttonWrapper--left {
  justify-content: flex-start;
}

.button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 235px;
  margin-bottom: 10px;
  padding: 8.5px 0;
  background-color: #018D54;
  border-radius: 4px;
  border: 0;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.8;
}

.button--gradation {
  background: linear-gradient(90deg, #AFD83C, #018D54);
}

.button::before, .button::after {
  content: "";
  width: 8px;
  height: 1.5px;
  display: inline-block;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  right: 15px;
}

.button::before {
  top: calc(50% - 3px);
  transform: rotate(45deg);
}

.button::after {
  bottom: calc(50% - 3px);
  transform: rotate(-45deg);
}

.button--download::before {
  content: none;
}

.button--download::after {
  content: "";
  width: 12px;
  height: 15px;
  top: 15px;
  right: 12px;
  transform: none;
  background-image: url(/information/ir_assets/img/icon_download.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

.button--circle::before {
  content: none;
}

.button--circle::after {
  content: "";
  width: 25px;
  height: 25px;
  top: 9px;
  right: 12px;
  transform: none;
  background-image: url(/information/ir_assets/img/icon_circle.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
}

.button--white {
  color: #018D54;
  background-color: #fff;
}

.button--white::before, .button--white::after {
  background-color: #018D54;
}

.contentLink {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 68px;
}

@media screen and (max-width: 767px) {
  .contentLink {
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.contentLink__item {
  width: 31.8518518519%;
  background-color: #fff;
  margin-bottom: 22px;
  margin-right: 2.22222222%;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.1);
}

@media screen and (max-width: 767px) {
  .contentLink__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.2);
  }
}

.contentLink__item:nth-child(3n) {
  margin-right: 0;
}

.contentLink__text {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 27px 0;
  padding-left: 2.3148148%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  transition: all 0.3s;
}

.contentLink__text:hover {
  color: #fff;
  background-color: #018D54;
}

.contentLink__text:hover .blankIcon {
  background-image: url(/information/ir_assets/img/blank_icon_white.png);
}

.contentLink__text:hover.contentLink__text::before {
  background-color: #fff;
}

.contentLink__text:hover.contentLink__text::after {
  border-top: solid 2px #018D54;
  border-right: solid 2px #018D54;
}

@media screen and (max-width: 767px) {
  .contentLink__text {
    padding: 32px 15px;
    font-size: 2rem;
  }
}

.contentLink__text::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.contentLink__text::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%) rotate(45deg);
}

.jumbotron {
  position: relative;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  min-height: 300px;
  height: 300px;
  margin-bottom: 90px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.jumbotron--mb0 {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .jumbotron {
    min-height: 130px;
    height: 130px;
    margin-bottom: 25px;
  }

  .jumbotron--keiei {
    background-image: url(/information/ir_assets/img/keiei/keyvisual_sp.jpg) !important;
  }
}

.jumbotron::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(128deg, white 8%, rgba(255, 255, 255, 0) 54%, transparent);
}

@media screen and (max-width: 767px) {
  .jumbotron::before {
    background: linear-gradient(128deg, white 8%, rgba(255, 255, 255, 0) 85%, transparent);
  }
}

.jumbotron__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  max-width: 1266px;
  padding-left: 10px;
  padding-right: 10px;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .jumbotron__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.jumbotron__title {
  position: relative;
  font-size: 4.2rem;
  line-height: 1.6;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .jumbotron__title {
    font-size: 3rem;
  }
}

.jumbotron__label {
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.065em;
}

.paragraph {
  margin-bottom: 20px;
  font-size: 1.8rem;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .paragraph {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }
}

.paragraph--white {
  color: #fff;
}

.paragraph--narrow {
  margin-bottom: 8px;
}

.note {
  display: flex;
  align-items: flex-start;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .note {
    font-size: 1.3rem;
  }
}

.note::before {
  content: "※";
  display: inline-block;
  margin-right: 5px;
}

.media {
  margin-bottom: 40px;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.15);
}

@media screen and (max-width: 767px) {
  .media {
    margin-bottom: 20px;
    box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.2);
  }
}

.media__link {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.media__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .media__link {
    flex-direction: column;
  }
}

.media__link[target*=blank] .media__title::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  order: 2;
}

.media__imgWrapper {
  flex-shrink: 0;
  width: 36.2962962963%;
  margin-right: 3.148148148%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .media__imgWrapper {
    width: 100%;
    margin-right: 0;
  }
}

.media__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.media__body {
  padding: 34px 0 32px;
}

@media screen and (max-width: 767px) {
  .media__body {
    padding: 25px 10px;
  }
}

.media__inner {
  margin-bottom: 10px;
}

.media__title {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 3.3rem;
}

@media screen and (max-width: 767px) {
  .media__title {
    margin-bottom: 18px;
    font-size: 2.6rem;
  }
}

.media__titleIcon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 15px;
  flex-shrink: 0;
  order: 3;
}

@media screen and (max-width: 767px) {
  .media__titleIcon {
    margin-left: auto;
  }
}

.media__titleIcon::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.media__titleIcon::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 6px;
}

.media__subTitle {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .media__subTitle {
    font-size: 2.2rem;
  }
}

.media__text {
  font-weight: bold;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .media__text {
    margin-bottom: 4px;
    font-size: 1.6rem;
  }
}

.mediaList {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .mediaList {
    margin-bottom: 20px;
    padding: 0;
  }
}

.mediaList--col2 {
  display: flex;
  flex-wrap: wrap;
}

.mediaList--col2 .mediaList__item {
  width: 48.0582524272%;
  margin-right: 3.8834951%;
}

@media screen and (max-width: 767px) {
  .mediaList--col2 .mediaList__item {
    width: 100%;
    margin-right: 0;
  }
}

.mediaList--col2 .mediaList__item:nth-child(2n) {
  margin-right: 0;
}

.mediaList--col2 .mediaList__imgWrapper {
  width: 36.3636363636%;
}

@media screen and (max-width: 767px) {
  .mediaList--col2 .mediaList__imgWrapper {
    width: 100%;
  }
}

.mediaList__item {
  display: flex;
  position: relative;
  margin-top: 40px;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.15);
  padding: 35px 25px;
}

@media screen and (max-width: 767px) {
  .mediaList__item {
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 0;
  }
}

.mediaList__item:nth-child(-n+2) {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .mediaList__item:nth-child(-n+2) {
    margin-bottom: 30px;
  }
}

.mediaList__imgWrapper {
  flex-shrink: 0;
  width: 17.4757281553%;
  margin-right: 3.148148148%;
}

@media screen and (max-width: 767px) {
  .mediaList__imgWrapper {
    width: 100%;
    margin-right: 0;
  }
}

.mediaList__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.mediaList__body {
  padding: 10px 0 50px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mediaList__body {
    padding-bottom: 0;
  }
}

.mediaList__title {
  font-size: 2.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .mediaList__title {
    margin-bottom: 8px;
    font-size: 2rem;
  }
}

.mediaList__text {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .mediaList__text {
    font-size: 1.6rem;
  }
}

.mediaList__link {
  position: absolute;
  bottom: 35px;
  right: 25px;
  display: flex;
  align-items: center;
  padding-left: 22px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .mediaList__link {
    font-size: 1.6rem;
  }
}

.mediaList__link:hover {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .mediaList__link {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
  }
}

.mediaList__link::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .mediaList__link::before {
    top: 4px;
  }
}

.mediaList__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 11px;
  left: 4px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .mediaList__link::after {
    top: 9px;
  }
}

.mediaList__pdfIcon {
  display: inline-block;
  margin-left: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mediaList__format {
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .mediaList__format {
    font-size: 1rem;
  }
}

.mediaList__titleIcon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .mediaList__titleIcon {
    margin-right: 6px;
  }
}

.mediaList__titleIcon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.mediaList__titleIcon::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
}

.tile {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .tile {
    flex-direction: column;
  }
}

.tile--start {
  align-items: flex-start;
}

.tile__item {
  width: 48.1481481481%;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.15);
  margin-bottom: 40px;
}

.tile__item:hover .tile__linkText {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .tile__item {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.2);
  }
}

.tile__item:nth-child(n+3) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .tile__item:nth-child(n+3) {
    margin-top: 0;
  }
}

.tile__imgWrapper {
  overflow: hidden;
}

.tile__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.tile__body {
  background-color: #fff;
}

.tile__linkText {
  position: relative;
  padding: 9px 0;
  padding-left: 4.4230769%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  border-bottom: 1px solid #DEDEDE;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .tile__linkText {
    padding-right: 20px;
    font-size: 2rem;
  }
}

.tile__linkText::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 33px;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .tile__linkText::before {
    right: 20px;
  }
}

.tile__linkText::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 50%;
  right: 39px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .tile__linkText::after {
    right: 26px;
  }
}

.tile__text {
  margin-top: 20px;
  margin-bottom: 33px;
  padding-right: 6.3461538%;
  padding-left: 4.4230769%;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .tile__text {
    margin-bottom: 25px;
    font-size: 1.6rem;
  }
}

.gradTile {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gradTile--start {
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .gradTile {
    flex-direction: column;
  }
}

.gradTile__item {
  width: 48.1481481481%;
  background-color: #fff;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.1);
}

@media screen and (max-width: 767px) {
  .gradTile__item {
    box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.2);
  }
}

.gradTile__item--offset .gradTile__linkText {
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .gradTile__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.gradTile__item:nth-child(n+3) {
  margin-top: 39px;
}

@media screen and (max-width: 767px) {
  .gradTile__item:nth-child(n+3) {
    margin-top: 0;
  }
}

.gradTile__link {
  position: relative;
  display: block;
  color: #000;
  font-weight: bold;
}

.gradTile__link:hover .gradTile__linkText {
  color: #018D54;
}

.gradTile__link[target*=blank] .gradTile__linkText::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  order: 2;
}

.gradTile__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.gradTile__linkText {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 9px 0;
  padding-left: 32px;
  padding-right: 15px;
  width: 100%;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  background-color: rgba(255, 255, 255, 0.85);
  font-feature-settings: "palt";
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .gradTile__linkText {
    font-size: 2rem;
    padding: 18px 5px 18px 10px;
  }
}

.gradTile__linkText::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #018D54 0%, #ece700 100%);
}

.gradTile__linkIcon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 11px;
  flex-shrink: 0;
  order: 3;
}

@media screen and (max-width: 767px) {
  .gradTile__linkIcon {
    margin-left: 6px;
  }
}

.gradTile__linkIcon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.gradTile__linkIcon::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
}

.gradTileList {
  padding: 32px 0;
  padding-left: 32px;
}

@media screen and (max-width: 767px) {
  .gradTileList {
    padding: 28px 24px 28px 18px;
  }
}

.gradTileList__item {
  margin-bottom: 15px;
  padding-left: 1em;
  text-indent: -1em;
}

.gradTileList__item:last-of-type {
  margin-bottom: 0;
}

.gradTileList__link {
  position: relative;
  padding-left: 14px;
  font-size: 1.8rem;
  transition: color 0.3s;
  color: #000;
  font-weight: bold;
}

.gradTileList__link:hover {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .gradTileList__link {
    font-size: 1.6rem;
  }
}

.gradTileList__link::before, .gradTileList__link::after {
  content: "";
  width: 10px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #018D54;
  position: absolute;
  left: 0;
}

.gradTileList__link::before {
  top: 6px;
  transform: rotate(45deg);
}

.gradTileList__link::after {
  top: 12px;
  transform: rotate(-45deg);
}

.selectPeriod {
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .selectPeriod {
    margin-bottom: 60px;
  }
}

.selectPeriod__body {
  margin-top: 39px;
}

@media screen and (max-width: 767px) {
  .selectPeriod__body {
    margin-top: 35px;
  }
}

.selectPeriod__panel {
  display: none;
}

.selectPeriod__panel--show {
  display: block;
}

.selectPeriod__note {
  font-size: 1.4rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .selectPeriod__note {
    font-size: 1.3rem;
    text-align: left;
  }
}

.selectPeriod__item {
  margin-bottom: 60px;
}

.selectMenue {
  position: relative;
  width: 250px;
  margin-left: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .selectMenue {
    width: 200px;
  }
}

.selectMenue::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #018D54;
  transform: translateY(-50%);
}

.selectMenue__list {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid #DEDEDF;
  padding: 10px 34px 10px 18px;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

@media screen and (max-width: 767px) {
  .selectMenue__list {
    padding-right: 20px;
    font-size: 1.4rem;
  }
}

.selectTab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.selectTab__item {
  position: relative;
  width: 33.1481481481%;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #CECECE;
  cursor: pointer;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  .selectTab__item {
    font-size: 1.6rem;
  }
}

.selectTab__item:hover {
  opacity: 0.8;
}

.selectTab__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 7px 0;
}

@media screen and (max-width: 767px) {
  .selectTab__item a {
    padding: 7px 25px 7px 11px;
    justify-content: flex-start;
  }
}

.selectTab__item--active a {
  color: #fff;
  background-color: #018D54;
}

.selectTab__item--active .selectTab__linkIcon::after {
  border-top-color: #018D54;
  border-right-color: #018D54;
}

.selectTab__linkIcon {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 11px;
  vertical-align: middle;
  transform: translateY(-50%);
}

.selectTab__linkIcon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.selectTab__linkIcon::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #CECECE;
  border-right: solid 2px #CECECE;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
}

.periodTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.periodTable__item:first-child .periodTable__text {
  border-bottom: none;
}

.periodTable__heading {
  flex-shrink: 0;
  padding: 8px 0;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #E5E5DB;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .periodTable__heading {
    padding: 10px;
    font-size: 1.4rem;
  }
}

.periodTable__heading:first-child {
  border-right: 2px solid #fff;
}

.periodTable__heading--wide {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .periodTable__heading--wide {
    width: 120px;
  }
}

.periodTable__heading--narrow {
  width: 15.7407407407%;
}

@media screen and (max-width: 767px) {
  .periodTable__heading--narrow {
    width: 103px;
  }
}

.periodTable__text {
  padding: 13px 0;
  font-weight: bold;
  font-size: 1.8rem;
  border-bottom: 1px solid #B8B8B8;
}

.periodTable__text:first-child {
  padding-right: 15px;
}

.periodTable__text>*:not(:first-child) {
  margin-top: 8px;
}

.periodTable__text>*:last-child {
  margin-bottom: 0;
}

.periodTable__text>a {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .periodTable__text {
    padding: 15px 0;
    font-size: 1.4rem;
  }
}

.periodTable__link {
  position: relative;
  display: block;
  padding-right: 30px;
  font-weight: normal;
  transition: color 0.3s;
}

.periodTable__link:hover {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .periodTable__link {
    padding-right: 30px;
  }
}

.periodTable__link:first-child {
  margin-top: 0;
}

.periodTable__link::before, .periodTable__link::after {
  content: "";
  width: 10px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #018D54;
  position: absolute;
  right: 15px;
}

.periodTable__link::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.periodTable__link::after {
  bottom: calc(50% - 4px);
  transform: rotate(-45deg);
}

.periodTable__linkPdf {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.periodTable__linkXls {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_excel.gif);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.periodTable__linkYoutube {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 18px;
  height: 13px;
  background-image: url(/information/ir_assets/img/icon_youtube.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.periodTable__linkFormat {
  font-size: 1rem;
}

.card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .card {
    flex-direction: column;
  }
}

.card__item {
  display: inline-block;
  width: 48.1481481481%;
  margin-bottom: 40px;
  box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.1);
}

.card__item:hover .card__title {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .card__item {
    width: 100%;
    box-shadow: 0 3px 13px 0 rgba(81, 103, 88, 0.2);
  }
}

.card__imgWrapper {
  overflow: hidden;
}

.card__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.card__body {
  position: relative;
  padding: 25px 25px 0;
}

@media screen and (max-width: 767px) {
  .card__body {
    padding: 20px 15px 0;
  }
}

.card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #018D54 0%, #ece700 100%);
}

.card__title {
  position: relative;
  margin-bottom: 30px;
  padding-right: 20px;
  padding-bottom: 25px;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #DEDEDE;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .card__title {
    margin-bottom: 20px;
    padding-bottom: 16px;
    font-size: 2rem;
  }
}

.card__title::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
}

.card__title::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 30%;
  right: 6px;
  transform: translateY(-50%) rotate(45deg);
}

.card__text {
  margin-bottom: 30px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .card__text {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
}

.cardList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .cardList {
    flex-direction: column;
  }
}

.cardList__item {
  width: 30.5555555556%;
  margin-right: 4.16666666%;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .cardList__item {
    width: 100%;
    margin-right: 0;
  }
}

.cardList__item:nth-child(3n) {
  margin-right: 0;
}

.cardList__imgWrapper {
  margin-bottom: 8px;
}

.cardList__imgWrapper img {
  width: 100%;
  vertical-align: middle;
  border: 1px solid #CECECE;
}

.cardList__title {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .cardList__title {
    font-size: 1.6rem;
  }
}

.cardList__link {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media screen and (max-width: 767px) {
  .cardList__link {
    font-size: 1.6rem;
  }
}

.cardList__link:hover {
  color: #018D54;
}

.cardList__link::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .cardList__link::before {
    top: 4px;
  }
}

.cardList__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 10px;
  left: 4px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .cardList__link::after {
    top: 9px;
  }
}

.cardList__pdfIcon {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cardList__format {
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .cardList__format {
    font-size: 1rem;
  }
}

.archiveList {
  padding: 64px 0;
  background-color: #E6F3ED;
}

@media screen and (max-width: 767px) {
  .archiveList {
    padding-bottom: 10px;
  }

  .archiveList .type3Heading {
    display: none;
  }
}

.archiveList__wrapper {
  max-width: 1100px;
  padding-left: 10px;
  padding-right: 10px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .archiveList__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.archiveList__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.materialWrapper {
  padding: 45px 0 24px;
  background-color: #E6F3ED;
}

@media screen and (max-width: 850px) {
  .materialWrapper {
    padding-top: 0;
  }
}

.material {
  max-width: 1100px;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.material__inner {
  position: relative;
  border-radius: 13px;
  background-color: #E6F3ED;
  padding: 45px 3.7037037% 40px;
}

@media screen and (max-width: 850px) {
  .material__inner {
    padding: 30px 15px 16px;
  }
}

.material__head {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

@media screen and (max-width: 850px) {
  .material__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.material__title {
  display: flex;
  font-size: 2.6rem;
  color: #018D54;
  line-height: 1.6;
}

.material__title::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 33px;
  margin-right: 8px;
  background-image: url(/information/ir_assets/img/icon_material.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 850px) {
  .material__title {
    margin-bottom: 25px;
  }
}

.material__subTitle {
  display: flex;
  font-size: 2.6rem;
  color: #018D54;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 20px;
}

.material__subTitleInner {
  flex: 1;
}

.material__body {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 850px) {
  .material__body {
    flex-direction: column;
  }
}

.material__content {
  width: 48.3%;
  margin-right: 6.5%;
}

@media screen and (max-width: 850px) {
  .material__content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}

.material__item {
  margin-bottom: 18px;
}

@media screen and (max-width: 850px) {
  .material__item {
    margin-bottom: 22px;
  }
}

.material__item:last-of-type {
  margin-bottom: 0;
}

.material__link {
  position: relative;
  display: inline-block;
  padding-left: 27px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color 0.3s;
}

@media screen and (max-width: 850px) {
  .material__link {
    font-size: 1.6rem;
  }
}

.material__link:hover {
  color: #018D54;
}

.material__link::before {
  content: "";
  width: 17px;
  height: 17px;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

.material__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 10px;
  left: 4px;
  transform: rotate(45deg);
}

.material__pdfIcon {
  display: inline-block;
  margin-left: 10px;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.material__format {
  font-size: 1.4rem;
  font-weight: normal;
}

.material__linkText {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 850px) {
  .material__linkText {
    font-size: 1.6rem;
  }
}

.material__linkText::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(/information/ir_assets/img/icon_link_pdf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.material__button {
  flex: 1;
  margin-left: 85px;
}

@media screen and (max-width: 850px) {
  .material__button {
    margin-left: 0;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
  }
}

.materialBook {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 45.2%;
  padding: 24px 0;
  background-color: #fff;
}

@media screen and (max-width: 850px) {
  .materialBook {
    flex-direction: column;
    width: 100%;
    padding: 35px 0;
  }
}

.materialBook__item {
  text-align: center;
  width: 46.4601769%;
  margin-right: 5px;
}

.materialBook__item:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 850px) {
  .materialBook__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 45px;
  }

  .materialBook__item:last-of-type {
    margin-bottom: 0;
  }
}

.materialBook__thum {
  max-width: 165px;
  margin: auto;
  margin-bottom: 10px;
}

.materialBook__thum img {
  width: 100%;
  vertical-align: middle;
}

.materialBook__link {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  transition: color 0.3s;
}

.materialBook__link:hover {
  color: #018D54;
}

.materialBook__link::after {
  content: "";
  width: 10px;
  height: 13px;
  display: inline-block;
  margin-left: 7px;
  background-image: url(/information/ir_assets/img/icon_download_green.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.list__item {
  position: relative;
  display: flex;
  margin-bottom: 6px;
  padding-left: 10px;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .list__item {
    font-size: 1.6rem;
  }
}

.list__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #94b528;
}

.listNum {
  counter-reset: my-counter;
}

.listNum__item {
  position: relative;
  display: flex;
  margin-bottom: 6px;
  padding-left: 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .listNum__item {
    font-size: 1.6rem;
  }
}

.listNum__item::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "("counter(my-counter) ")";
  counter-increment: my-counter;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15px;
  width: 15px;
  line-height: 15px;
}

.textLinkGroup {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .textLinkGroup {
    flex-direction: column;
  }
}

.textLinkGroup__item {
  width: 48.1481481481%;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .textLinkGroup__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.textLinkGroup__item:nth-child(n+3) {
  margin-top: 39px;
}

@media screen and (max-width: 767px) {
  .textLinkGroup__item:nth-child(n+3) {
    margin-top: 0;
  }
}

.textLinkGroup__link {
  position: relative;
  display: block;
}

.textLinkGroup__link[target*=blank] .textLinkGroup__linkText::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
  order: 2;
}

.textLinkGroup__linkText {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 0;
  padding-left: 32px;
  padding-right: 15px;
  width: 100%;
  line-height: 1.5;
  font-size: 2.4rem;
  color: #000;
  font-weight: bold;
  font-feature-settings: "palt";
  transition: color 0.3s;
}

.textLinkGroup__linkText:hover {
  color: #018D54;
}

@media screen and (max-width: 767px) {
  .textLinkGroup__linkText {
    font-size: 2rem;
    padding: 18px 5px 18px 10px;
  }
}

.textLinkGroup__linkText::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #018D54 0%, #ece700 100%);
}

.textLinkGroup__linkIcon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-left: 11px;
  flex-shrink: 0;
  order: 3;
}

@media screen and (max-width: 767px) {
  .textLinkGroup__linkIcon {
    margin-left: 6px;
  }
}

.textLinkGroup__linkIcon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.textLinkGroup__linkIcon::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .tableContentWrapper--scroll {
    overflow-x: auto;
  }
}

@media screen and (max-width: 767px) {
  .tableContentWrapper--scroll .tableContent {
    min-width: 1080px;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .tableContentWrapper--scroll#contentData table {
    min-width: 1080px;
    max-width: none;
  }
}

#contentData table {
  margin-bottom: 40px;
  max-width: 1080px;
  width: 100%;
  color: #4e4d4b;
  border-collapse: collapse;
  border: 1px solid #e5e5db;
}

#contentData table tr:nth-of-type(2) {
  border-top: 1px solid #E5E5DB;
  background-color: #339966;
  border-right: 1px solid #e5e5db;
  color: #fff;
}

#contentData.tablePast .tableContent__text:first-child {
  background-color: #f6f7f2;
  border-top: 1px solid #e5e5db;
  border-right: 1px solid #e5e5db;
  border-left: 1px solid #e5e5db;
  width: 12%;
}

.tableContent {
  margin-bottom: 40px;
  max-width: 1080px;
  width: 100%;
  color: #4e4d4b;
  border-collapse: collapse;
  border: 1px solid #e5e5db;
}

.tableContent tr {
  border-bottom: 1px solid #e5e5db;
}

.tableContent tr:last-child {
  border-bottom: 0;
}

.tableContent--type2 .tableContent__text:first-child {
  background-color: #f6f7f2;
  border-top: 1px solid #e5e5db;
  border-right: 1px solid #e5e5db;
  border-left: 1px solid #e5e5db;
  width: 12%;
}

.tableContent__item:nth-of-type(2) {
  border-top: 1px solid #E5E5DB;
  background-color: #339966;
  border-right: 1px solid #e5e5db;
  color: #fff;
}

.tableContent__heading {
  background-color: #94b528;
  padding: 10px;
  border-right: 1px solid #e5e5db;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tableContent__heading {
    font-size: 1.6rem;
  }
}

.tableContent__rowHeading {
  background-color: #f6f7f2;
  width: 12%;
  padding: 10px;
  border-top: 1px solid #e5e5db;
  border-right: 1px solid #e5e5db;
  border-left: 1px solid #e5e5db;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tableContent__rowHeading {
    font-size: 1.6rem;
  }
}

.tableContent__title {
  background-color: #94b528;
  padding: 10px;
  border-right: 1px solid #e5e5db;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.tableContent__title:nth-of-type(2n) {
  border-top: 1px solid #E5E5DB;
  background-color: #339966;
  border-right: 1px solid #e5e5db;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .tableContent__title {
    font-size: 1.6rem;
  }
}

.tableContent__text {
  padding: 10px;
  border-right: 1px solid #e5e5db;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tableContent__text {
    font-size: 1.6rem;
  }
}

.tableColgroup--col3 .tableColgroup__item {
  width: 33.33333%;
}

.tableDetail {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border: solid 1px #e5e5db;
  word-break: break-all;
}

.tableDetail__heading {
  width: 20%;
  padding: 20px;
  background-color: #f6f6f2;
  border-left: solid 1px #e5e5db;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .tableDetail__heading {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.6rem;
  }
}

.tableDetail__item {
  border-bottom: solid 1px #e5e5db;
}

.tableDetail__item:last-of-type {
  border-bottom: 0;
}

.tableDetail__inner {
  padding: 20px;
  border-left: solid 1px #e5e5db;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .tableDetail__inner {
    display: block;
    width: 100%;
  }
}

.tableDetail__spaceBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tableDetail__text {
  display: block;
  flex-shrink: 0;
  font-weight: normal;
  font-size: 1.8rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .tableDetail__text {
    font-size: 1.6rem;
  }
}

.tableDetail__text a {
  transition: color 0.3s;
}

.tableDetail__text a:hover {
  color: #018D54;
}

.tableDetail__text a[target*=blank]::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tableDetail__imgWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3%;
}

@media screen and (max-width: 767px) {
  .tableDetail__imgWrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.tableDetail__imgWrapper img {
  max-width: 260px;
  vertical-align: middle;
}

.tableDetailWithImage {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  border: solid 1px #e5e5db;
}

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

.tableDetailWithImageTable {
  display: flex;
  flex: 1;
}

.tableDetailWithImageTable__table {
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
}

.tableDetailWithImageTable__heading {
  width: 20%;
  padding: 20px;
  background-color: #f6f6f2;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .tableDetailWithImageTable__heading {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.6rem;
  }
}

.tableDetailWithImageTable__item {
  border-bottom: solid 1px #e5e5db;
}

.tableDetailWithImageTable__item:last-of-type {
  border-bottom: 0;
}

.tableDetailWithImageTable__inner {
  padding: 20px;
  word-break: break-all;
  border-left: solid 1px #e5e5db;
}

@media screen and (max-width: 767px) {
  .tableDetailWithImageTable__inner {
    display: block;
    border-left: none;
  }
}

.tableDetailWithImageTable__spaceBetween {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tableDetailWithImageTable__text {
  display: block;
  flex-shrink: 0;
  font-weight: normal;
  font-size: 1.8rem;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .tableDetailWithImageTable__text {
    font-size: 1.6rem;
  }
}

.tableDetailWithImageTable__text a {
  transition: color 0.3s;
}

.tableDetailWithImageTable__text a:hover {
  color: #018D54;
}

.tableDetailWithImageTable__text a[target*=blank]::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tableDetailWithImageImage {
  padding: 20px;
  border-left: solid 1px #e5e5db;
  display: flex;
}

@media screen and (max-width: 767px) {
  .tableDetailWithImageImage {
    border-left: none;
    border-top: solid 1px #e5e5db;
  }
}

.tableDetailWithImageImage__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .tableDetailWithImageImage__wrapper {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
}

.tableDetailWithImageImage__wrapper img {
  max-width: 260px;
  vertical-align: middle;
}

.ordersTable>table {
  margin-bottom: 40px;
  max-width: 1080px;
  width: 100%;
  color: #4e4d4b;
  border-collapse: collapse;
  border: 1px solid #e5e5db;
}

.ordersTable tr {
  border-bottom: 1px solid #e5e5db;
}

.ordersTable tr:last-child {
  border-bottom: 0;
}

.ordersTable tr:first-child>th {
  background-color: #94b528;
  padding: 10px;
  border-right: 1px solid #e5e5db;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ordersTable tr:first-child>th {
    font-size: 1.6rem;
  }
}

.ordersTable tr:first-child>th:first-child {
  padding: 10px;
  border-top: 1px solid #e5e5db;
  border-right: 1px solid #e5e5db;
  border-left: 1px solid #e5e5db;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ordersTable tr:first-child>th:first-child {
    font-size: 1.6rem;
  }
}

.ordersTable tr:nth-child(2)>th {
  background-color: #94b528;
  padding: 10px;
  border-right: 1px solid #e5e5db;
  border-top: 1px solid #E5E5DB;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

.ordersTable tr:nth-child(2)>th:nth-of-type(2n) {
  background-color: #339966;
  border-right: 1px solid #e5e5db;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .ordersTable tr:nth-child(2)>th {
    font-size: 1.6rem;
  }
}

.ordersTable tr>td:first-child {
  background-color: #f6f7f2;
  border-top: 1px solid #e5e5db;
  border-right: 1px solid #e5e5db;
  border-left: 1px solid #e5e5db;
  width: 12%;
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td {
  padding: 10px;
  border-right: 1px solid #e5e5db;
  border-top: 1px solid #e5e5db;
  font-size: 1.8rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td {
    font-size: 1.6rem;
  }
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td.center {
  text-align: center;
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td.right {
  text-align: right;
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td:first-child {
  background-color: #f6f7f2;
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2))>td:nth-of-type(2n) {
  background-color: #E3F6CE;
}

.ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2)) th {
  background-color: #94b528;
  padding: 10px;
  border-right: 1px solid #e5e5db;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ordersTable tr:not(.ordersTable tr:first-child):not(.ordersTable tr:nth-child(2)) th {
    font-size: 1.6rem;
  }
}

.ordersTable:not(.ordersTable--singleMonth)>table tr:first-child>th:first-child {
  background-color: #f6f7f2;
  color: #4e4d4b;
  width: 12%;
}

.ordersTable--singleMonth>table tr:not(.ordersTable--singleMonth > table:first-child):not(.ordersTable--singleMonth > table:nth-child(2))>td:nth-of-type(2n) {
  background-color: #fff;
}

.ordersTable--singleMonth>table tr:not(.ordersTable--singleMonth > table:first-child):not(.ordersTable--singleMonth > table:nth-child(2))>td:first-child, .ordersTable--singleMonth>table tr:not(.ordersTable--singleMonth > table:first-child):not(.ordersTable--singleMonth > table:nth-child(2))>td:nth-of-type(2n+1) {
  background-color: #E3F6CE;
}

.faq {
  margin-bottom: 30px;
  padding: 0 4px;
  border-top: 1px solid #e5e5db;
  border-bottom: 1px solid #e5e5db;
}

.faq__inner {
  position: relative;
  background: #ffffff;
}

.faq__item {
  border-top: 1px solid #e5e5db;
}

.faq__item:first-child {
  border-top: none;
}

.faq__question {
  padding: 0 20px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.faq__question:hover {
  color: #018D54;
}

.faq__question--active .faq__questionTitle {
  border-bottom: 1px dotted #808080;
  background: url(/information/ir_assets/img/icon_minus.gif) no-repeat right 50%;
}

.faq__questionTitle {
  font-weight: normal;
  padding: 12px 30px 12px 0;
  background: url(/information/ir_assets/img/icon_plus.gif) no-repeat right 50%;
}

.faq__answer {
  display: none;
  padding: 12px 30px;
  overflow: hidden;
  font-weight: bold;
}

.faq__title {
  display: block;
  width: 50px;
  font-size: 1.8rem;
  float: left;
}

@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 1.4rem;
  }
}

.faq__text {
  display: block;
  font-size: 1.8rem;
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .faq__text {
    font-size: 1.4rem;
  }
}

.faq__answerText {
  display: block;
  padding-right: 30px;
  font-size: 1.8rem;
  padding-left: 50px;
}

.faq__answerText a {
  text-decoration: underline;
  transition: color 0.3s;
}

.faq__answerText a:hover {
  color: #018D54;
}

.faq__answerText a[target*=blank]::after {
  content: "";
  display: inline-block;
  margin: 0 6px;
  width: 12px;
  height: 12px;
  background-image: url(/information/ir_assets/img/blank_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .faq__answerText {
    font-size: 1.4rem;
  }
}

.getPlugin {
  border-top: solid 1px #e5e5db;
  padding: 20px 0;
  margin-top: 50px;
}

.getPlugin__inner {
  display: flex;
  margin-bottom: 30px;
}

.getPlugin__imgWrapper {
  margin-right: 30px;
}

.getPlugin__text {
  font-size: 1.4rem;
}

.topmessage {
  max-width: 1366px;
  margin: auto;
  margin-bottom: 90px;
}

.topmessage--narrow {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .topmessage {
    margin-bottom: 60px;
  }

  .topmessage--narrow {
    margin-bottom: 20px;
  }
}

.topmessage__inner {
  display: flex;
}

@media screen and (max-width: 767px) {
  .topmessage__inner {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.topmessage__body {
  max-width: 694px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .topmessage__body {
    padding-right: 0;
  }
}

.topmessage__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .topmessage__title {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}

.topmessage__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
}

.topmessage__text--space {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .topmessage__text {
    font-size: 1.5rem;
  }

  .topmessage__text--space {
    margin-bottom: 14px;
  }
}

.topmessage__imgWrapper {
  flex-shrink: 0;
  margin-right: 4.39238653%;
  width: 35.1390922%;
}

@media screen and (max-width: 767px) {
  .topmessage__imgWrapper {
    width: 100%;
    margin-bottom: 25px;
  }
}

.topmessage__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.listDescTitle {
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .listDescTitle {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.listDesc {
  display: flex;
  flex-wrap: wrap;
  max-width: 760px;
  margin: auto;
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .listDesc {
    margin-bottom: 25px;
  }
}

.listDesc__item {
  margin-right: 5.2631578%;
}

.listDesc__item:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .listDesc__item {
    margin-right: 0;
  }
}

.listDesc__text {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #006a46;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .listDesc__text {
    font-size: 1.4rem;
  }
}

.listDesc__text--onlyPc {
  display: block;
}

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

.listDesc__text--onlySp {
  display: none;
}

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

.listDesc__num {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 15px;
  background-color: #006a46;
  color: #fff;
  font-size: 20px;
  line-height: 48px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .listDesc__num {
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.annotationText p {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .annotationText p {
    font-size: 1.3rem;
  }
}

/* 202309追加 */
.cardLinkContent {
  margin-bottom: 80px;
  padding-bottom: 93px;
  background-image: url(/information/ir_assets/img/top/background_img_01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .cardLinkContent {
    height: auto;
    padding-bottom: 0;
  }
}

.cardLink {
  display: flex;
  flex-wrap: wrap;
  max-width: 1266px;
  margin: auto;
  margin-bottom: -70px;
  padding-top: 53px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .cardLink {
    flex-direction: column;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.cardLink__item {
  position: relative;
  width: calc((280/1246)*100%);
  margin-right: 3.37078651%;
  margin-bottom: 70px;
}

.cardLink__item:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cardLink__item {
    width: 100%;
    margin-bottom: 76px;
  }
}

.cardLink__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}

.cardLink__linkArea {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
}

@media screen and (max-width: 767px) {
  .cardLink__linkArea {
    bottom: -48px;
    width: 94%;
  }
}

.cardLink__link {
  position: relative;
  display: block;
  padding: 0.889em 1.056em 0.889em 0.667em;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}

.cardLink__link:hover {
  background-color: #018D54;
  color: #fff;
}

.cardLink__link:hover .blankIcon {
  background-image: url(/information/ir_assets/img/blank_icon_white.png);
}

.cardLink__link:hover::before {
  background-color: #fff;
}

.cardLink__link:hover::after {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .cardLink__link {
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 950px) {
  .cardLink__link {
    font-size: 1.6rem;
    padding-right: 0.8em;
    padding-left: 0.3em;
  }
}

.cardLink__link::before, .cardLink__link::after {
  content: "";
  width: 10px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background-color: #018D54;
  position: absolute;
  right: 10px;
}

@media screen and (min-width: 768px) and (max-width: 950px) {
  .cardLink__link::before, .cardLink__link::after {
    right: 5px;
  }
}

.cardLink__link::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.cardLink__link::after {
  bottom: calc(50% - 4px);
  transform: rotate(-45deg);
}

.cardLink__linkArea--row2>.cardLink__link {
  padding-top: 12px;
  padding-bottom: 12px;
}

.cardLink__link:not(:first-child) {
  margin-top: 7px;
}

.sign {
  display: flex;
  justify-content: flex-end;
}

.sign__text {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .sign__inner {
    width: 50%;
  }

  .section__sign {
    width: 100%;
  }

  .sign__text {
    font-size: 2rem;
  }
}

.fullImg {
  margin-bottom: 10px;
  border: 1px solid #CECECE;
}

.fullImg img {
  vertical-align: middle;
  width: 100%;
}

.imgcol2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .fullImg {
    flex-direction: column;
  }
}

.imgcol2__item {
  width: 48.1481481481%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .imgcol2__item {
    width: 100%;
    margin-bottom: 20px;
  }
}

.imgcol2__imgWrapper img {
  width: 100%;
  vertical-align: middle;
}