@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap");
/* -- TOP
--------------------------------------------- */
.p-top-title {
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

/* -- MV
--------------------------------------------- */
.p-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  padding: 0 40px;
  overflow: hidden;
}

.p-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/top/img_mv_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-mv__movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/top/mv_movie_thumbnail.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background-color: #000;
}

.p-mv__movie:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/top/movie_filter.png");
  background-repeat: repeat;
}

.p-mv__movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  opacity: 0;
}

.p-mv__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1282px;
  height: 100%;
}

.p-mv__content {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.p-mv__main-copy {
  margin-bottom: 25px;
  font-size: 62px;
  line-height: 1.375;
  letter-spacing: 0.04em;
  text-shadow: 0px 0px 5px white, 0px 0px 5px white, 0px 0px 5px white,
    0px 0px 5px white;
  text-align: center;
  color: #007ac5;
}

.p-mv__sub-copy {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.88;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white,
    0px 0px 3px white;
  text-align: center;
  font-weight: 500;
  color: #000;
}

.p-mv__ls {
  letter-spacing: -0.4em;
}

.p-mv__button {
  margin: 0 auto;
  width: 252px;
  height: 50px;
  border-radius: 10px;
  background-color: #fff;
}

.p-mv__button:hover {
  background-color: #007ac5;
}

.p-mv__button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #007ac5;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 10px;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-mv__button:hover a {
  color: #fff;
}

.p-mv__button a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-mv__button a:hover:after {
  background-image: url("/assets/img/common/icon_btn_arrow1.png");
}

.p-mv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 70px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-mv__scroll-text {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-shadow: 0px 0px 3px white, 0px 0px 3px white, 0px 0px 3px white,
    0px 0px 3px white;
  letter-spacing: 0.15em;
}

.p-mv__scroll-bar {
  position: relative;
  margin: 0 auto;
  width: 2px;
  height: 40px;
  overflow: hidden;
}

.p-mv__scroll-bar:after {
  content: "";
  display: block;
  margin: 7px auto 0;
  width: 100%;
  height: 100%;
  background-color: #007ac5;
  -webkit-animation-name: scrollbar;
  animation-name: scrollbar;
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.71, 0.01, 0.29, 1.05);
  animation-timing-function: cubic-bezier(0.71, 0.01, 0.29, 1.05);
}

@-webkit-keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  70% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  70% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

#colorbox,
#cboxContent,
#cboxLoadedContent {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#cboxLoadedContent {
  padding: 8px;
}

.p-narrative {
  padding: 60px 0;
  text-align: center;
}

.p-narrative__title {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
}

.p-narrative__copy {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.p-narrative__desc {
  font-size: 18px;
  line-height: 1.5;
}

.p-narrative__button {
  width: 240px;
  height: 60px;
  margin: 30px auto;
}

.p-narrative-modal {
  display: opacity;
}

.p-narrative-modal__title {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
}

.p-narrative-modal__copy {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.p-narrative-modal__desc {
  text-align: left;
}

.p-top-stories {
  position: relative;
}

.p-top-stories .swiper-container {
  border-radius: 20px;
}

.p-top-stories .swiper-pagination {
  display: none;
}

.p-top-stories a {
  display: block;
}

.p-top-stories__item {
  border-radius: 20px;
  overflow: hidden;
}

.p-top-stories__thumbs-wrap {
  position: relative;
}

.p-top-stories__thumbs {
  width: 100%;
}

.p-top-stories__thumbs img {
  width: 100%;
  vertical-align: bottom;
}

.p-top-stories__overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  background-color: rgba(0, 122, 197, 0.7);
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
  opacity: 0;
}

.p-top-stories a:hover .p-top-stories__overlay {
  opacity: 1;
}

.p-top-stories__text-wrap {
  padding: 25px 40px 35px;
  min-height: 200px;
  background-color: #dcf0fa;
}

.p-top-stories a:hover .p-top-stories__text-wrap {
  color: #007ac5;
}

.p-top-stories__title {
  margin-bottom: 10px;
  font-size: 20px;
}

.p-top-stories__desc {
  font-size: 16px;
  line-height: 1.5;
}

.p-top-stories .swiper-button-prev,
.p-top-stories .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: none;
  background-color: #007ac5;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-stories .swiper-button-prev:focus,
.p-top-stories .swiper-button-next:focus {
  outline: none;
}

.p-top-stories .swiper-button-prev:hover,
.p-top-stories .swiper-button-next:hover {
  opacity: 0.7;
}

.p-top-stories .swiper-button-prev {
  left: -70px;
}

.p-top-stories .swiper-button-next {
  right: -70px;
}

.p-top-stories .swiper-button-prev:after,
.p-top-stories .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.p-top-stories .swiper-button-prev:after {
  border-right: 7px solid #fff;
}

.p-top-stories .swiper-button-next:after {
  border-left: 7px solid #fff;
}

@media screen and (max-width: 1360px) {
  .p-top-stories .swiper-button-prev {
    left: -50px;
  }
  .p-top-stories .swiper-button-next {
    right: -50px;
  }
}

@media screen and (max-width: 1279px) {
  .p-top-stories {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-top-stories .swiper-button-prev {
    left: -35px;
  }
  .p-top-stories .swiper-button-next {
    right: -35px;
  }
}

.p-top-service {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-top-service__wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.p-top-service__tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-top-service__tab {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% / 6);
  height: 80px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  background-color: #007ac5;
}

.p-top-service__tab.is-active {
  text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.3);
}

.p-top-service__tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

.p-top-service__tab.is-active:before {
  background-color: #007ac5;
  opacity: 0.8;
}

.p-top-service__tab-inner {
  position: relative;
}

.p-top-service__tab:nth-child(1) {
  background-image: url(/assets/img/top/img_service_tab_bg_01.jpg);
}

.p-top-service__tab:nth-child(2) {
  background-image: url(/assets/img/top/img_service_tab_bg_02.jpg);
}

.p-top-service__tab:nth-child(3) {
  background-image: url(/assets/img/top/img_service_tab_bg_03.jpg);
}

.p-top-service__tab:nth-child(4) {
  background-image: url(/assets/img/top/img_service_tab_bg_04.jpg);
}

.p-top-service__tab:nth-child(5) {
  background-image: url(/assets/img/top/img_service_tab_bg_05.jpg);
}

.p-top-service__tab:nth-child(6) {
  background-image: url(/assets/img/top/img_service_tab_bg_06.jpg);
}

.p-top-service__contents {
  position: relative;
}

.p-top-service__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.p-top-service__content:nth-child(3) {
  /* 高さを3枚目のスライドにそろえる */
  position: relative;
}

.p-top-service__content.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.p-top-service__text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px 50px;
  width: 50%;
  color: #fff;
  background-color: #007ac5;
}

.p-top-service__title {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}

.p-top-service__desc {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.p-top-service__example-list {
  margin-bottom: 35px;
  padding-left: 20px;
}

.p-top-service__example-list li {
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
}

.p-top-service__example-list li:last-child {
  margin-bottom: 0;
}

.p-top-service__example-list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}

.p-top-service__logos-list {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #fff;
}

.p-top-service__logos-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.p-top-service__logos-wrap {
  padding: 5px 0px 5px 0;
  width: 30%;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}

.p-top-service__logos-wrap:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-service__logo {
  width: 50%;
  padding: 5px 10px;
  text-align: center;
}

.p-top-service__logo a {
  display: block;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}

.p-top-service__logo a:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-service__logos-wrap .p-top-service__logo {
  width: 60%;
  padding: 0px;
}

.p-top-service__logos-wrap .p-top-service__logo:first-child {
  text-align: left;
  padding-left: 20px;
}

.p-top-service__logos-wrap .p-top-service__logo:last-child {
  margin: 0 0 0 auto;
  padding-right: 20px;
  text-align: right;
}

.p-top-service__logos-wrap .p-top-service__logo a {
  padding: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.p-top-service__image {
  width: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-top-service__content:nth-child(1) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_01.jpg");
}

.p-top-service__content:nth-child(2) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_02.jpg");
}

.p-top-service__content:nth-child(3) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_03.jpg");
}

.p-top-service__content:nth-child(4) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_04.jpg");
}

.p-top-service__content:nth-child(5) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_05.jpg");
}

.p-top-service__content:nth-child(6) .p-top-service__image {
  background-image: url("/assets/img/top/img_service_06.jpg");
}

.p-top-service__button {
  margin-right: 0;
  margin-left: auto;
  width: 200px;
  height: 40px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-service__button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-service__button:hover a {
  background-color: rgba(0, 122, 197, 0.2);
}

.p-top-service__button a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-sp-service {
  display: none;
}

.p-top-value {
  position: relative;
  padding-bottom: 80px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#8ec6f7),
    to(#b8e0f6)
  );
  background-image: -webkit-linear-gradient(left, #8ec6f7 0%, #b8e0f6 100%);
  background-image: linear-gradient(to right, #8ec6f7 0%, #b8e0f6 100%);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 580px;
  overflow: hidden;
}

.p-top-value .p-top-title {
  margin-bottom: 70px;
}

.p-top-value--ir {
  min-height: 300px;
}

.p-top-value .l-container {
  position: relative;
}

.p-top-value__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-value__image .l-container {
  position: relative;
  height: 100%;
}

.p-top-value__image-inner {
  position: absolute;
  right: 850px;
  bottom: 0;
  width: calc((100vw - 100%) / 2 + (100% - 765px - 80px));
  min-width: 500px;
  height: auto;
}

.p-top-value--ir .p-top-value__image-inner {
  right: 890px;
  width: calc((100vw - 100%) / 2 + (100% - 805px - 80px));
}

.p-top-value__content {
  margin-left: auto;
  margin-right: 0;
  max-width: 835px;
}

.p-top-value__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 880px;
}

.p-top-value__block-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.p-top-value__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 30px;
}

.p-top-value__item:last-child {
  margin-right: 0;
}

.p-top-value__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  min-height: 3.75em;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}

.p-top-value__prefix {
  font-size: 20px;
}

.p-top-value__number {
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 74px;
  font-weight: 300;
  text-align: center;
}

.p-top-value__unit {
  font-size: 20px;
  text-align: center;
}

.p-top-value .swiper-pagination {
  position: relative;
  text-align: center;
}

.p-top-value .swiper-pagination-bullet {
  margin-right: 20px;
}

.p-top-value .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.p-top-value .swiper-pagination-bullet-active {
  background: #007ac5;
}

.p-top-value__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 65px;
}

.p-top-value__button {
  margin-right: 60px;
  min-width: 240px;
  height: 60px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-value__button:last-child {
  margin-right: 0;
}

.p-top-value__button:hover {
  background-color: #006ac5;
}

.p-top-value__button a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 10px 35px 10px 35px;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-value__button:hover a {
  color: #fff;
}

.p-top-value__button a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  font-weight: bold;
  background-image: url(/assets/img/common/icon_btn_arrow2.png);
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-value__button:hover a:after {
  background-image: url(/assets/img/common/icon_btn_arrow1.png);
}

.p-top-value__note {
  position: relative;
  top: 40px;
  margin-left: auto;
  margin-right: 0;
  width: 484px;
  text-align: right;
}

.p-top-value__number {
  position: relative;
}

.p-top-value__prefix {
  font-size: 16px;
  position: absolute;
  left: 50%;
  bottom: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-top-topic a {
  display: block;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
  color: #007ac5;
}

.p-top-topic a:hover {
  text-decoration: underline;
}

.p-top-topic__items {
  position: relative;
}

.p-top-topic .swiper-container.is-active {
  margin: 0 auto;
  width: calc(100% - 120px);
}

.p-top-topic .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-top-topic .swiper-slide {
  width: 21.66%;
}

.p-top-topic .swiper-pagination-bullets {
  bottom: -25px;
  left: 0;
  width: 100%;
}

.p-top-topic .swiper-pagination-bullet {
  cursor: pointer;
  margin: 0 4px;
}

.p-top-topic .swiper-button-prev,
.p-top-topic .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: none;
  background-color: #007ac5;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-top-topic .swiper-button-prev:focus,
.p-top-topic .swiper-button-next:focus {
  outline: none;
}

.p-top-topic .swiper-button-prev:hover,
.p-top-topic .swiper-button-next:hover {
  opacity: 0.7;
}

.p-top-topic .swiper-button-prev {
  left: 0px;
}

.p-top-topic .swiper-button-next {
  right: 0px;
}

.p-top-topic .swiper-button-prev:after,
.p-top-topic .swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.p-top-topic .swiper-button-prev:after {
  border-right: 7px solid #fff;
}

.p-top-topic .swiper-button-next:after {
  border-left: 7px solid #fff;
}

.p-top-topic .swiper-pagination-bullet-active {
  background: #007ac5;
}

.p-top-topic__item {
  width: 100%;
}

.p-top-topic__image {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.p-top-topic__image img {
  width: 100%;
  vertical-align: bottom;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

a:hover .p-top-topic__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-topic__title {
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.5;
}

.p-top-topic__date {
  font-size: 16px;
}

@media (max-width: 1100px) {
  .p-top-topic__items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-top-topic .swiper-slide {
    width: calc((100% - 60px) / 3);
    margin-bottom: 30px;
  }
}

.p-top-banner {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p-top-banner-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top-banner-list li {
  width: 22.66%;
}

.p-top-banner-list .p-top-title {
  margin-bottom: 43px;
}

.p-top-banner-list .c-btn3 {
  border-radius: 0;
  border: 1px solid #dfe3e6;
}

.p-top-banner-list .c-btn3 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  color: #333;
}

.p-top-banner-list a:hover {
  text-decoration: none;
}

.p-top-banner-list li.small .c-btn3 a {
  font-size: 15px;
}

.p-news {
  margin-top: 80px;
}

.p-news__tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
}

.p-news__tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% / 2);
  height: 100%;
  background-color: #e6e6e6;
  font-size: 16px;
  cursor: pointer;
  border-right: solid 1px #fff;
}

.p-news__tab:last-child {
  border-right: none;
}

.p-news__tab.is-active {
  color: #fff;
  font-weight: bold;
  background-color: #444;
}

.p-news__contents {
  margin-top: 40px;
  overflow: hidden;
}

.p-news__content {
  display: none;
}

.p-news__content.is-active {
  display: block;
}

.p-news__more {
  margin-top: 40px;
  height: 21px;
  text-align: right;
}

.p-news__more a {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #007ac5;
  font-size: 16px;
  line-height: 21px;
}

.p-news__more a:hover {
  text-decoration: underline;
}

.p-news__more a:after {
  content: "";
  display: block;
  position: relative;
  margin-left: 6px;
  width: 20px;
  height: 21px;
  background-image: url(/assets/img/common/icon_link_arrow1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-news__comment {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.p-news__affiliated {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% + 10px);
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}

.p-news__affiliated-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
.p-news__affiliated-list.new2022apl {
  flex-wrap: wrap;
  max-width: 758px;
  /* max-width: 856px; */
}
.p-news__affiliated-item {
  min-width: 140px;
  height: 46px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 15px;
  font-weight: 700;
}

.p-news__affiliated-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #fff;
  border-radius: 23px;
}

.p-news__affiliated-item a:hover {
  opacity: 0.7;
}

.p-news__affiliated-item a:after {
  content: "";
  display: block;
  position: relative;
  margin-left: 4px;
  width: 13px;
  height: 13px;
  background-image: url("/assets/img/common/icon_blank_3.png");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.p-news__affiliated-item--st a {
  background-color: #007ac5;
}

.p-news__affiliated-item--ph a {
  background-color: #3a1904;

}
.p-category__newnames .p-news__affiliated-item--ph{
  width:299px;
}
.p-news__affiliated-item--ph  a br{
 display:none;
}

.p-news__affiliated-item--sb a {
  background-color: #06666d;
}

.p-news__affiliated-item--sr a {
  background-color: #163494;
}

.p-news__affiliated-item--sp a {
  background-color: #e03700;
}

.p-category__newnames .p-news__affiliated-item--sp {
 /* width:241px; */
}
.p-news__affiliated-item--sp  a br{
 display:none;
}

.p-news__affiliated-item--sk a {
  background-color: #008b00;
}

.p-news__affiliated-item--ih a {
  background-color: #d0104c;
}

.p-news__affiliated-item--ot a {
  background-color: #666666;
}

.p-news-item--sustainability {
  padding: 5px 0;
}

.p-news-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-news-item--sustainability a {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

a:hover .p-news-item__title {
  text-decoration: underline;
}

.p-news-item__date {
  width: 155px;
  font-size: 16px;
  line-height: 22px;
  vertical-align: middle;
}

.p-news-item--sustainability .p-news-item__date {
  margin-bottom: 10px;
}

.p-news-item__category {
  margin-right: 24px;
  padding: 0 10px;
  height: 20px;
  width: 153px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  border-radius: 10px;
}

.p-news-item--sustainability .p-news-item__category {
  margin-right: 12px;
  margin-bottom: 10px;
}

.p-news-item__category--news {
  background-color: #008015;
}

.p-news-item__category--hd {
  background-color: #00519a;
}
.p-news-item__category--hd.en {
  width:134px;
}

.p-news-item__category--st {
  background-color: #007ac5;
}

.p-news-item__category--ph {
  background-color: #3a1904;
}

.p-news-item__category--sb {
  background-color: #06666d;
}

.p-news-item__category--sr {
  background-color: #163494;
}

.p-news-item__category--sp {
  background-color: #e03700;
  height:auto;
}

.p-news-item__category--sk {
  background-color: #008b00;
}

.p-news-item__category--ih {
  background-color: #d0104c;
}

.p-news-item__category--ot {
  background-color: #666666;
}

.p-news-item__category--repo {
  background-color: #0e1188;
}

.p-news-item__category--kessan {
  background-color: #007ac5;
}

.p-news-item__category--kaiji {
  background-color: #d0104c;
}



.p-news-item__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #007ac5;
  font-size: 16px;
  line-height: 22px;
  vertical-align: middle;
}

.p-category__newnames .p-news-item__category--ph,
.p-category__newnames .p-news-item__category--sp
{
   height: auto;
   border-radius: 20px;
   line-height: 1;
   padding: 7px;
}


#archive .p-news-item__category--ph,
#archive .p-news-item__category--sp
{
   height: auto;
   border-radius: 20px;
   line-height: 1;
   padding: 7px;
}


.p-news-item--sustainability .p-news-item__title {
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
  width: 100%;
  padding-left: 155px;
}

.p-news-item__tag {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  padding: 2px 10px 3px;
  height: 20px;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  vertical-align: middle;
  border-radius: 7px / 10px;
  border: 2px solid;
}

.p-news-item__tag--safety {
  border-color: #ff3300;
}

.p-news-item__tag--environment {
  border-color: #20ba66;
}

.p-news-item__tag--communication {
  border-color: #ffc000;
}

.p-news-item__tag--activities {
  border-color: #0070c0;
}

.p-news-item .icon {
  width: auto;
  vertical-align: middle;
}

/* -- CAUTION
--------------------------------------------- */
.p-caution {
  background-color: #fff;
}

.p-caution__inner {
  padding: 20px 30px;
  text-align: center;
}

.p-caution__content {
  margin: 0 auto;
  padding: 15px 40px;
  border: 1px solid #ff0000;
}

.p-caution__title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  text-align: center;
}

.p-caution__date {
  margin-bottom: 15px;
  font-size: 14px;
  text-align: right;
  color: #444;
}

.p-caution__text {
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}

.p-caution__link {
  display: inline-block;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}

.p-caution__link:hover {
  text-decoration: underline;
}

.p-caution__link:after {
  content: "";
  display: inline-block;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
  margin-left: 12px;
  width: 9px;
  height: 14px;
  background-image: url("/assets/img/common/icon_btn_arrow3.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* -- GROUP
--------------------------------------------- */
#group .c-cards__list li:nth-child(2) .c-cards__image {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid #ddd;
  border-bottom: none;
}

.p-group-section {
  border-bottom: 1px solid #f0f0f0;
}

.p-group-section:last-of-type {
  margin-bottom: 50px;
  border-bottom: none;
}

.p-group-section__title {
  position: relative;
  margin-bottom: 34px;
  padding-bottom: 18px;
  font-size: 30px;
  text-align: center;
  line-height: 1;
}

.p-group-section__title:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-group-section__desc {
  font-size: 16px;
  text-align: center;
  line-height: 1.75;
}

.p-groupguide-map {
  padding: 50px 50px 85px;
  border-top: 3px solid #47b947;
  background-color: #edfaed;
}

.p-groupguide-map__inner {
  margin: 0 auto;
  max-width: 800px;
}

.p-groupguide-map__title {
  margin-bottom: 35px;
  color: #47b947;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.p-groupguide-map__map {
  margin-bottom: 30px;
}
.p-groupguide-map__buttons {
  display: flex;
  justify-content: space-between;
}
.p-groupguide-map__button {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 2);
  border-radius: 10px;
  overflow: hidden;
}
.p-groupguide-map__button img {
  width: 100%;
  transition: opacity 300ms linear, transform 300ms ease-out;
}
.p-groupguide-map__button:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.p-groupguide-map__button-inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 34px;
  font-weight: bold;
}

/* -- MESSAGE
--------------------------------------------- */
.p-message__text {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}

.p-message__text--end {
  margin-top: 80px;
}

.p-message__text--tar {
  text-align: right;
}

.p-message__sign {
  margin: 20px 0 0 auto;
  width: 201px;
}

/* -- BUSINESS
--------------------------------------------- */
.p-business-heading {
  padding: 85px 0 80px;
  background-color: #007ac5;
  background-image: url("/assets/img/group/img_business_heading_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.p-business-heading__title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.p-business-heading__title:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
}

.p-business-heading__copy {
  margin-bottom: 20px;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 39px;
  line-height: 1.5;
  text-align: center;
}

.p-business-heading__copy span {
  display: inline-block;
}

.p-business-heading__desc {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.p-business-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0 40px;
}

.p-business-nav__item {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
  margin-bottom: 20px;
}

.p-business-nav__item:nth-child(3n) {
  margin-right: 0;
}

.p-business-nav__thumbnail {
  overflow: hidden;
}

.p-business-nav__thumbnail img {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

a:hover .p-business-nav__thumbnail img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-business-nav__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
}

.p-business-nav__button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 9px;
  height: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
}

.p-business-nav__item:nth-child(1) .p-business-nav__button {
  background-color: #d7ebff;
}

.p-business-nav__item:nth-child(2) .p-business-nav__button {
  background-color: #eae2cd;
}

.p-business-nav__item:nth-child(3) .p-business-nav__button {
  background-color: #fffac8;
}

.p-business-nav__item:nth-child(4) .p-business-nav__button {
  background-color: #d3f2d3;
}

.p-business-nav__item:nth-child(5) .p-business-nav__button {
  background-color: #ebdcfb;
}

.p-business-nav__item:nth-child(6) .p-business-nav__button {
  background-color: #ffdcf0;
}

.p-business-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-business-btn {
  max-width: 400px;
  height: 80px;
}

.p-business-btn:first-child {
  margin-right: 5%;
}

.p-business-btn a {
  font-size: 24px;
  background-size: cover;
  background-position: center center;
}

.p-business-btn:nth-child(1) a {
  background-image: url("/assets/img/group/img_business_btn_bg_01.png");
}

.p-business-btn:nth-child(2) a {
  background-image: url("/assets/img/group/img_business_btn_bg_02.png");
}

.p-club-card {
  display: block;
  border-radius: 10px;
  background-color: #eef2f5;
  padding: 40px;
}

.p-club-card__inner {
  display: block;
  position: relative;
}

.p-club-card__content {
  width: 49.85%;
}

.p-club-card__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 45.85%;
}

.p-club-card--en {
  min-height: 330px;
}

.p-club-card--en .p-club-card__content {
  width: 65%;
}

.p-club-card--en .p-club-card__image {
  width: 33%;
}

.p-club-card__title {
  margin-bottom: 30px;
  color: #fa5f8c;
  font-weight: bold;
  font-size: 40px;
}

.p-club-card__desc {
  font-size: 16px;
  line-height: 2;
}

.p-business-detail-nav {
  padding: 30px 0;
}

.p-business-detail-nav__head {
  margin-bottom: 25px;
}

.p-business-detail-nav__title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-business-detail-nav__sub-title {
  margin-bottom: 15px;
  font-size: 20px;
}

.p-business-detail-nav__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 41.66%;
  font-size: 50px;
}

.p-business-detail-nav__title-small {
  font-size: 0.7em;
}

.p-business-detail-nav__icon {
  width: 50px;
}

.p-business-detail-nav__icon img {
  display: block;
  width: 100%;
}

.p-business-detail-nav__desc {
  width: 58.34%;
  font-size: 18px;
  line-height: 1.75;
}

.p-business-detail-nav__nav-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-business-detail-nav__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 77.5%;
  padding-right: 3.33%;
}

.p-business-detail-nav__nav--sub {
  padding-right: 0;
  width: 22.5%;
}

.p-business-detail-nav__nav-item {
  position: relative;
  width: calc(100% / 0.7416 * 0.225);
  margin-right: calc(100% / 0.7416 * 0.033);
  margin-bottom: 20px;
  min-height: 64px;
}

.p-business-detail-nav__nav-item:nth-child(3n) {
  margin-right: 0;
}

.p-business-detail-nav__nav-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 10px 28px 10px 22px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #f0f0f0;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-business-detail-nav__nav-item a:hover {
  background-color: rgba(0, 122, 197, 0.2);
}

.p-business-detail-nav__nav-item a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-business-detail-nav__nav--sub .p-business-detail-nav__nav-item {
  width: 100%;
  margin-right: 0;
}

.p-business-detail-nav__nav--sub .p-business-detail-nav__nav-item a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #007ac5;
  background-color: #fff;
  border: 1px solid #007ac5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-business-detail-nav__nav--sub .p-business-detail-nav__nav-item a:hover {
  background-color: rgba(0, 122, 197, 0.2);
}

.p-business-detail-nav__nav--sub
  .p-business-detail-nav__nav-item
  a:hover:before {
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
}

.p-business-detail-nav__nav--sub
  .p-business-detail-nav__nav-item:nth-child(1)
  a {
  background-image: url("/assets/img/group/img_business_btn_bg_01.png");
}

.p-business-detail-nav__nav--sub
  .p-business-detail-nav__nav-item:nth-child(2)
  a {
  background-image: url("/assets/img/group/img_business_btn_bg_02.png");
}

.p-business-detail-nav__nav-icon {
  margin-right: 12px;
  width: 33px;
  min-width: 33px;
}

.p-business-block {
  padding: 40px 0 40px;
}

.p-business-block__title {
  margin-bottom: 26px;
  font-size: 30px;
}

.p-business-block--reverse .p-business-block__title {
  text-align: right;
}

.p-business-block__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

.p-business-block__text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 48.33%;
}

.p-business-block--reverse .p-business-block__text-wrap {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-business-block__text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.75;
}

.p-business-block__links {
  padding: 25px 40px 15px;
  background-color: #fff;
}

.p-business-block__links-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-business-block__links--grid1 .p-business-block__links-line {
  display: block;
}

.p-business-block__link {
  margin-bottom: 4px;
  min-width: 50%;
  line-height: 1.5;
}

.p-business-block__link:last-child {
  margin-right: 0;
}

.p-business-block--bg .p-business-block__links {
  background-color: #fff !important;
}

.p-business-block__image {
  width: 48.33%;
}

.p-business-block--reverse .p-business-block__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-business-block__services {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #dee2e5;
}

.p-business-block__services-block {
  margin-bottom: 30px;
}

.p-business-block__services-block:last-child {
  margin-bottom: 0;
}

.p-business-block__services-block-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.p-business-block__services-title {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.p-business-block__services-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -15px;
}

.p-business-block__services-item {
  margin-right: 3.34%;
  margin-bottom: 15px;
  width: 48.33%;
}

.p-business-block__services-item:nth-child(2n) {
  margin-right: 0;
}

.p-business-block__services-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-business-block__services-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-business-block__services-image {
  margin-right: 30px;
  width: 140px;
  min-width: 140px;
  overflow: hidden;
}

.p-business-block__services-image img {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-business-block__services-item
  > a:hover
  .p-business-block__services-image
  img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-business-block__services-text-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-business-block__services-item-title {
  position: relative;
  display: inline;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.p-business-block__services-item
  > a:hover
  .p-business-block__services-item-title {
  color: #007ac5;
}

.p-business-block__services-item-desc {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.6;
}

.p-business-block__services-item
  > a:hover
  .p-business-block__services-item-desc {
  color: #007ac5;
}

.p-business-block__services-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

.p-business-block__services-links .c-btn4 {
  margin-bottom: 5px;
  margin-right: 20px;
  display: inline-block;
}

#traffic .p-business-block--bg {
  background-color: #d6ebfe;
}

#traffic .p-business-block:not(.p-business-block--bg) .p-business-block__links {
  background-color: #d6ebfe;
}

#hotel .p-business-block--bg {
  background-color: #eae2cd;
}

#hotel .p-business-block:not(.p-business-block--bg) .p-business-block__links {
  background-color: #eae2cd;
}

#shopping .p-business-block--bg {
  background-color: #fffac8;
}

#shopping
  .p-business-block:not(.p-business-block--bg)
  .p-business-block__links {
  background-color: #fffac8;
}

#leisure .p-business-block--bg {
  background-color: #d3f2d3;
}

#leisure .p-business-block:not(.p-business-block--bg) .p-business-block__links {
  background-color: #d3f2d3;
}

#sports .p-business-block--bg {
  background-color: #ebdcfb;
}

#sports .p-business-block:not(.p-business-block--bg) .p-business-block__links {
  background-color: #ebdcfb;
}

#living .p-business-block--bg {
  background-color: #ffdcf0;
}

#living .p-business-block:not(.p-business-block--bg) .p-business-block__links {
  background-color: #ffdcf0;
}

.p-services__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -60px;
}

.p-services__block {
  margin-right: 3.8%;
  margin-bottom: 60px;
  width: 30.8%;
}

.p-services__block:nth-child(3n) {
  margin-right: 0;
}

.p-services__title {
  margin-bottom: 25px;
  font-size: 28px;
}

.p-services__image {
  margin-bottom: 24px;
}

.p-services__desc {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.p-services__links {
  padding: 18px;
  background-color: #fff;
}

.p-business-block .p-services__wrap {
  margin-top: 30px;
}

.p-business-block--bg .p-services__links {
  background-color: #fff !important;
}

#traffic .p-services__links {
  background-color: #d6ebfe;
}

#sports .p-services__links {
  background-color: #ebdcfb;
}

#living .p-services__links {
  background-color: #ffdcf0;
}

#leisure .p-services__links {
  background-color: #d3f2d3;
}

.p-facilities-block {
  margin-bottom: 80px;
}

.p-facilities-block__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  height: 72px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background-color: #007ac5;
}

.p-facilities-block__inner {
  position: relative;
  padding: 35px 40px;
  height: 100px;
  background-color: #fefefe;
  overflow: hidden;
  background-image: url("/assets/img/group/ptn_facilities_bg.png");
}

.p-facilities-block__inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.8))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  opacity: 1;
  pointer-events: none;
}

.p-facilities-block__inner.is-active {
  height: auto;
}

.p-facilities-block__inner.is-active:after {
  opacity: 0;
}

.p-facilities-block__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 0 0;
  border-bottom: 1px solid #e6e6e6;
}

.p-facilities-block__line:first-child {
  padding-top: 0;
}

.p-facilities-block__line:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.p-facilities-block__area {
  margin-bottom: 20px;
  padding-right: 25px;
  width: 200px;
  min-width: 200px;
  font-size: 20px;
  font-weight: bold;
}

.p-facilities-block__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.p-facilities-block__list li {
  min-width: 50%;
}

.p-facilities-block__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.p-facilities-block__item:before {
  content: "";
  display: block;
  position: relative;
  margin-right: 10px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.p-facilities-block__item--traffic:before {
  background-image: url("/assets/img/group/icon_facilities_traffic.png");
}

.p-facilities-block__item--hotel:before {
  background-image: url("/assets/img/group/icon_facilities_hotel.png");
}

.p-facilities-block__item--shopping:before {
  background-image: url("/assets/img/group/icon_facilities_shopping.png");
}

.p-facilities-block__item--leisure:before {
  background-image: url("/assets/img/group/icon_facilities_leisure.png");
}

.p-facilities-block__item--sports:before {
  background-image: url("/assets/img/group/icon_facilities_sports.png");
}

.p-facilities-block__item--living:before {
  background-image: url("/assets/img/group/icon_facilities_living.png");
}

.p-facilities-block__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-facilities-block__map {
  position: relative;
  margin-top: 50px;
}

.p-facilities-block__map:before {
  content: "";
  display: block;
  padding-top: 53%;
}

.p-facilities-block__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-facilities-block__toggle-btn {
  position: relative;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 18px;
  color: #007ac5;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.p-facilities-block__toggle-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  -ms-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  width: 15px;
  height: 10px;
  background-image: url("/assets/img/ir/icon_individual_step_btn.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-facilities-block__inner.is-active + .p-facilities-block__toggle-btn:before {
  -webkit-transform: translateX(-50%) rotate(0deg);
  -ms-transform: translateX(-50%) rotate(0deg);
  transform: translateX(-50%) rotate(0deg);
}

/* -- GROUPLIST
--------------------------------------------- */
.p-grouplist-tabs {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-grouplist-tabs__tab {
  width: 50%;
  height: 50px;
}

.p-grouplist-tabs__tab a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
}

.p-grouplist-tabs__tab--active a {
  font-weight: bold;
  color: #fff;
  background-color: #444;
}

.p-grouplist-links {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-grouplist-links__label {
  min-width: 200px;
  font-size: 20px;
}

.p-grouplist-links__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-grouplist-links__list li {
  margin-right: 15px;
}

.p-grouplist-links__list li a {
  text-decoration: underline;
}

.p-grouplist-list {
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}

.p-grouplist-list:first-of-type {
  padding-top: 0;
}

.p-grouplist-list__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;
}

.p-grouplist-list__list li {
  padding-right: 20px;
  margin-bottom: 20px;
  width: calc(100% / 3);
  line-height: 1.5;
}

.p-grouplist-list__list li a {
  font-size: 16px;
}

.p-grouplist-list__list--overseas {
  display: block;
}

.p-grouplist-list__list--overseas li {
  width: 100%;
}

/* -- ABOUT
--------------------------------------------- */
.p-about-data__map {
  position: relative;
  border: 1px solid #e1e1e1;
}

.p-about-data__map:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 52.55%;
}

.p-about-data__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -- ORGANIGRAM
--------------------------------------------- */
.p-organigram__text {
  margin-bottom: 60px;
  line-height: 1.75;
}

/* -- OFFICER
--------------------------------------------- */
.p-officer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-officer__list li {
  margin-bottom: 4.76%;
  width: 47.62%;
}

.p-officer__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}

.p-officer__image {
  position: relative;
  top: -1px;
  left: 0;
  width: 40%;
  min-width: 140px;
  background-position: center center;
  background-size: cover; 
   
}

.p-officer__image:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 158%;
}

.p-officer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 7.5%;
}

.p-officer__title * {
  display: block;
}

.p-officer__text {
  margin-bottom: 10px;
}

.p-officer__kana {
  margin-bottom: 8px;
  font-size: 12px;
}

.p-officer__name {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.p-officer__button {
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
  height: 40px;
  border-radius: 8px;
}

.p-officer__button a {
  font-size: 14px;
}

.p-officer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 170px 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 100;
}

.p-officer-modal *:not(a):focus {
  outline: none;
}

.p-officer-modal.is-active {
  display: block;
}

.p-officer-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.p-officer-modal__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 100px;
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
}

.p-officer-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 44px;
  z-index: 2;
}

.p-officer-modal__content {
  position: relative;
  width: 100%;
  padding-left: 28.75%;
}

.p-officer-modal__head {
  padding-bottom: 30px;
  border-bottom: 2px solid #f5f5f5;
}

.p-officer-modal__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
}

.p-officer-modal__position {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.p-officer-modal__kana {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.p-officer-modal__name {
  display: block;
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: bold;
}

.p-officer-modal__text {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.p-officer-modal__text:last-child {
  margin-bottom: 0;
}

.p-officer-modal__history {
  margin-top: 30px;
  width: 100%;
}

.p-officer-modal__history tr {
  margin-bottom: 10px;
}

.p-officer-modal__history th {
  width: 21.05%;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 1.75;
}

.p-officer-modal__history td {
  padding-bottom: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  line-height: 1.75;
}

.p-officer-modal__history td span {
  display: block;
  margin-bottom: 10px;
}

.p-officer-modal__history td span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .p-officer__list li {
    width: 100%;
    margin-right: 0;
  }
}

/* -- HISTORY
--------------------------------------------- */
.p-history__chronology {
  font-size: 18px;
}

.p-history__container {
  margin-top: 20px;
}

.p-history__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 20px;
}

.p-history__block {
  padding: 20px;
}

.p-history__block:nth-child(even) {
  background-color: #fafafa;
}

.p-history__image {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  margin-left: 20px;
  width: 200px;
}

.p-history__inner {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-history__list {
  margin-top: 20px;
}

.p-history__list li {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* -- VISION
--------------------------------------------- */
#vision .c-section {
  padding-bottom: 130px;
}

#vision .c-section:last-child {
  padding-bottom: 0;
}

.p-vision-slogan__title {
  margin-bottom: 50px;
  font-size: 48px;
  font-weight: bold;
  color: #007ac5;
  text-align: center;
}

.p-vision-declaration {
  margin-top: 50px;
}

.p-vision-declaration__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2px;
  padding: 48px;
  background-color: #f5f5f5;
}

.p-vision-declaration__block:last-child {
  margin-bottom: 0;
}

.p-vision-declaration__number {
  margin-right: 34px;
  width: 160px;
}

.p-vision-declaration__text-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-vision-declaration__title {
  margin-bottom: 25px;
  color: #007ac5;
  font-size: 24px;
  font-weight: bold;
}

.p-vision-declaration__text {
  font-size: 18px;
  line-height: 2;
}

.p-vision-bottom {
  margin-top: 20px;
}

.p-vision-bottom__logo {
  margin: 0 auto 70px;
  width: 434px;
  text-align: center;
}

.p-vision-button {
  margin: 30px auto 0;
  width: 240px;
  height: 50px;
}

/* -- IR
--------------------------------------------- */
/* -- eir -- */
.eir img {
  width: auto;
  max-width: 100%;
}

.s_yearController .c-sidemenu__block .c-sidemenu__item--link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#event .s_eirItem_thumb__sb {
  width: 220px;
}

#results_briefing .s_eir_tableFlex__sb th {
  width: 20%;
}

#results_briefing .s_eir_tableFlex__sb td {
  width: 80%;
}

.eir-matrix-quarter.s_eirMatrixPresentation__sb .c-table th,
.eir-matrix-quarter.s_eirMatrixPresentation__sb .c-table td,
.s_eir_tableMaterial__sb .c-table th,
.s_eir_tableMaterial__sb .c-table td,
.s_eirMatrixMonthly__sb .c-table th,
.s_eirMatrixMonthly__sb .c-table td,
.eir_page_results_briefing .c-table th,
.eir_page_results_briefing .c-table td {
  padding: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {

  .eir-matrix-quarter.s_eirMatrixPresentation__sb .c-table th,
  .eir-matrix-quarter.s_eirMatrixPresentation__sb .c-table td,
  .s_eir_tableMaterial__sb .c-table th,
  .s_eir_tableMaterial__sb .c-table td,
  .s_eirMatrixMonthly__sb .c-table th,
  .s_eirMatrixMonthly__sb .c-table td,
  .eir_page_results_briefing .c-table th,
  .eir_page_results_briefing .c-table td {
    word-break: break-all;
  }


}

.eir-matrix-quarter.s_eirMatrixPresentation__sb .c-table .c-stripe-list__inner,
.s_eir_tableMaterial__sb .c-table .c-stripe-list__inner,
.s_eirMatrixMonthly__sb .c-table .c-stripe-list__inner,
.eir_page_results_briefing .c-table .c-stripe-list__inner {
  min-height: 0;
  padding: 0;
}

.s_eirMatrixMonthly__sb .c-stripe-list li,
.s_eirMatrixMonthly__sb .c-stripe-list__inner {
  display: block;
}

.eir_area_latest_material .c-table td {
  max-width: 615px;
}

table.s_eirItem_table ul.s_eirList__sb li.s_eirList_item__sb:first-child {
  padding-top: 0;
}

table.s_eirItem_table ul.s_eirList__sb li.s_eirList_item__sb:last-child {
  padding-bottom: 0;
}

.s_ir_library__title:after {
  content: none !important;
}

.s_ir_library__item a.s_ir_library__link {
  height: 220px !important;
}

#ir_event .c-stripe-list__inner {
  min-height: 40px;
}

.p-ir-block {
  margin-bottom: 40px;
}

.p-ir-block__button {
  position: relative;
}

.p-ir-block__button > * {
  display: inline-block;
  position: absolute;
  right: 0;
}

.eir_area_irtop_schedule {
  width: 100%;
}

/* -- common -- */
.p-ir-block1,
.p-ir-block2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}



.p-ir-link-wrap {
  position: relative;
}

.p-ir-link {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-ir-msg-bnr {
  position: relative;
  width: 65.4%;
  vertical-align: bottom;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-color: #dfe1e7;
  /*background-image: url("/assets/img/ir/img_ir_msg_bnr_bg.png");*/
  background-size: 100%;
  background-repeat: no-repeat;
}

.p-ir-msg-bnr__inner {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  height: 100%;
}

.p-ir-msg-bnr__inner a {
  margin-bottom: 15px;
  font-size: 16px;
}

.p-ir-msg-bnr__inner a:last-child {
  margin-bottom: 0;
}

.p-ir-msg-bnr__inner a:after {
  content: "";
  display: inline-block;
  position: relative;
}

.p-ir-text-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.p-ir-text-wrap:last-child {
  margin-bottom: 0;
}

.p-ir-text {
  width: 80%;
}

.p-ir-logo {
  width: 200px;
  height: 200px;
}

@media screen and (max-width: 768px) {
  .p-ir-text-wrap {
    display: block;
    text-align: center;
  }

  .p-ir-text {
    width: 100%;
  }

}

.p-stock-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 15px;
  width: 30.8%;
}

.p-stock-info__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 30px;
}

.p-stock-info__title .c-btn4 {
  position: relative;
  top: -2px;
  padding-top: 10px;
}

.p-stock-info__content {
  padding: 30px;
  background-color: #f5f5f5;
  border-radius: 10px;
  height: auto;
  text-align: center;
}

.p-stock-info__content img {
  width: auto;
  max-width: 100%;
}

.p-stock-info__head {
  margin-bottom: 30px;
}

.p-stock-info__date {
  margin-bottom: 15px;
}

.p-stock-info dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.p-stock-info dl:last-child {
  margin-bottom: 0;
}

.p-stock-info dt {
  margin-right: 22px;
}

.p-stock-info dd {
  width: 140px;
}

.p-stock-info__result {
  color: #007ac5;
  vertical-align: bottom;
}

.p-stock-info__mark {
  font-size: 30px;
}

.p-stock-info__value {
  font-size: 40px;
}

.p-stock-info__modal .c-modal__inner {
  padding: 60px 30px 30px;
}

.p-stock-info__modal .c-modal__close {
  top: 10px;
  right: 30px;
  width: 30px;
}

.p-stock-info__modal iframe {
  width: 100%;
  height: 1000px;
}

.p-schedule {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.p-schedule__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 150px;
  min-width: 150px;
  min-height: 66px;
  color: #fff;
  font-weight: bold;
  background-color: #007ac5;
}

.p-schedule__value {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
  padding: 15px 30px 15px 30px;
  line-height: 1.5;
  background-color: #f8f8f8;
}

.p-schedule__link {
  margin-left: 30px;
  min-width: 120px;
}

.p-ir-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-ir-nav__item {
  margin-bottom: 30px;
  width: 22.5%;
}

.p-ir-nav__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #dcebf5;
}

.p-ir-nav--grid3 .p-ir-nav__item {
  width: 29.8%;
}

.p-ir-nav__image {
  position: relative;
  overflow: hidden;
}

.p-ir-nav__image img {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

a:hover .p-ir-nav__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-ir-nav__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 20px 30px;
  min-height: 72px;
}

.p-ir-nav__title {
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.p-ir-nav__title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  background-image: url("/assets/img/common/icon_btn_arrow2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-ir-nav__text {
  margin-top: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}

a:hover .p-ir-nav__content {
  color: #007ac5;
}

.p-document__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-document__block {
  position: relative;
  padding-bottom: 106px;
  width: calc((100% - 40px) / 2);
}

.p-document__title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.p-document__button {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
  height: 66px;
}

.p-plan-title {
  margin-top: 20px;
  padding: 10px;
  color: #fff;
  font-size: 18px;
  background-color: #007ac5;
}

.p-plan-block {
  padding: 10px;
  background-color: #eef2f5;
}

.p-plan-block2-title {
  margin-bottom: 15px;
  font-size: 24px;
}

.p-plan-block2 {
  position: relative;
  padding: 25px;
  margin-bottom: 80px;
}

.p-plan-block2:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  height: 50px;
  border-top: 50px solid #f00;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 0px solid transparent;
}

.p-plan-block2--red {
  border: 1px solid #f00;
}

.p-plan-block2--red:after {
  border-top: 50px solid #f00;
}

.p-plan-block2--blue {
  border: 1px solid #007ac5;
}

.p-plan-block2--blue:after {
  border-top: 50px solid #007ac5;
}

.p-plan-block2__title {
  margin-bottom: 25px;
  font-size: 20px;
  text-indent: -1.35em;
  padding-left: 1.35em;
  font-weight: bold;
}

.p-plan-block2--red .p-plan-block2__title {
  color: #f00;
}

.p-plan-block2--blue .p-plan-block2__title {
  color: #007ac5;
}

.p-plan-block2__sub-block {
  margin-bottom: 20px;
  padding-left: 18px;
}

.p-plan-block2__sub-block:last-child {
  margin-bottom: 0;
}

.p-plan-block2__sub-block {
  padding-left: 30px;
}

.p-plan-block2__sub-title {
  margin-bottom: 10px;
  text-indent: -1em;
  font-size: 18px;
  font-weight: bold;
}

.p-plan-block2__sub-title:last-child {
  margin-bottom: 0;
}

.p-plan-block2__sub-title .num {
  display: inline-block;
  width: 30px;
  min-width: 30px;
}

.p-plan-block2__sub-title .inner {
  text-decoration: underline;
}

.p-plan-block2--en .p-plan-block2__sub-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: -30px;
  text-indent: 0;
}

.p-plan-block2__text {
  font-size: 16px;
  line-height: 1.75;
}

.p-plan-block2__list {
  font-size: 16px;
  line-height: 1.5;
}

.p-plan-block2__list li {
  margin-bottom: 10px;
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.p-plan-block2__list li:last-child {
  margin-bottom: 0;
}

.p-plan-block2--en .p-plan-block2__list li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-plan-block2-last {
  color: #007ac5;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}

.p-plan-block2-last--en {
  font-size: 20px;
}

.eir_area_financial_report .c-stripe-list__inner,
.eir_area_brief_note .c-stripe-list__inner {
  min-height: 0;
}

.c-title1 + .s_eirItem_tableTitle__sb {
  padding-top: 0;
}

.eir_area_financial_report .s_eirBlock,
.eir_area_brief_note .s_eirBlock {
  margin-top: 40px;
}

.eir_area_financial_report .c-title1,
.eir_area_brief_note .c-title1 {
  margin-bottom: 25px;
}

.p-ir-mail-button {
  margin-bottom: 20px;
  width: 240px;
  height: 60px;
}

.p-ir-message {
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#dbdde6),
    to(#f0f0f0)
  );
  background: -webkit-linear-gradient(top, #dbdde6 0%, #f0f0f0 100%);
  background: linear-gradient(to bottom, #dbdde6 0%, #f0f0f0 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-ir-message__text-wrap {
  width: 55.5%;
  padding: 5% 0 0 5%;
}

.p-ir-message__title {
  margin-bottom: 1em;
  color: #007ac5;
  font-size: 2.4vw;
  font-weight: bold;
}

.p-ir-message--en .p-ir-message__title {
  margin-bottom: 1em;
  font-size: 2.3vw;
}

.p-ir-message__text {
  font-size: 1.4vw;
  font-weight: 700;
  line-height: 1.75;
}

.p-ir-message--en .p-ir-message__text {
  font-size: 1.4vw;
  line-height: 1.75;
}

.p-ir-message__image {
  position: relative;
  width: 44.5%;
  vertical-align: bottom;
}

.p-ir-message__image:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 85.5%;
}

.p-ir-message__image picture {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.p-ir-message__image picture,
.p-ir-message__image img {
  vertical-align: bottom;
  width: 100%;
}

/* -- ABOUT
--------------------------------------------- */
.p-about-logo {
  margin: 0 auto 70px;
  width: 434px;
}

.p-about-buttons {
  margin-top: 70px;
}

.p-about-buttons .p-about-button {
  margin: 0 auto;
}

.p-about-button {
  width: 300px;
  height: 66px;
}

.p-about-buttons2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

.p-about-buttons2 .p-about-button {
  width: 35.7%;
}

.p-about-buttons2 .p-about-button:last-child {
  margin-left: 8%;
}

.p-about-image {
  margin: 80px 0 60px;
}

.p-about-modal__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-about-modal__item {
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 15px;
  width: calc((100% - 20px) / 2);
  border-radius: 10px;
  border: 2px solid #444;
}

.p-about-modal__item:nth-child(2n) {
  margin-right: 0;
}

.p-about-modal__item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.p-about-modal__item-date {
  font-size: 18px;
  font-weight: bold;
}

.p-about-modal__item-desc {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.p-about-modal__item-desc:last-child {
  margin-bottom: 0;
}

.p-topics-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.p-topics-links__item {
  position: relative;
  margin-right: 3px;
  margin-bottom: 30px;
  width: calc((100% - 6px) / 3);
}

.p-topics-links__item:nth-child(3n) {
  margin-right: 0;
}

.p-topics-links__item a {
  display: block;
  height: 100%;
  background-color: #fafafa;
}

.p-topics-links__title {
  position: absolute;
  left: 0;
  bottom: 10px;
  padding: 10px;
  width: 100%;
  font-size: 22px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.p-topics-links__title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/assets/img/common/icon_btn_arrow1.png");
}

.p-topics-links__image {
  position: relative;
  overflow: hidden;
}

.p-topics-links__image img {
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}

a:hover .p-topics-links__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-topics-links__content {
  padding: 14px 18px;
  background-color: #fafafa;
}

.p-topics-links__subtitle {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.p-topics-links__desc {
  font-size: 14px;
  line-height: 1.5;
}

.p-topics-block {
  padding: 30px 0;
  border-bottom: 1px solid #e5e5e5;
}

.p-topics-block:first-child {
  padding-top: 0;
}

.p-topics-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-topics-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 4px solid #007ac5;
}

.p-topics-tabs__item {
  width: calc((100% - 24px) / 4);
  border-radius: 6px 6px 0 0 / 6px 6px 0 0;
  overflow: hidden;
  text-align: center;
}

.p-topics-tabs__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #cce2fa;
  font-weight: bold;
}

.p-topics-tabs__item.active,
.p-topics-tabs__item.active a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #007ac5;
  color: #fff;
  font-weight: bold;
}

.p-topics-heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 180px;
  margin-bottom: 60px;
  font-size: 25px;
  background-size: cover;
  background-repeat: no-repeat;
}

.p-topics-heading--traffic {
  background-image: url("/assets/img/ir/img_topics_traffic_bg.jpg");
}

.p-topics-heading--hotel {
  background-image: url("/assets/img/ir/img_topics_hotel_bg.jpg");
}

.p-topics-heading--estate {
  background-image: url("/assets/img/ir/img_topics_estate_bg.jpg");
}

.p-topics-heading--construction {
  background-image: url("/assets/img/ir/img_topics_construction_bg.jpg");
}

.p-topics-heading--hawaii {
  background-image: url("/assets/img/ir/img_topics_hawaii_bg.jpg");
}

.p-topics-heading--other {
  background-image: url("/assets/img/ir/img_topics_other_bg.jpg");
  margin-bottom: 0;
}

.p-topics-heading__subtitle {
  display: block;
  margin-bottom: 20px;
  font-size: 25px;
}

.p-topics-heading__title {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #007ac5;
}

.p-topics-copy {
  text-align: center;
}

.p-topics-copy__main {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: bold;
  color: #007ac5;
}

.p-topics-copy__sub {
  font-size: 18px;
  line-height: 1.3;
}

.p-topics-detail {
  margin-bottom: 60px;
}

.p-topics-detail:last-child {
  margin-bottom: 0;
}

.p-topics-detail__title {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: bold;
}

.p-topics-detail__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-topics-detail__image {
  width: 38%;
  margin-right: 4.85%;
}

.p-topics-detail__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-topics-detail__desc {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.p-topics-detail__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
  font-weight: bold;
  background-color: #eef2f5;
}

.p-topics-detail__link {
  min-width: 50%;
  line-height: 1.5;
  text-align: left;
}

/* -- FAQ
--------------------------------------------- */
.p-faq__block {
  margin-bottom: 75px;
}

.p-faq__block:last-child {
  margin-bottom: 0;
}

.p-faq__title {
  margin-bottom: 35px;
  font-size: 30px;
}

.p-faq__set {
  border-bottom: 1px solid #f0f0f0;
}

.p-faq__question {
  position: relative;
  padding: 18px 33px;
  font-size: 16px;
  line-height: 1.3;
  cursor: pointer;
}

.p-faq__question:hover,
.p-faq__question.is-active {
  color: #007ac5;
}

.p-faq__question:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 19px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/assets/img/ir/icon_faq_q.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-faq__answer {
  position: relative;
  padding: 18px 33px;
  font-size: 16px;
  line-height: 1.3;
}

.p-faq__answer:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 16px;
  height: 18px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  background-image: url("/assets/img/ir/icon_faq_a.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-faq__toggle-icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-faq__toggle-icon:before,
.p-faq__toggle-icon:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 2px;
  background-color: #a0a0a0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-faq__toggle-icon:after {
  -webkit-transform: rotate(90deg) translateX(-1px);
  -ms-transform: rotate(90deg) translateX(-1px);
  transform: rotate(90deg) translateX(-1px);
}

.p-faq__question.is-active .p-faq__toggle-icon:before {
  -webkit-transform: rotate(-180deg) translateX(0px) translateY(-50%);
  -ms-transform: rotate(-180deg) translateX(0px) translateY(-50%);
  transform: rotate(-180deg) translateX(0px) translateY(-50%);
}

.p-faq__question.is-active .p-faq__toggle-icon:after {
  -webkit-transform: rotate(0deg) translateX(0px) translateY(0);
  -ms-transform: rotate(0deg) translateX(0px) translateY(0);
  transform: rotate(0deg) translateX(0px) translateY(0);
}

/* -- GOVERNANCE
--------------------------------------------- */
/* -- INDIVIDUAL
--------------------------------------------- */
@font-face {
  font-family: "Alternate Gothic No3 D";
  src: url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.eot");
  src: url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.eot?#iefix")
      format("embedded-opentype"),
    url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.woff2")
      format("woff2"),
    url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.woff")
      format("woff"),
    url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.ttf")
      format("truetype"),
    url("//db.onlinewebfonts.com/t/1ab27b1a02a7fb1c4ebe805cff2694c3.svg#Alternate Gothic No3 D")
      format("svg");
}

@font-face {
  font-family: "Alternate Gothic No1 D";
  src: url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.eot");
  src: url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.eot?#iefix")
      format("embedded-opentype"),
    url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.woff2")
      format("woff2"),
    url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.woff")
      format("woff"),
    url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.ttf")
      format("truetype"),
    url("//db.onlinewebfonts.com/t/173aa2c75698b66f4ebbd3b63f4b8030.svg#Alternate Gothic No1 D")
      format("svg");
}

.p-individual-list li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-individual-list__title {
  margin-bottom: 10px;
  color: #007ac5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.p-individual-list__text {
  font-size: 16px;
  line-height: 1.5;
}

/* -- STEP
--------------------------------------------- */
.p-step {
  padding: 80px 40px 40px;
  background-color: #daf1ff;
}

.p-step__block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 54px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.p-step__block:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 15px solid #007ac5;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.p-step__list li:last-child .p-step__block {
  margin-bottom: 0;
}

.p-step__list li:last-child .p-step__block:after {
  content: none;
}

.p-step__number-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  width: 67px;
  min-width: 67px;
  text-align: center;
  font-weight: normal;
  border-right: 1px solid #e5e5e5;
}

.p-step__step {
  font-family: "Alternate Gothic No1 D", sans-serif;
  font-size: 28px;
}

.p-step__number {
  font-family: "Alternate Gothic No3 D", sans-serif;
  font-size: 70px;
}

.p-step__content {
  padding-left: 20px;
}

.p-step__title {
  margin-bottom: 15px;
  color: #007ac5;
  font-size: 20px;
  font-weight: bold;
}

.p-step__text {
  font-size: 16px;
  line-height: 1.75;
}

.p-step__button {
  position: relative;
  margin: 60px auto 0;
  padding-top: 18px;
  width: 60px;
  color: #007ac5;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.p-step__button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 15px;
  height: 10px;
  background-image: url("/assets/img/ir/icon_individual_step_btn.png");
  background-size: contain;
  background-position: center center;
}

.p-step__button.is-active:after {
  background-image: url("/assets/img/ir/icon_individual_step_btn_open.png");
}

.p-step__button.is-active .p-step__button-close {
  display: none;
}

.p-step__button-open {
  display: none;
}

.p-step__button.is-active .p-step__button-open {
  display: inline;
}

/* -- STOCK FINANCE
--------------------------------------------- */
.p-stock-finance-image {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 608px;
}

.p-stock-fincance-btn {
  margin: 0 auto;
  width: 300px;
  height: 66px;
}

/* -- CONDITION
--------------------------------------------- */
.p-condition-info {
  margin-bottom: 15px;
}

.p-condition-info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.p-condition-info li:first-child {
  border-top: 1px solid #f0f0f0;
}

.p-condition-info__label {
  display: inline-block;
  width: 250px;
  font-weight: bold;
}

.p-condition-table th {
  vertical-align: middle;
}

.p-condition-table td {
  vertical-align: middle;
}

.p-condition-table th:nth-child(1),
.p-condition-table td:nth-child(1) {
  width: 60%;
}

.p-condition-table th:nth-child(2),
.p-condition-table td:nth-child(2) {
  width: 20%;
}

.p-condition-table th:nth-child(3),
.p-condition-table td:nth-child(2) {
  width: 20%;
}

/* -- RATING
--------------------------------------------- */
.p-rating-table th,
.p-rating-table td {
  vertical-align: middle;
}

.p-rating-table th:nth-child(1),
.p-rating-table td:nth-child(1) {
  width: 30%;
}

.p-rating-table th:nth-child(2),
.p-rating-table td:nth-child(2) {
  width: 20%;
}

.p-rating-table th:nth-child(3),
.p-rating-table td:nth-child(3) {
  width: 20%;
}

.p-rating-table th:nth-child(4),
.p-rating-table td:nth-child(4) {
  width: 10%;
}

.p-rating-table th:nth-child(5),
.p-rating-table td:nth-child(5) {
  width: 20%;
}

.p-rating-table2 th,
.p-rating-table2 td {
  vertical-align: middle;
}

.p-rating-table2 th:nth-child(1),
.p-rating-table2 td:nth-child(1) {
  width: 44%;
}

.p-rating-table2 th:nth-child(2),
.p-rating-table2 td:nth-child(2) {
  width: 24%;
}

.p-rating-table2 th:nth-child(3),
.p-rating-table2 td:nth-child(3) {
  width: 10%;
}

.p-rating-table2 th:nth-child(4),
.p-rating-table2 td:nth-child(4) {
  width: 22%;
}

/* -- BENEFIT
--------------------------------------------- */
.p-benefit-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-benefit-head__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: calc((100% - 40px) * 0.3);
  background-color: #daf1ff;
  padding: 0 20px;
}

.p-benefit-head__left:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("/assets/img/ir/icon_benefit.png");
  background-size: contain;
}

.p-benefit-head__right {
  padding: 15px 10px 10px;
  width: calc((100% - 40px) * 0.7);
  background-color: #d8efde;
}

.p-benefit-head__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.p-benefit-head__link a:after {
  content: "";
  display: block;
  margin-left: 12px;
  background-image: url("/assets/img/common/icon_btn_arrow5.png");
  width: 15px;
  min-width: 15px;
  height: 10px;
  background-size: contain;
}

.p-benefit-head__left .p-benefit-head__link {
  margin-bottom: 14px;
}

.p-benefit-head__left-text {
  font-size: 16px;
}

.p-benefit-head__right .p-benefit-head__link a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-benefit-head__right-links {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #a1a1a1;
}

.p-benefit-head__right-links .p-benefit-head__link {
  width: 50%;
}

.p-benefit-head__right-links .p-benefit-head__link a {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  min-height: 50px;
  height: 100%;
  font-size: 16px;
  background-color: #fff;
  border-bottom: 1px solid #a1a1a1;
  border-right: 1px solid #a1a1a1;
}

.p-benefit-head__right-links .p-benefit-head__link:last-child a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: normal;
  background-color: transparent;
  border: none;
}

.p-benefit-head__right-links .p-benefit-head__link:last-child a:after {
  position: relative;
  top: -4px;
}

.p-benefit-head__right-links .p-benefit-head__link:nth-child(odd) a {
  border-left: 1px solid #a1a1a1;
}

.p-benefit-news {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #e4edf6;
}

.p-benefit-news__title {
  font-size: 20px;
  font-weight: bold;
}

.p-benefit-news ul {
  margin-top: 20px;
}

.p-benefit-desc {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.p-benefit-sub-desc {
  margin-top: 15px;
  padding: 20px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #007ac5;
  background-color: #f3feff;
}

.p-benefit-table-title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.p-benefit-table {
  width: 100%;
}

.p-benefit-table th,
.p-benefit-table td {
  padding: 10px;
  vertical-align: middle;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #a1a1a1;
}

.p-benefit-table thead th {
  padding: 15px 10px;
  font-weight: bold;
  background-color: #cdcdcd;
  text-align: center;
}

.p-benefit-table tbody th {
  height: 50px;
  background-color: #f1f1f1;
  font-weight: bold;
}

.p-benefit-table tbody th {
  font-size: 14px;
}

.p-benefit-note-title1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.p-benefit-note1 {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.3;
}

.p-benefit-note {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.3;
}

.p-benefit-note + .p-benefit-note {
  margin-top: 0;
}

.p-benefit-note2 {
  font-size: 16px;
  line-height: 1.5;
}

.p-benefit-note-title {
  margin-bottom: 15px;
  font-weight: bold;
}

#specialplan .p-benefit-note-title {
  padding: 15px 20px;
  background-color: #daf1ff;
  font-size: 20px;
}

.p-benefit-table + .p-benefit-note {
  margin-top: 15px;
}

.p-benefit-title {
  margin-bottom: 15px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
}

.p-benefit-title--color1 {
  color: #007ac5;
}

.p-benefit-title--color2 {
  color: #288842;
}

.p-benefit-title--color2 {
  color: #288842;
}

.p-benefit-block {
  margin-bottom: 50px;
}

.p-benefit-block:last-child {
  margin-bottom: 0;
}

.p-benefit-block__title {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  background-color: #d8efde;
}

.p-benefit-block__title2 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.p-benefit-block__inner {
  background-color: #fcfcfc;
  padding: 15px 30px;
}

.p-benefit-block__images {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-benefit-block__image {
  width: 40%;
}

.p-benefit-block__image:first-child {
  margin-right: 5.6%;
}

.p-benefit-btn {
  margin: 20px auto;
  width: 300px;
  height: 60px;
}

.p-benefit-facility-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.p-benefit-facility {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

.p-benefit-facility__block {
  width: 47.2%;
}

.p-benefit-facility__block:first-child {
  margin-right: 5.6%;
}

.p-benefit-facility__block--grid1 {
  width: 100%;
  margin-right: 0;
}

.p-benefit-facility__block-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.p-benefit-facility__area-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.p-benefit-facility__area {
  width: 120px;
  min-width: 120px;
  padding-right: 20px;
  font-weight: bold;
}

.p-benefit-facility__link {
  margin-bottom: 10px;
  line-height: 1.3;
}

.p-benefit-facility__link:last-child {
  margin-bottom: 0;
}

#benefit .txtS,
#specialplan .txtS {
  font-size: 12px;
}

/* -- SPECIAL PLAN
--------------------------------------------- */
.p-specialplan-head {
  margin: 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #c8c8c8;
  border-left: 1px solid #c8c8c8;
}

.p-specialplan-head__link {
  width: 25%;
  height: 50px;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}

.p-specialplan-head__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 30px 0 20px;
}

.p-specialplan-head__link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("/assets/img/common/icon_btn_arrow5.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-specialplan-title-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

.p-specialplan-title-wrap .c-title1 {
  margin-right: 30px;
  margin-bottom: 0;
}

.p-specialplan-tag-wrap {
  padding-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-specialplan-tag {
  position: relative;
  display: block;
  margin-right: 10px;
  padding: 5px 10px 5px 10px;
  color: #007ac5;
  font-size: 16px;
  line-height: 1;
  border-radius: 4px;
  border: 1px solid #007ac5;
  background-color: rgba(0, 156, 229, 0);
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-specialplan-image-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.p-specialplan-image {
  width: 30%;
}

#specialplan .c-title2 {
  margin-bottom: 25px;
}

.p-specialplan-table {
  width: 100%;
}

.p-specialplan-table th,
.p-specialplan-table td {
  padding: 15px;
  font-size: 14px;
  text-align: left;
  line-height: 1.75;
  font-weight: 500;
  vertical-align: middle;
}

.p-specialplan-table th,
.p-specialplan-table td {
  border-bottom: 1px solid #e1e1e1;
}

.p-specialplan-table tr:last-child th,
.p-specialplan-table tr:last-child td {
  border-bottom: none;
}

.p-specialplan-table th.em,
.p-specialplan-table td.em {
  background-color: #fcfcfc;
  color: #dc3700;
  font-weight: bold;
  border-bottom: 1px solid #000;
}

.p-specialplan-table th.heightS,
.p-specialplan-table td.heightS {
  padding: 0px 15px;
}

.p-specialplan-table td.ptN {
  padding-top: 0;
}

.p-specialplan-table th.bdrN,
.p-specialplan-table td.bdrN {
  border-bottom: none;
}

/* -- IR SITEMAP
--------------------------------------------- */
.p-ir-sitemap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1.3;
}

.p-ir-sitemap__grid-item {
  width: calc(50% - 20px);
}

.p-ir-sitemap__block1 {
  margin-bottom: 50px;
}

.p-ir-sitemap__block2 {
  margin-bottom: 20px;
  padding-left: 30px;
}

.p-ir-sitemap__block3 {
  padding-left: 30px;
}

.p-ir-sitemap__link1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.p-ir-sitemap__link1:last-child {
  margin-bottom: 0;
}

.p-ir-sitemap__link1 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  font-size: 20px;
  min-height: 50px;
  border-bottom: 1px solid #f0f0f0;
}

.p-ir-sitemap__link1 a:hover {
  text-decoration: underline;
}

.p-ir-sitemap__link1 a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  background-image: url("/assets/img/common/icon_btn_arrow6.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-ir-sitemap__link2 {
  margin-bottom: 20px;
  font-size: 16px;
}

.p-ir-sitemap__link2:last-child {
  margin-bottom: 0;
}

.p-ir-sitemap__link2 a:hover {
  text-decoration: underline;
}

.p-ir-sitemap__link3 {
  margin-bottom: 15px;
  font-size: 16px;
}

.p-ir-sitemap__link3:last-child {
  margin-bottom: 0;
}

.p-ir-sitemap__link3 a:hover {
  text-decoration: underline;
}

.p-ir-sitemap a:hover {
  color: #007ac5;
}

/* -- SUSTAINABILITY
--------------------------------------------- */
.p-sustainability-nav {
  margin-bottom: 40px;
}

.p-sustainability-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-sustainability-nav ul li {
  max-width: 300px;
  margin-right: 20px;
}

.p-sustainability-nav ul li:last-child {
  margin-right: 0;
}

.p-sustainability-nav ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.p-sustainability-nav ul li a:after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 15px;
  min-width: 15px;
  height: 10px;
  background-image: url("/assets/img/common/icon_btn_arrow5.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.p-sustainability-nav ul li a:hover {
  text-decoration: underline;
}

.p-sustainability-hero__image {
  margin: 0 auto 50px;
  max-width: 850px;
}

.p-sustainability-hero__title {
  color: #007ac5;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.p-sustainability-hero__text {
  margin-bottom: 50px;
  color: #007ac5;
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

.p-sustainability-title1 {
  margin-bottom: 40px;
  color: #007ac5;
  font-size: 34px;
  text-align: center;
  font-weight: bold;
}

.p-sustainability-title2 {
  margin-bottom: 35px;
  color: #007ac5;
  font-size: 26px;
  font-weight: bold;
}

.p-sustainability-block {
  margin-bottom: 45px;
}

.p-sustainability-block__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  padding-right: 30px;
  background-color: #eef2f5;
}

.p-sustainability-block__cards {
  margin-bottom: 20px;
}

.p-sustainability-block__text {
  font-size: 16px;
  line-height: 1.6;
}

.p-sustainability-block--en .p-sustainability-block__title {
  padding-right: 0;
}

.p-sustainability-block--en .p-sustainability-block__link {
  position: absolute;
  top: 30px;
  right: 30px;
}

.p-sustainability-block-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eef2f5;
}

.p-sustainability-block-title__number {
  margin-right: 40px;
  width: 80px;
  min-width: 80px;
}

.p-sustainability-block-title__main {
  margin-right: 20px;
  word-break: keep-all;
  font-size: 34px;
  font-weight: bold;
}

.p-sustainability-block-title__sub {
  font-size: 18px;
}

.p-sustainability-block-title--en {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-sustainability-block-title--en .p-sustainability-block-title__sub {
  padding: 10px;
  width: 100%;
  line-height: 1.5;
  background-color: #fff;
}

.p-sustainability-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -20px;
}

.p-sustainability-cards__item {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 165px;
}

.p-sustainability-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-sustainability-buttons__item {
  width: 300px;
  height: 66px;
  margin-right: 20px;
}

.p-sustainability-buttons__item:last-child {
  margin-right: 0;
}

.p-sustainability-step {
  padding-top: 40px;
}

.p-sustainability-step .p-step__number-wrap {
  width: 130px;
  min-width: 130px;
}

.p-sustainability-step .p-step__number {
  font-size: 66px;
}

.p-sustainability-step .p-step__title {
  margin-bottom: 10px;
  padding-top: 10px;
  font-size: 22px;
}

.p-sustainability-step .p-step__step {
  margin-bottom: -5px;
  font-size: 24px;
}

.p-sustainability-step .p-step__block {
  padding: 15px;
}

.p-sustainability-box-wrap {
  margin-bottom: 30px;
}

.p-sustainability-box-wrap:last-child {
  margin-bottom: 0;
}

.p-sustainability-box {
  padding: 45px;
}

.p-sustainability-box:nth-child(odd) {
  background-color: #eef2f5;
}

.p-sustainability-box--bg-white {
  background-color: #fff !important;
}

.p-sustainability-box--bg {
  background-image: url("/assets/img/sustainability/img_sustainability_box_bg.jpg");
  background-size: cover;
  background-position: center center;
}

.p-sustainability-box p {
  line-height: 1.75;
}

.p-sustainability-box__grid:after {
  content: "";
  display: block;
  clear: both;
}

.c-title2 + .p-sustainability-box__grid {
  margin-top: 20px;
}

.p-sustainability-box__grid-text {
  width: 100%;
}

.p-sustainability-box__grid-images {
  float: right;
  margin: 0 0 0 10px;
  width: 41.4%;
}

.p-sustainability-box__grid-image {
  margin-bottom: 10px;
}

.p-sustainability-box__grid-image:last-child {
  margin-bottom: 0;
}

#activities .p-sustainability-box--bg {
  background-image: url("/assets/img/sustainability/img_activities_box_bg.jpg");
}

#environment .p-sustainability-box--bg {
  background-image: url("/assets/img/sustainability/img_environment_box_bg.jpg");
}

#communication .p-sustainability-box--bg {
  background-image: url("/assets/img/sustainability/img_communication_box_bg.jpg");
}

.p-sustainability-system__wrap .c-title2 {
  text-indent: -3em;
  padding-left: 3em;
}

.p-sustainability-system {
  margin: 20px auto 0;
  padding-left: 60px;
}

.p-sustainability-system__wrap {
  margin: 0 auto;
  max-width: 850px;
}

.p-sustainability-system dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
}

.p-sustainability-system dl dt {
  position: relative;
  width: 4em;
  min-width: 4em;
  font-size: 16px;
  line-height: 1.6;
}

.p-sustainability-system dl dd {
  position: relative;
  display: block;
  padding-left: 1em;
  font-size: 16px;
  line-height: 1.6;
}

.p-sustainability-system dl dd:before {
  content: ":";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5em;
  font-size: 16px;
  line-height: 1.6;
}

.p-sustainability-system__chart {
  margin: 20px auto 0;
  text-align: center;
  max-width: 800px;
}

/* -- SITEMAP
--------------------------------------------- */
.p-sitemap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1.3;
}

.p-sitemap__block1 {
  width: 100%;
  margin-bottom: 25px;
}

.p-sitemap__block1--small {
  width: calc(50% - 20px);
}

.p-sitemap__block2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-sitemap__block3 {
  width: calc(100% / 3);
}

.p-sitemap__link1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.p-sitemap__link1:last-child {
  margin-bottom: 0;
}

.p-sitemap__link1 a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  width: 100%;
  min-height: 60px;
  border-bottom: 1px solid #f0f0f0;
}

.p-sitemap__link1 a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 14px;
  background-image: url("/assets/img/common/icon_btn_arrow6.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-sitemap__link1 a:hover {
  text-decoration: underline;
}

.p-sitemap__link2 {
  margin-bottom: 20px;
  font-size: 16px;
}

.p-sitemap__link2:before {
  content: "・";
  display: inline;
}

.p-sitemap__link2:last-child {
  margin-bottom: 0;
}

.p-sitemap__link2 a:hover {
  text-decoration: underline;
}

.p-sitemap a:hover {
  color: #007ac5;
}

/* -- RECRUIT
--------------------------------------------- */
.p-recruit-btn {
  margin-left: auto;
  margin-right: 0;
  width: 300px;
  height: 50px;
}

.p-recruit-table-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-recruit-table {
  width: calc((100% - 40px) / 2);
}

.p-recruit-table th {
  width: 50%;
}

.p-recruit-table td {
  widows: 50%;
}

.p-error-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-initiative__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-initiative__list li {
  margin-bottom: 40px;
  width: calc((100% - 40px) / 2);
}

.p-initiative a:hover {
  color: #007ac5;
}

.p-initiative__image {
  margin-bottom: 14px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.p-initiative__image img {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

a:hover .p-initiative__image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-initiative__title {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.p-initiative__title:after {
  content: url("/assets/img/common/icon_blank.gif");
  display: inline-block;
}

.p-initiative__text {
  line-height: 1.5;
}

.p-bottom-banner {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(102, 102, 102, 0.6);
}

.p-bottom-banner.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-bottom-banner__inner {
  position: relative;
}

.p-bottom-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 30px;
  height: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p-bottom-banner__banner {
  cursor: pointer;
}

.p-bottom-banner__banner img {
  width: auto;
  max-height: 10vh;
}

  /* -- SNS GUIDE
--------------------------------------------- */
.p-snsguide{

}

.p-snsguide-operation{
  padding: 20px;
  font-size:18px;
}
.p-snsguide-operation__bg{
 background-color: #eef2f5;
}
.p-snsguide-operation__text{
 font-size:16px;
}
.p-snsguide-operation__text dt{
 font-weight:bold;
 margin-bottom:20px;
}
.p-snsguide-operation__text dd{
 margin-left:38px;
 margin-bottom:16px;

}

.p-snsguide-operation--absolute{
 top: -2px;
}


@media screen and (max-width: 768px) {
  /* -- TOP SP
--------------------------------------------- */
  .p-top-title {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
  }
  /* -- MV SP
--------------------------------------------- */
  .p-mv {
    padding: 0;
    margin-bottom: 30px;
    height: 375px;
  }
  .p-mv__bg {
    height: 375px;
    background-image: url("/assets/img/top/img_mv_bg_sp.jpg");
  }
  .p-mv__movie {
    height: 375px;
    background-image: url("/assets/img/top/mv_movie_thumbnail.png");
  }
  .p-mv__movie:after {
    background-image: none;
  }
  .p-mv__inner {
    height: 375px;
    position: relative;
  }
  .p-mv__content {
    top: auto;
    bottom: 74px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .p-mv__main-copy {
    text-align: center;
    font-size: 24px;
    text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white,
      0px 0px 2px white, 0px 0px 2px white;
  }
  .p-mv__sub-copy {
    margin-bottom: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0px 0px 2px white, 0px 0px 2px white, 0px 0px 2px white,
      0px 0px 2px white, 0px 0px 2px white;
  }
  .p-mv__scroll {
    display: none;
  }
  .p-mv__button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 250px;
    height: 44px;
    border-radius: 5px;
  }
  .p-mv__button a {
    border-radius: 5px;
    font-size: 16px;
  }
  .p-narrative {
    padding: 30px 0;
    text-align: center;
  }
  .p-narrative__title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .p-narrative__copy {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
  }
  .p-narrative__desc {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
  }
  .p-narrative__button {
    width: 180px;
    height: 40px;
    margin: 30px auto;
  }
  .p-narrative-modal {
    display: opacity;
  }
  .p-narrative-modal .c-modal__inner {
    padding-top: 60px;
  }
  .p-narrative-modal__title {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .p-narrative-modal__copy {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .p-narrative-modal__desc {
    font-size: 14px;
    letter-spacing: -0.02em;
  }
  .p-top-stories {
    margin-left: -17px;
    padding: 0;
    width: calc(100% + 34px);
  }
  .p-top-stories .swiper-container {
    padding-bottom: 40px;
    border-radius: 0;
  }
  .p-top-stories .swiper-button-prev,
  .p-top-stories .swiper-button-next {
    display: none;
  }
  .p-top-stories .swiper-pagination {
    display: block;
    bottom: 0;
  }
  .p-top-service {
    display: none;
  }
  .p-top-service__logos-list {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .p-top-service__logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-top-service__logos-wrap {
    padding: 10px 0;
    width: 40%;
  }
  .p-top-service__logos-wrap .p-top-service__logo {
    width: 60%;
    padding: 0px;
  }
  .p-top-service__logos-wrap .p-top-service__logo:first-child {
    text-align: left;
    padding-left: 10px;
  }
  .p-top-service__logos-wrap .p-top-service__logo:last-child {
    margin: 0 0 0 auto;
    padding-right: 10px;
    text-align: right;
  }
  .p-top-service__logos-wrap .p-top-service__logo a {
    padding: 0;
  }
  .p-top-sp-service {
    display: block;
    padding-top: 0;
    padding-bottom: 30px;
  }
  .p-top-sp-service__list {
    margin-left: -17px;
    width: calc(100% + 34px);
  }
  .p-top-sp-service__item {
    border-bottom: 1px solid #fff;
  }
  .p-top-sp-service__item:last-child {
    border-bottom: none;
  }
  .p-top-sp-service__heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 80px;
    background-color: #007ac5;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  .p-top-sp-service__heading:before,
  .p-top-sp-service__heading:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    -webkit-transition: 250ms ease-out;
    transition: 250ms ease-out;
  }
  .p-top-sp-service__heading:after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
  }
  .p-top-sp-service__heading.is-active:before,
  .p-top-sp-service__heading.is-active:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
  }
  .p-top-sp-service__text-wrap {
    padding: 30px 25px 20px;
    background-color: #007ac5;
  }
  .p-top-sp-service__title {
    position: relative;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
  }
  .p-top-sp-service__title a {
    position: relative;
    display: inline-block;
    padding-right: 27px;
    color: #fff;
  }
  .p-top-sp-service__title a:after {
    content: "";
    display: block;
    position: absolute;
    top: 49%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 9px;
    height: 14px;
    background-image: url("/assets/img/common/icon_btn_arrow1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .p-top-sp-service__text {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .p-top-value {
    padding-bottom: 435px;
    background-image: url(/assets/img/top/img_value_bg.png),
      -webkit-gradient(linear, left bottom, left top, from(#8ec6f7), to(#b8e0f6)),
      url("/assets/img/top/img_value_bg.png");
    background-image: url(/assets/img/top/img_value_bg.png),
      -webkit-linear-gradient(bottom, #8ec6f7 0%, #b8e0f6 100%),
      url("/assets/img/top/img_value_bg.png");
    background-image: url(/assets/img/top/img_value_bg.png),
      linear-gradient(to top, #8ec6f7 0%, #b8e0f6 100%),
      url("/assets/img/top/img_value_bg.png");
    min-height: 200vw;
  }
  .p-top-value .p-top-title {
    margin-bottom: 30px;
  }
  .p-top-value__image {
    display: none;
  }
  .p-top-value__content {
    width: 100%;
  }
  .p-top-value__block-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .p-top-value__items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-top-value__item {
    width: 50%;
    margin-bottom: 40px;
    margin-right: 0;
  }
  .p-top-value__title {
    margin-bottom: 20px;
    min-height: 45px;
    font-size: 17px;
  }
  .p-top-value__number {
    margin-bottom: 5px;
    font-size: 55px;
  }
  .p-top-value__buttons {
    display: block;
    margin-top: 40px;
  }
  .p-top-value__button {
    margin: 0 auto 20px;
    width: 260px;
    height: 70px;
    border-radius: 5px;
  }
  .p-top-value__button:last-child {
    margin-bottom: 0;
    margin-right: auto;
  }
  .p-top-value .swiper-pagination {
    top: -10px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .p-top-topic {
    margin-left: -17px;
    width: calc(100% + 34px);
  }
  .p-top-topic .swiper-container {
    padding-bottom: 35px;
  }
  .p-top-topic .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .p-top-topic .swiper-slide {
    width: 100%;
    margin-bottom: 0;
  }
  .p-top-topic .swiper-pagination {
    bottom: 0;
  }
  .p-top-topic .swiper-button-prev,
  .p-top-topic .swiper-button-next {
    display: none;
  }
  .p-top-topic .p-top-topic__title {
    margin-bottom: 10px;
  }
  .p-top-banner-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-top-banner-list .p-top-title {
    margin-bottom: 30px;
  }
  .p-top-banner-list li {
    margin-bottom: 6%;
    width: 47%;
  }
  .p-top-banner-list li .c-btn3 {
    height: 50px;
  }
  .p-top-banner-list li.small .c-btn3 a {
    font-size: 12px;
  }
  .p-news {
    margin-left: -17px;
    width: calc(100% + 34px);
  }
  .p-news__more {
    margin-right: 17px;
  }
  .p-news__affiliated-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .p-news__affiliated-item {
    width: calc((100% - 40px) / 2);
  }
  .p-news-item {
    padding: 0;
  }
  .p-news-item a {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-news-item__date {
    width: 135px;
    min-width: 102px;
    font-size: 16px;
  }
  .p-news-item--sustainability .p-news-item__date {
    margin-bottom: 6px;
    width: 100%;
    font-size: 14px;
  }
  .p-news-item__category {
    margin-right: 0;
    text-align: center;
    padding: 0 15px;
    /* width: 148px; */
    width: 140px;
  }
  
  .p-news-item__category.new2022apl{
   width: 147px;
  
  }
  .p-news__affiliated-item--ph  a br,
  .p-news__affiliated-item--sp  a br{
   display:block;
  }
 
  
  .p-news-item--sustainability .p-news-item__category {
    margin-bottom: 6px;
    margin-right: 10px;
    width: 132px;
    font-size: 10px;
  }
  .p-news-item__tag {
    padding: 2px 10px 3px;
    margin-right: 0px;
  }
  .p-news-item--sustainability .p-news-item__tag {
    margin-bottom: 6px;
    padding: 1px 8px 4px;
    font-size: 10px;
  }
  .p-news-item__title {
    margin-top: 10px;
    width: 100%;
    min-width: 100%;
  }
  .p-news-item--sustainability .p-news-item__title {
    padding-left: 0;
    margin-top: 0;
    font-size: 14px;
  }
  .p-news-item--sustainability .c-stripe-list__inner {
    padding: 10px 17px;
  }
  
  .p-category__newnames .p-news-item__category--ph,
  .p-category__newnames .p-news-item__category--sp {
    width: calc((100% - 40px) / 2);
    line-height: 1.2;
    max-width:153px;
  }
  .p-category__newnames .p-news__affiliated-item--ph ,
  .p-category__newnames .p-news__affiliated-item--sp
  {
    width: calc((100% - 40px) / 2);
    
  }
  .p-category__newnames .p-news__affiliated-item--ph a ,
  .p-category__newnames .p-news__affiliated-item--sp a
  {
    line-height:1.2;
    text-align: center;
  }
  .p-category__newnames .p-news__affiliated-item--ph a:after ,
  .p-category__newnames .p-news__affiliated-item--sp a:after
  {
    
  }
  
  /* -- CAUTIONS SP
--------------------------------------------- */
  .p-caution__inner {
    padding: 30px 15px;
  }
  .p-caution__content {
    padding: 20px;
  }
  .p-caution__title {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .p-caution__date {
    font-size: 12px;
  }
  .p-caution__text {
    font-size: 12px;
    text-align: left;
  }
  .p-caution__link {
    font-size: 12px;
    text-align: left;
  }
  .p-caution__link:after {
    margin-left: 4px;
    width: 6px;
    height: 10px;
  }
  /* -- GROUP SP
--------------------------------------------- */
  .p-group-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-group-section:last-of-type {
    margin-bottom: 0;
  }
  .p-group-section__title {
    padding-bottom: 24px;
    font-size: 22px;
  }
  .p-group-section__title:after {
    width: 60px;
    border-radius: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .p-groupguide-map {
    padding: 30px 0 50px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .p-groupguide-map__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .p-groupguide-map__map {
    margin-bottom: 20px;
  }
  .p-groupguide-map__buttons {
    display: block;
    padding: 0 15px;
  }
  .p-groupguide-map__button {
    margin-bottom: 20px;
    width: 100%;
  }
  .p-groupguide-map__button-inner {
    font-size: 25px;
  }
  /* -- MESSAGE SP
--------------------------------------------- */
  .p-message__image {
    width: calc(100% + 34px);
    margin-left: -17px;
  }
  .p-message__text--end {
    margin-top: 25px;
  }
  .p-message__sign {
    width: 130px;
  }
  /* -- BUSINESS SP
--------------------------------------------- */
  .p-business-heading {
    padding: 40px 20px;
  }
  .p-business-heading__title {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: left;
  }
  .p-business-heading__title:after {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .p-business-heading__copy {
    font-size: 18px;
    text-align: left;
  }
  .p-business-heading__desc {
    font-size: 14px;
    text-align: left;
  }
  .p-business-nav {
    padding: 20px 0;
  }
  .p-business-nav__item {
    margin-right: 0;
    width: 100%;
  }
  .p-business-nav__item:last-child {
    margin-bottom: 0;
  }
  .p-business-nav__button {
    height: 50px;
    font-size: 16px;
  }
  .p-business-btns {
    margin-top: 0;
  }
  .p-business-btn {
    height: 40px;
  }
  .p-business-btn a {
    font-size: 14px;
  }
  .p-club-card {
    padding: 20px;
  }
  .p-club-card--en .p-club-card__title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
  }
  .p-club-card--en .p-club-card__content,
  .p-club-card__content {
    width: 100%;
  }
  .p-club-card--en .p-club-card__image,
  .p-club-card__image {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
  }
  .p-business-detail-nav__head {
    margin-bottom: 10px;
  }
  .p-business-detail-nav__sub-title {
    font-size: 18px;
  }
  .p-business-detail-nav__title-wrap {
    display: block;
    width: 100%;
  }
  .p-business-detail-nav__icon {
    width: 30px;
  }
  .p-business-detail-nav__title {
    width: 100%;
    font-size: 30px;
  }
  .p-business-detail-nav__desc {
    width: 100%;
    padding-top: 10px;
    font-size: 16px;
  }
  .p-business-detail-nav__nav-wrap {
    display: block;
  }
  .p-business-detail-nav__nav {
    width: 100%;
    padding-right: 0;
  }
  .p-business-detail-nav__nav-item {
    width: 48.4%;
    margin-right: 3.2%;
    margin-bottom: 10px;
  }
  .p-business-detail-nav__nav-item:nth-child(3n) {
    margin-right: 3.2%;
  }
  .p-business-detail-nav__nav-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-business-detail-nav__nav-item a {
    padding: 10px 20px 10px 16px;
    font-size: 14px;
  }
  .p-business-detail-nav__nav-item a:before {
    right: 10px;
  }
  .p-business-detail-nav__nav--sub .p-business-detail-nav__nav-item {
    width: 48.4%;
    margin-right: 3.2%;
  }
  .p-business-detail-nav__nav--sub
    .p-business-detail-nav__nav-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-business-detail-nav__nav-icon {
    width: 25px;
    min-width: 25px;
  }
  .p-business-block {
    padding: 40px 0 30px;
  }
  .p-business-block__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-business-block__image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 15px;
    width: 100%;
  }
  .p-business-block__title {
    font-size: 22px;
  }
  .p-business-block--reverse .p-business-block__title {
    text-align: left;
  }
  .p-business-block__text-wrap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
  .p-business-block__text {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-business-block__links {
    padding: 15px 20px 5px;
  }
  .p-business-block__services-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
  }
  .p-business-block__services-wrap {
    display: block;
    margin-bottom: 0;
  }
  .p-business-block__services-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-business-block__services-item:last-child {
    margin-bottom: 0;
  }
  .p-business-block__services-image {
    margin-right: 10px;
    width: 100px;
    min-width: 100px;
  }
  .p-business-block__services-item-title {
    font-size: 14px;
  }
  .p-business-block__services-item-desc {
    margin-top: 5px;
    font-size: 14px;
  }
  .p-services__block {
    margin-right: 0;
    width: 100%;
  }
  .p-services__title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .p-services__desc {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .p-services__links {
    padding: 15px;
  }
  .p-facilities-block {
    margin-bottom: 30px;
  }
  .p-facilities-block__inner {
    padding: 15px;
  }
  .p-facilities-block__title {
    height: 50px;
    font-size: 20px;
  }
  .p-facilities-block__line {
    display: block;
  }
  .p-facilities-block__area {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    font-size: 18px;
  }
  .p-facilities-block__list {
    display: block;
  }
  .p-facilities-block__item {
    width: 100%;
    margin-bottom: 10px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .p-facilities-block__map:before {
    padding-top: calc(100% + 46px);
  }
  .p-facilities-block__toggle-btn {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 16px;
  }
  /* -- GROUPLIST SP
--------------------------------------------- */
  .p-grouplist-links__label {
    min-width: 100px;
    font-size: 16px;
  }
  .p-grouplist-list {
    padding: 20px 0;
  }
  .p-grouplist-list__list {
    margin-top: 10px;
  }
  .p-grouplist-list__list li {
    margin-bottom: 8px;
    padding-right: 16px;
    width: 50%;
    font-size: 14px;
    line-height: 1.5;
  }
  .p-grouplist-list__list li:nth-child(2n) {
    padding-right: 0;
  }
  .p-grouplist-list__list li a {
    font-size: 14px;
  }
  .p-grouplist-list__list--overseas li {
    width: 100%;
    padding-right: 0;
  }
  /* -- ABOUT SP
--------------------------------------------- */
  .p-about-data__map {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .p-company-about-image {
    width: calc(100% + 34px);
    margin-left: -17px;
  }
  /* -- ORGANIGRAM SP
--------------------------------------------- */
  .p-organigram__text {
    margin-bottom: 40px;
  }
  /* -- OFFICER SP
--------------------------------------------- */
  .p-officer__list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-officer__list li {
    margin-bottom: 40px;
  }
  .p-officer__image {
    min-width: 120px;
  }
  .p-officer__text {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .p-officer__kana {
    font-size: 10px;
  }
  .p-officer__name {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .p-officer-modal {
    padding: 80px 20px;
  }
  .p-officer-modal__inner {
    padding: 40px 20px;
  }
  .p-officer-modal__close {
    top: 15px;
    right: 20px;
    width: 24px;
  }
  .p-officer-modal__content {
    padding-left: 0;
  }
  .p-officer-modal__head {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 20px;
  }
  .p-officer-modal__image {
    margin-right: 15px;
    position: relative;
    width: 41.8%;
  }
  .p-officer-modal__profile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .p-officer-modal__position {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .p-officer-modal__kana {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .p-officer-modal__name {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .p-officer-modal__text {
    margin-bottom: 8px;
    font-size: 13px;
  }
  .p-officer-modal__history {
    padding-top: 20px;
  }
  .p-officer-modal__history dl {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }
  .p-officer-modal__history dt,
  .p-officer-modal__history dd {
    width: 100%;
  }
  .p-officer-modal__history dt {
    margin-bottom: 5px;
  }
  /* -- HISTORY SP
--------------------------------------------- */
  .p-history__chronology {
    font-size: 16px;
  }
  .p-history__wrap {
    display: block;
    position: relative;
    margin-top: 20px;
  }
  .p-history__image {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
  }
  .p-history__inner {
    margin-top: 20px;
  }
  .p-history__list li {
    font-size: 14px;
  }
  /* -- VISION SP
--------------------------------------------- */
  #vision .c-section {
    padding-bottom: 50px;
  }
  .p-vision-slogan__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.58;
  }
  .p-vision-declaration {
    margin-left: -17px;
    width: calc(100% + 34px);
  }
  .p-vision-declaration__block {
    padding: 30px 17px;
  }
  .p-vision-declaration__title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .p-vision-declaration__number {
    margin-right: 15px;
    width: 40px;
  }
  .p-vision-declaration__text {
    font-size: 14px;
  }
  .p-vision-bottom__logo {
    margin-bottom: 50px;
    padding: 0 10px;
    width: 100%;
  }
  .p-vision-button {
    width: 260px;
    height: 45px;
  }
  .p-vision-button a {
    font-size: 16px;
  }
  /* -- IR SP
--------------------------------------------- */
  #event .s_eirItem_thumb__sb {
    width: auto;
  }
  .s_ir_library__item a.s_ir_library__link {
    height: auto !important;
  }
  .p-ir-block1 {
    display: block;
  }
  .p-ir-block:last-child {
    margin-bottom: 0;
  }
  .p-ir-msg-bnr {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .p-stock-info {
    padding-top: 0;
    width: 100%;
  }
  .p-stock-info__title {
    font-size: 20px;
  }
  .p-stock-info__modal .c-modal__inner {
    padding: 40px 20px;
  }
  .p-stock-info__modal .c-modal__close {
    top: 7px;
    right: 20px;
    width: 24px;
  }
  .p-ir-nav__item {
    width: 48.5%;
    margin-bottom: 20px;
  }
  .p-ir-nav--grid3 .p-ir-nav__item {
    width: 48.5%;
    /* width: 100%; */
  }
  .p-ir-nav--grid3.ir-en .p-ir-nav__item {
    width: 100%;
  }
  .p-ir-nav--sp-grid1 .p-ir-nav__item {
    width: 100%;
  }
  .p-ir-nav__content {
    min-height: 50px;
    padding: 15px 15px;
  }
  .p-ir-nav__title {
    font-size: 14px;
  }
  .p-ir-nav__title:after {
    right: -4px;
  }
  .p-ir-nav__text {
    font-size: 14px;
  }
  .p-schedule {
    display: block;
  }
  .p-schedule__value {
    padding: 20px;
    display: block;
  }
  .p-schedule__label {
    min-width: 60px;
    font-size: 14px;
    min-height: 40px;
  }
  .p-schedule__link {
    margin-top: 10px;
    width: 120px;
    margin-left: 0;
  }
  .p-schedule__link a {
    font-size: 14px;
  }
  .p-ir-link {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    text-align: right;
  }
  .p-ir-link a {
    display: inline-block;
    width: auto;
    text-align: right;
    font-size: 14px;
  }
  .p-document__wrap {
    display: block;
  }
  .p-document__block {
    margin-bottom: 40px;
    padding-bottom: 60px;
    width: 100%;
  }
  .p-document__block:last-child {
    margin-bottom: 0;
  }
  .p-document__button {
    height: 40px;
  }
  .p-document__button a {
    font-size: 14px;
  }
  .eir_area_financial_report .c-stripe-list__inner,
  .eir_area_brief_note .c-stripe-list__inner {
    padding: 4px 17px;
  }
  .p-plan-block2 {
    padding: 15px;
    margin-bottom: 50px;
  }
  .p-plan-block2-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .p-plan-block2:after {
    top: calc(100% + 10px);
    height: 30px;
    border-top-width: 30px;
  }
  .p-plan-block2__title {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
  }
  .p-plan-block2__sub-block {
    padding-left: 16px;
  }
  .p-plan-block2__sub-block {
    padding-left: 25px;
  }
  .p-plan-block2__sub-title {
    font-size: 16px;
    line-height: 1.5;
  }
  .p-plan-block2__sub-title .num {
    display: inline-block;
    width: 25px;
    min-width: 25px;
  }
  .p-plan-block2--en .p-plan-block2__sub-title {
    left: -25px;
  }
  .p-plan-block2__text {
    font-size: 14px;
  }
  .p-plan-block2__list {
    font-size: 14px;
  }
  .p-plan-block2-last {
    font-size: 20px;
    line-height: 1.5;
  }
  .p-ir-mail-button {
    width: 180px;
    height: 40px;
  }
  .p-ir-message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 272px;
  }
  .p-ir-message__text-wrap {
    width: 100%;
    height: 0;
    padding: 0;
    z-index: 1;
  }
  .p-ir-message__title {
    position: absolute;
    top: 28.6%;
    left: 4.4%;
    font-size: 5.3vw;
  }
  .p-ir-message--en .p-ir-message__title {
    top: 23%;
    font-size: 5.3vw;
    line-height: 1.3;
  }
  .p-ir-message__text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 13px;
    width: 100%;
    color: #fff;
    font-size: 3.7vw;
    font-weight: 400;
    line-height: 1.8;
    background-color: rgba(0, 122, 197, 0.9);
  }
  .p-ir-message--en .p-ir-message__text {
    font-size: 3.4vw;
    line-height: 1.8;
  }
  .p-ir-message__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
    width: 100%;
  }
  .p-ir-message__image:before {
    content: none;
  }
  .p-ir-message__image picture {
    position: relative;
  }
  /* -- ABOUT SP
--------------------------------------------- */
  .p-about-logo {
    margin: 0 auto 40px;
    padding: 0 30px;
    width: 100%;
  }
  .p-about-buttons {
    margin-top: 30px;
  }
  .p-about-button {
    width: 240px;
    height: 40px;
  }
  .p-about-image {
    margin: 40px auto 30px;
  }
  .p-about-buttons2 {
    margin-top: 30px;
  }
  .p-about-buttons2 .p-about-button {
    width: 45.7%;
  }
  .p-about-modal__item {
    margin-right: 0;
    padding: 10px;
    width: 100%;
  }
  .p-about-modal__item-title {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .p-about-modal__item-date {
    font-size: 14px;
  }
  .p-about-modal__item-desc {
    font-size: 14px;
  }
  .p-topics-links {
    display: block;
  }
  .p-topics-links__item {
    width: 100%;
    margin: 0 0 20px;
  }
  .p-topics-links__subtitle {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .p-topics-tabs__item {
    font-size: 10px;
    width: calc((100% - 16px) / 4);
    word-break: break-word;
  }
  .p-topics-tabs__item a {
    min-height: 50px;
  }
  .p-topics-heading {
    margin-bottom: 30px;
    padding: 10px;
    height: 100px;
  }
  .p-topics-heading__subtitle {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: center;
  }
  .p-topics-heading__title {
    font-size: 20px;
    text-align: center;
  }
  .p-topics-copy__main {
    font-size: 18px;
  }
  .p-topics-copy__sub {
    font-size: 14px;
  }
  .p-topics-detail {
    margin-bottom: 40px;
  }
  .p-topics-detail:last-child {
    margin-bottom: 0;
  }
  .p-topics-detail__title {
    font-size: 20px;
  }
  .p-topics-detail__wrap {
    display: block;
  }
  .p-topics-detail__image {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .p-topics-detail__content {
    width: 100%;
  }
  .p-topics-detail__desc {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .p-topics-detail__links {
    padding: 10px;
  }
  .p-topics-detail__link {
    font-size: 14px;
  }
  /* -- FAQ SP
--------------------------------------------- */
  .p-faq__block {
    margin-bottom: 50px;
  }
  .p-faq__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .p-faq__question {
    font-size: 16px;
  }
  .p-faq__answer {
    font-size: 16px;
  }
  .p-faq-table-wrap {
    width: calc(100% + 66px);
    margin-left: -33px;
  }
  /* -- GOVERNANCE SP
--------------------------------------------- */
  .p-governance-table__list li {
    margin-bottom: 15px;
  }
  /* -- INDIVIDUAL SP
--------------------------------------------- */
  .p-individual-list__title {
    margin-bottom: 4px;
    font-size: 16px;
  }
  .p-individual-list__text {
    font-size: 14px;
  }
  /* -- STEP SP
--------------------------------------------- */
  .p-step {
    padding: 40px 20px 20px;
  }
  .p-step__block {
    margin-bottom: 40px;
    padding: 15px;
  }
  .p-step__block:after {
    top: calc(100% + 10px);
    border-top: 10px solid #007ac5;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .p-step__number-wrap {
    padding-right: 10px;
    width: 50px;
    min-width: 50px;
  }
  .p-step__title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .p-step__content {
    padding-left: 10px;
  }
  .p-step__text {
    font-size: 14px;
  }
  .p-step__button {
    margin-top: 40px;
  }
  /* -- CONDITION SP
--------------------------------------------- */
  .p-condition-info__label {
    display: block;
    margin-bottom: 10px;
  }
  .p-condition-info li {
    display: block;
    padding: 15px 0;
  }
  /* -- BENEFIT SP
--------------------------------------------- */
  .p-benefit-head {
    display: block;
  }
  .p-benefit-head__left {
    margin-bottom: 30px;
    padding: 20px 10px;
    width: 100%;
  }
  .p-benefit-head__left:after {
    content: "";
    top: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
  }
  .p-benefit-head__right {
    width: 100%;
  }
  .p-benefit-title {
    font-size: 20px;
  }
  .p-benefit-table-wrap {
    overflow-x: auto;
  }
  .p-benefit-table-wrap .p-benefit-table {
    width: 700px;
  }
  .p-benefit-desc {
    font-size: 14px;
  }
  .p-benefit-sub-desc {
    padding: 10px;
    font-size: 16px;
    line-height: 1.3;
  }
  .p-benefit-head__link a {
    font-size: 16px;
  }
  .p-benefit-head__right-links .p-benefit-head__link a {
    font-size: 14px;
  }
  .p-benefit-desc {
    margin-top: 20px;
    text-align: left;
  }
  .p-benefit-sub-desc {
    margin-top: 20px;
  }
  .p-benefit-table-title {
    margin-top: 30px;
    font-size: 16px;
  }
  .p-benefit-table thead th,
  .p-benefit-table thead td {
    padding: 5px;
  }
  .p-benefit-table tbody th,
  .p-benefit-table tbody td {
    padding: 5px;
    height: 40px;
    font-size: 14px;
  }
  .p-benefit-block__title {
    padding: 15px;
    font-size: 16px;
  }
  .p-benefit-block__title2 {
    font-size: 14px;
  }
  .p-benefit-block__inner {
    padding: 15px;
  }
  .p-benefit-facility {
    display: block;
    margin-bottom: 30px;
  }
  .p-benefit-facility--sp-grid2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .p-benefit-facility__block {
    width: 100%;
  }
  .p-benefit-facility--sp-gird2 .p-benefit-facility__block {
    width: 50%;
  }
  .p-benefit-facility__area {
    width: 90px;
    min-width: 90px;
    padding-right: 10px;
    font-size: 14px;
  }
  .p-benefit-facility__link {
    font-size: 14px;
  }
  .p-benefit-facility-title {
    font-size: 18px;
  }
  .p-benefit-note-title {
    font-size: 14px;
  }
  .p-benefit-note {
    margin-top: 10px;
  }
  #specialplan .p-benefit-note-title {
    font-size: 16px;
    padding: 10px 5px;
  }
  .p-benefit-note2 {
    font-size: 14px;
  }
  .p-benefit-btn {
    height: 40px;
  }
  .p-benefit-btn a {
    font-size: 16px;
  }
  /* -- SPECIAL PLAN SP
--------------------------------------------- */
  .p-specialplan-head {
    margin: 20px 0;
  }
  .p-specialplan-head__link {
    width: 50%;
  }
  .p-specialplan-title-wrap {
    margin-bottom: 30px;
  }
  .p-specialplan-image-wrap {
    margin-bottom: 30px;
  }
  .p-specialplan-tag {
    padding: 5px;
    font-size: 10px;
  }
  .p-specialplan-table-wrap {
    overflow-x: auto;
  }
  .p-specialplan-table {
    width: 700px;
  }
  .p-specialplan-table th,
  .p-specialplan-table td {
    padding: 10px;
    font-size: 14px;
  }
  .p-specialplan-table th.heightS,
  .p-specialplan-table td.heightS {
    padding: 0 10px;
  }
  /* -- IR SITEMAP SP
--------------------------------------------- */
  .p-ir-sitemap {
    display: block;
  }
  .p-ir-sitemap__grid-item {
    width: 100%;
  }
  .p-ir-sitemap__block1 {
    margin-bottom: 30px;
  }
  .p-ir-sitemap__block2 {
    padding-left: 10px;
  }
  .p-ir-sitemap__block3 {
    padding-left: 10px;
  }
  .p-ir-sitemap__link1 a {
    font-size: 20px;
  }
  .p-ir-sitemap__link2 {
    font-size: 16px;
  }
  .p-ir-sitemap__link3 {
    font-size: 14px;
  }
  /* -- SUSTAINABILITY SP
--------------------------------------------- */
  .p-sustainability-nav ul li {
    min-width: calc(100% / 3);
    width: calc(100% / 3);
    margin-right: 0;
  }
  .p-sustainability-nav ul li a {
    padding: 10px 4px;
    font-size: 12px;
  }
  .p-sustainability-nav ul li a:after {
    width: 10px;
    height: 8px;
    margin-left: 4px;
  }
  .p-sustainability-hero__image {
    margin-bottom: 25px;
  }
  .p-sustainability-hero__title {
    font-size: 24px;
  }
  .p-sustainability-hero__text {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
  }
  .p-sustainability-title1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .p-sustainability-title2 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .p-sustainability-block {
    margin-bottom: 50px;
  }
  .p-sustainability-block__title {
    padding-right: 0;
    margin-bottom: 15px;
  }
  .p-sustainability-block--en .p-sustainability-block__link,
  .p-sustainability-block__link {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
  }
  .p-sustainability-block__cards {
    margin-bottom: 20px;
  }
  .p-sustainability-block__text {
    font-size: 16px;
  }
  .p-sustainability-block-title {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-sustainability-block-title__number {
    margin-right: 10px;
    width: 40px;
    min-width: 40px;
  }
  .p-sustainability-block-title__main {
    margin-right: 10px;
    width: 200px;
    font-size: 24px;
  }
  .p-sustainability-block-title--en .p-sustainability-block-title__main {
    font-size: 16px;
  }
  .p-sustainability-block-title--en .p-sustainability-block-title__sub,
  .p-sustainability-block-title__sub {
    padding: 10px;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
  }
  .p-sustainability-cards {
    margin-bottom: -15px;
  }
  .p-sustainability-cards__item {
    width: calc((100% - 30px) / 3);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .p-sustainability-cards__item:nth-child(3n) {
    margin-right: 0;
  }
  .p-sustainability-buttons {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-sustainability-buttons__item {
    margin-right: 20px;
    margin-bottom: 10px;
    width: calc((100% - 20px) / 2);
    height: 40px;
  }
  .p-sustainability-buttons__item:nth-child(2n) {
    margin-right: 0;
  }
  .p-sustainability-box {
    padding: 20px;
  }
  .p-sustainability-box p {
    line-height: 1.5;
  }
  .p-sustainability-box__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-sustainability-box__grid-text {
    width: 100%;
  }
  .p-sustainability-box__grid-images {
    width: 100%;
  }
  .p-sustainability-step {
    padding-top: 40px;
  }
  .p-sustainability-step .p-step__number-wrap {
    width: 50px;
    min-width: 50px;
  }
  .p-sustainability-step .p-step__number {
    font-size: 66px;
  }
  .p-sustainability-step .p-step__title {
    margin-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
  }
  .p-sustainability-step .p-step__step {
    margin-bottom: -5px;
    font-size: 24px;
  }
  .p-sustainability-step .p-step__block {
    padding: 15px;
  }
  .p-sustainability-system {
    padding-left: 16px;
  }
  .p-sustainability-system dl dt,
  .p-sustainability-system dl dd {
    font-size: 14px;
  }
  /* -- SITEMAP SP
--------------------------------------------- */
  .p-sitemap {
    display: block;
  }
  .p-sitemap__block1 {
    margin-bottom: 15px;
  }
  .p-sitemap__block1--small {
    width: 100%;
  }
  .p-sitemap__block2 {
    display: block;
  }
  .p-sitemap__block3 {
    margin-bottom: 15px;
    width: 100%;
  }
  .p-sitemap__block3:last-child {
    margin-bottom: 0;
  }
  .p-sitemap__link1 a {
    min-height: 60px;
    font-size: 20px;
  }
  .p-sitemap__link2 {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .p-sitemap__link2:last-child {
    margin-bottom: 0;
  }
  /* -- RECRUIT SP
--------------------------------------------- */
  .p-recruit-btn {
    width: 220px;
  }
  .p-recruit-table-wrap {
    display: block;
  }
  .p-recruit-table {
    width: 100%;
  }
  .p-recruit-table:first-child table {
    border-bottom: none;
  }
  .p-recruit-table th,
  .p-recruit-table td {
    display: table-cell;
    width: 50%;
  }
  .p-recruit-table th a,
  .p-recruit-table td a {
    font-size: 14px;
  }
  #news .l-wrap {
    display: block;
  }
  #news .l-aside {
    display: block;
    margin-left: 0;
    min-width: 0px;
    width: 100%;
  }
  .p-initiative__list {
    display: block;
  }
  .p-initiative__list li {
    margin-bottom: 30px;
    width: 100%;
  }
  .p-initiative__title {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .p-initiative__text {
    font-size: 14px;
  }
  .p-bottom-banner__inner {
    width: calc(100% - 20px);
  }
  .p-bottom-banner__inner img {
    width: 100%;
  }
  .p-bottom-banner__close {
    width: 30px;
    height: 30px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: -20px;
    right: -8px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .p-bottom-banner__banner img {
    width: 100%;
    max-height: auto;
  }
}

/*  2021.03  */
@media screen and (max-width: 768px) {

  .p-mv__movie-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
  }

  .p-mv__movie-sp .swiper-container .swiper-slide img{
   position:relative;
    width: 100%;
    height: auto;
    min-height: 375px;
   
  }
  
}

/* -- EN GROUP GUIDE Things
--------------------------------------------- */
#guide .p-groupguide-things-block--bg {
  background-color: #d6ebfe;
  border-top: 3px solid #007ac5;
  /* margin-bottom:100px; */
   margin-bottom:0;
}

#guide .p-groupguide-visit-block--bg {
  background-color: #edfaed;
  border-top: 3px solid #47b947;
  margin-bottom:100px;
  padding-bottom:0;
}
#guide .p-groupguide-visit-block--bg .p-groupguide-map{
  padding-bottom:100px;
  border-top: none;
}

@media screen and (max-width: 768px) {
  #guide .p-groupguide-visit-block--bg {
  
  margin-bottom:70px;
  }
  #guide .p-groupguide-visit-block--bg .p-groupguide-map{
    padding-bottom:50px;
    box-sizing:border-box;
  }


}

.p-groupguide-things {
  padding: 50px 50px 0;
  /* border-top: 3px solid #007ac5; */
  background-color: #d6ebfe;
}

.p-groupguide-things__inner {
  margin: 0 auto;
  max-width: 1280px;
}

.p-groupguide-things__title {
  margin-bottom: 35px;
  color: #007ac5;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.p-groupguide-things__map {
  margin-bottom: 30px;
}
.p-groupguide-things__buttons {
  display: flex;
  justify-content: space-between;
}
.p-groupguide-things__button {
  display: block;
  position: relative;
  width: calc((100% - 30px) / 2);
  border-radius: 10px;
  overflow: hidden;
}
.p-groupguide-things__button img {
  width: 100%;
  transition: opacity 300ms linear, transform 300ms ease-out;
}
.p-groupguide-things__button:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}
.p-groupguide-things__button-inner {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 34px;
  font-weight: bold;
}

.p-groupguide-block {
  padding: 40px 0 40px;
}

.p-groupguide-block__title {
  margin-bottom: 26px;
  font-size: 30px;
}

.p-groupguide-block--reverse .p-groupguide-block__title {
  text-align: right;
}

.p-groupguide-block__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  position: relative;
}

.p-groupguide-block__text-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 48.33%;
}

.p-groupguide-block--reverse .p-groupguide-block__text-wrap {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.p-groupguide-block__text {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.75;
}

.p-groupguide-block__links {
  padding: 25px 40px 15px;
  background-color: #fff;
}

.p-groupguide-block__links-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-groupguide-block__links--grid1 .p-groupguide-block__links-line {
  display: block;
}

.p-groupguide-block__link {
  margin-bottom: 4px;
  min-width: 50%;
  line-height: 1.5;
}

.p-groupguide-block__link:last-child {
  margin-right: 0;
}

.p-groupguide-block--bg .p-groupguide-block__links {
  background-color: #fff !important;
}

.p-groupguide-block__image {
  width: 48.33%;
}

.p-groupguide-block--reverse .p-groupguide-block__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.p-groupguide-block__services {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #dee2e5;
  padding-bottom:30px;
}
.p-groupguide-block__services.p-groupguide-block__services-last {
  padding-bottom:115px;
}
.p-groupguide-block__services-block {
  margin-bottom: 30px;
}

.p-groupguide-block__services-block:last-child {
  margin-bottom: 0;
}

.p-groupguide-block__services-block-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.p-groupguide-block__services-title {
  margin-bottom: 35px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.p-groupguide-block__services-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: -15px;
}

.p-groupguide-block__services-item {
  margin-right: 3.34%;
  margin-bottom: 15px;
  width: 48.33%;
}

.p-groupguide-block__services-item:nth-child(2n) {
  margin-right: 0;
}

.p-groupguide-block__services-item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-groupguide-block__services-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-groupguide-block__services-image {
  margin-right: 30px;
  width: 140px;
  min-width: 140px;
  overflow: hidden;
}

.p-groupguide-block__services-image img {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

.p-groupguide-block__services-item
  > a:hover
  .p-groupguide-block__services-image
  img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.p-groupguide-block__services-text-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-groupguide-block__services-item-title {
  position: relative;
  display: inline;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}

.p-groupguide-block__services-item
  > a:hover
  .p-groupguide-block__services-item-title {
  color: #007ac5;
}

.p-groupguide-block__services-item-desc {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.6;
}

.p-groupguide-block__services-item
  > a:hover
  .p-groupguide-block__services-item-desc {
  color: #007ac5;
}

.p-groupguide-block__services-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

.p-groupguide-block__services-links .c-btn4 {
  margin-bottom: 5px;
  margin-right: 20px;
  display: inline-block;
}

.p-groupguide-block__services-btn{
 width:240px;
 height: 60px;
 margin:30px auto 0;
 text-align:center;
}



.p-groupguide-block__services-btn.c-btn3 a{
 justify-content: center;
}

@media screen and (max-width: 768px) {
 #guide .p-groupguide-things-block--bg {
 
 }
 .p-groupguide-things{
   padding: 40px 0 0;
 }
 
 .p-groupguide-block__services {

   padding-bottom:0;
 }
 .p-groupguide-block__services.p-groupguide-block__services-last {
  padding-bottom:40px;
 }
 
 .p-groupguide-block__services-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
  }
  .p-groupguide-block__services-wrap {
    display: block;
    margin-bottom: 0;
  }
  .p-groupguide-block__services-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-groupguide-block__services-item:last-child {
    margin-bottom: 0;
  }
  .p-groupguide-block__services-image {
    margin-right: 10px;
    width: 100px;
    min-width: 100px;
  }
  .p-groupguide-block__services-item-title {
    font-size: 14px;
  }
  .p-groupguide-block__services-item-desc {
    margin-top: 5px;
    font-size: 14px;
  }
  .p-groupguide-block__services-btn{
    width: 180px;
    height: 40px;
    margin: 30px auto;
 }

}

/* benefit PASMO
-------------------------------- */
/* -- BENEFIT
--------------------------------------------- */
#pasmo .p-benefit-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#pasmo .p-benefit-head__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: calc((100% - 40px) * 0.3);
  background-color: #daf1ff;
  padding: 0 20px;
}

#pasmo .p-benefit-head__left:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 5px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-image: url("/assets/img/ir/icon_benefit.png");
  background-size: contain;
}

#pasmo .p-benefit-head__right {
  padding: 15px 10px 10px;
  width: calc((100% - 40px) * 0.7);
  background-color: #d8efde;
}

#pasmo .p-benefit-head__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

#pasmo .p-benefit-head__link a:after {
  content: "";
  display: block;
  margin-left: 12px;
  background-image: url("/assets/img/common/icon_btn_arrow5.png");
  width: 15px;
  min-width: 15px;
  height: 10px;
  background-size: contain;
}

#pasmo .p-benefit-head__left .p-benefit-head__link {
  margin-bottom: 14px;
}

#pasmo .p-benefit-head__left-text {
  font-size: 16px;
}

#pasmo .p-benefit-head__right .p-benefit-head__link a {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#pasmo .p-benefit-head__right-links {
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #a1a1a1;
}

#pasmo .p-benefit-head__right-links .p-benefit-head__link {
  width: 50%;
}

#pasmo .p-benefit-head__right-links .p-benefit-head__link a {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  min-height: 50px;
  height: 100%;
  font-size: 16px;
  background-color: #fff;
  border-bottom: 1px solid #a1a1a1;
  border-right: 1px solid #a1a1a1;
}

#pasmo .p-benefit-head__right-links .p-benefit-head__link:last-child a {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: normal;
  background-color: transparent;
  border: none;
}

#pasmo .p-benefit-head__right-links .p-benefit-head__link:last-child a:after {
  position: relative;
  top: -4px;
}

#pasmo .p-benefit-head__right-links .p-benefit-head__link:nth-child(odd) a {
  border-left: 1px solid #a1a1a1;
}

#pasmo .p-benefit-news {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #e4edf6;
}

#pasmo .p-benefit-news__title {
  font-size: 20px;
  font-weight: bold;
}

#pasmo .p-benefit-news ul {
  margin-top: 20px;
}

#pasmo .p-benefit-desc {
  margin-top: 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

#pasmo .p-benefit-sub-desc {
  margin-top: 15px;
  padding: 20px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #007ac5;
  background-color: #f3feff;
}

#pasmo .p-benefit-table-title {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

#pasmo .p-benefit-table {
  width: 100%;
}

#pasmo .p-benefit-table th,
#pasmo .p-benefit-table td {
  padding: 10px;
  vertical-align: middle;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #a1a1a1;
}

#pasmo .p-benefit-table thead th {
  padding: 15px 10px;
  font-weight: bold;
  background-color: #cdcdcd;
  text-align: center;
}

#pasmo .p-benefit-table tbody th {
  height: 50px;
  background-color: #f1f1f1;
  font-weight: bold;
}

#pasmo .p-benefit-table tbody th {
  font-size: 14px;
}

#pasmo .p-benefit-note-title1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

#pasmo .p-benefit-note1 {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.3;
}

#pasmo .p-benefit-note {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.3;
}

#pasmo .p-benefit-note + .p-benefit-note {
  margin-top: 0;
}

#pasmo .p-benefit-note2 {
  font-size: 16px;
  line-height: 1.5;
}

#pasmo .p-benefit-note-title {
  margin-bottom: 15px;
  font-weight: bold;
}



#pasmo .p-benefit-table + .p-benefit-note {
  margin-top: 15px;
}

#pasmo .p-benefit-title {
  margin-bottom: 15px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
}

#pasmo .p-benefit-title--color1 {
  color: #007ac5;
}

#pasmo .p-benefit-title--color2 {
  color: #288842;
}

#pasmo .p-benefit-title--color2 {
  color: #288842;
}

#pasmo .p-benefit-block {
  margin-bottom: 50px;
}

#pasmo .p-benefit-block:last-child {
  margin-bottom: 0;
}

#pasmo .p-benefit-block__title {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  background-color: #d8efde;
}

#pasmo .p-benefit-block__title2 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

#pasmo .p-benefit-block__inner {
  background-color: #fcfcfc;
  padding: 15px 30px;
}

#pasmo .p-benefit-block__images {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#pasmo .p-benefit-block__image {
  width: 40%;
}

#pasmo .p-benefit-block__image:first-child {
  margin-right: 5.6%;
}

#pasmo .p-benefit-btn {
  margin: 20px auto;
  width: 300px;
  height: 60px;
}

#pasmo .p-benefit-facility-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

#pasmo .p-benefit-facility {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}

#pasmo .p-benefit-facility__block {
  width: 47.2%;
}

#pasmo .p-benefit-facility__block:first-child {
  margin-right: 5.6%;
}

#pasmo .p-benefit-facility__block--grid1 {
  width: 100%;
  margin-right: 0;
}

#pasmo .p-benefit-facility__block-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

#pasmo .p-benefit-facility__area-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

#pasmo .p-benefit-facility__area {
  width: 120px;
  min-width: 120px;
  padding-right: 20px;
  font-weight: bold;
}

#pasmo .p-benefit-facility__link {
  margin-bottom: 10px;
  line-height: 1.3;
}

#pasmo .p-benefit-facility__link:last-child {
  margin-bottom: 0;
}

#pasmo .txtS,
#specialplan .txtS {
  font-size: 12px;
}

#pasmo .pasmo-red{
 color:#da0f00;
}
#pasmo .p-benefit-news.merit{
 margin-bottom:0;
}

#pasmo .p-benefit-pasmo-block__inner{
 padding:40px 30px 15px;
}
@media screen and (max-width: 768px){
  #pasmo .p-benefit-pasmo-block__inner{
   padding:15px;
  }

}

/* ----pasmo -----*/
#pasmo .u-indent-1 {
    display: block;
    margin-left: 1em;
    text-indent: -1em;
    padding-left: 0;
}
#pasmo.c-line-height{
 line-height:1.6;
}
#pasmo .p-benefit-block__title.p-benefit--pink{
 background-color:#f171ab;
 color:#ffffff;
}
#pasmo .p-benefit-block__title.p-benefit--orange{
 background-color:#f47921;
 color:#ffffff;
}
#pasmo .p-benefit-block__title.p-benefit--navyblue{
 background-color:#0b3e75;
 color:#ffffff;
}

#pasmo h2.c-heading__title {
    line-height: 0.4em;
}

@media screen and (max-width: 768px){
 #pasmo .p-benefit-block__title {
   padding: 15px;
   font-size: 16px;
 }
  #pasmo h2.c-heading__title {
    line-height: 1em;
 }

}
/* sns guideline sp */
@media screen and (max-width: 768px){
   .p-snsguide-operation__text dd {
    margin-left: 12px;
    }
   .p-snsguide-operation__text dd a{
    position:static;
    line-height: 1.4;
   }
   .p-snsguide-operation--absolute {
    top: -2px;
    display: inline-block;
    position: static;
   }
}



/* ir top */
/* ------------------------------------ */
.sp-only{
 display:none;
}
.pc-only{
 display:block;
}
@media screen and (max-width: 768px){
 .sp-only{
  display:block;
 }
 .pc-only{
  display:none;
 }
}

.p-ir-nav__item{
 border-radius: 10px;
 background: #dcebf5;
}

@media screen and (max-width: 768px){
 .p-ir-nav__item{
  background: none;
  }
 .p-ir-top-link{
  display:block;
 }
.p-ir-top-link .c-btn4{ 
 width:100%;
 }
 .p-ir-top-link .c-btn4 a{ 
 display:inline-block;
 width: auto;
 }
 .p-ir-top-link .c-btn4.inline a{
 width:100%;
 }

}

.p-ir-nav__item .p-ir-nav_link_box{
 display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  background-color: #dcebf5;
}



.p-ir-nav__item .p-ir-nav_link_box .p-ir-link_list{
 padding:0 30px 10px;
 font-size:14px;
}

@media screen and (max-width: 768px){
 .p-ir-nav__item .p-ir-nav_link_box .p-ir-link_list{
  padding:0 15px 10px;
  display:none;
  }
}
.c-btn-ir_material{
 margin:auto;
}


.p-ir-nav.ir-top-link:after{
 content:"";
 display:block;
 width:48%;
 margin-right:0;
}

@media screen and (max-width: 768px){
 .p-ir-nav.ir-top-link:after{
  content:none;
 }

}


.p-ir-nav__content.ir-nav_list_pd{
  padding: 20px 30px;
  min-height: initial;
}

@media screen and (max-width: 768px){
 .p-ir-nav__content.ir-nav_list_pd{
   padding: 15px;
  }
  .p-ir-nav__content.ir-nav_list_pd a{
   /* pointer-events:none;*/
  }
}

.p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title a{
 overflow:initial;
 line-height: 1.2;
 width: auto;
 display: inline-block;
 width: 88%;
}
.ir-en .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title a{
 width: 94%;
}
.p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title:after{
 
}
.p-ir-link_list .p-ir-link_list_ul{
 /* padding-left:10px; */
} 

.p-ir-link_list .p-ir-link_list_ul li{
 margin-bottom:12px;
 
}
.p-ir-link_list .p-ir-link_list_ul li a{
 overflow:initial;
 line-height:1.4;
}

.p-ir-link_list .p-ir-link_list_ul li a:hover,
.p-ir-link_list .p-ir-link_list_ul li a:focus {
  text-decoration: underline;
}

@media screen and (max-width: 768px){
 /* .p-ir-nav.ir-top-link .p-ir-nav__item .p-ir-nav_link_box{
  background:none;
 } 
 .p-ir-nav.ir-top-link .p-ir-nav__item{
  background-color: #dcebf5;
  border-radius: 10px;
 }*/
 
 
 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width:100%;
 }
.p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title:after{
  background-image:none;
  content:none;
 }
 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span{
  display: inline-block;
  float: right;
  position: relative;
  right: 0;
  width: 14px;
  height: 14px;
 }
 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span:before,
 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span:after {
   content: "";
   display: block;
   position: absolute;
   top: 50%;
   right: -4px;
   width: 14px;
   height: 2px;
   background-color: #007ac5;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
   -webkit-transition: 250ms ease-out;
   transition: 250ms ease-out;
 }

 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span:after {
   -webkit-transform: rotate(90deg) translateX(-1px);
   -ms-transform: rotate(90deg) translateX(-1px);
   transform: rotate(90deg) translateX(-1px);
 }

 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span.is-active:before {
   -webkit-transform: rotate(-180deg) translateX(0px) translateY(-50%);
   -ms-transform: rotate(-180deg) translateX(0px) translateY(-50%);
   transform: rotate(-180deg) translateX(0px) translateY(-50%);
 }

 .p-ir-nav__content.ir-nav_list_pd .p-ir-nav__title span.is-active:after {
   -webkit-transform: rotate(0deg) translateX(0px) translateY(0);
   -ms-transform: rotate(0deg) translateX(0px) translateY(0);
   transform: rotate(0deg) translateX(0px) translateY(0);
 }
 
 .hight63{
  height:63px;
 }

}

.p-ir-nav__item.background-no{
 background:none;
}

.p-ir-nav__item.background-no a{
 height:auto;
}

/* 2023eir
-------------------- */
.eir_en .p-news-item__date{
     width: 165px;

}
@media screen and (max-width: 768px){
 .eir_en .p-news-item__date{
      width: auto;

 }

}

/* 2023 location
---------------------------- */
.p-top-banner-list{
 flex-wrap: wrap;
}
.p-top-banner-list li:last-child{
 margin-top:10px;
}
@media screen and (max-width: 768px){
 .p-top-banner-list li:last-child{
   margin-top:0;
 }
}
.c-gnav__accordion-wrap#group-banner{
 margin-top: -150px
}

/* 2023 esg data
---------------------------- */
.p-benefit-table .t-bb-top{
 border-top: 2px solid #a1a1a1;
}
.p-benefit-table .t-bb-right{
 border-right: 2px solid #a1a1a1;
}
.p-benefit-table .t-bb-left{
 border-left: 2px solid #a1a1a1;
}
.p-benefit-table .t-bb-bottom{
 border-bottom: 2px solid #a1a1a1;
}

/* 2024.6
------------------------------- */
@media screen and (max-width: 768px){
  #experience_creation .p-sustainability-nav ul{
   flex-wrap:wrap;
   
  }
  #experience_creation .p-sustainability-nav ul li:nth-of-type(2){
   width: 60%;
  }
}

#experience_creation .p-topics-detail__image img{
 margin-bottom:8px;
}
#experience_creation .p-topics-detail__image img:last-child{
 margin-bottom:0;
}

#experience_creation .p-sustainability-box {
    background-color: #eef2f5;
}
#experience_creation .c-title3.c-title {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 10px;
    display:block;
    width:100%;
}

#experience_creation .c-link.c-link-line2 .c-icon-blank{
 height: auto;
 
}
 @media screen and (max-width: 768px) {
   #human_capital .p-sustainability-nav ul{
    flex-wrap:wrap;
   }
   #human_capital .p-sustainability-nav ul li{
     flex-grow:1;
   }
   #human_capital .p-sustainability-nav ul li:nth-of-type(3){
     width:100%;
   }
   #human_capital .p-sustainability-box__grid-image{
    margin-bottom:10px;
   }
 }

#management h4 .p-sustainability-block__text{
 font-size:32px;
}

  @media screen and (max-width: 768px) {
   #management h4 .p-sustainability-block__text{
    font-size:17px;
   }
  }
#management .p-step__block.step-3-outer{
 display: block;
}
#management .p-step__block.step-3{
 padding:10px 0;
 margin-bottom:30px;
}

#management .p-step__block.step-3-none:after{
 content:none;
}

#management .p-step__block--img{
 margin-bottom:30px;
}

#management .img_sustainability_management_step3{
 border:1px solid #ccc;
}

#management .step-block{
 padding:0 18px;
}
#management .step-block.no-padding{
 padding:0;
}

@media screen and (max-width: 768px) {
  #management .step-block{
   padding:0 15px;
  }
}

#management .step-circle-0 {
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background: #999999;
    border-radius: 50%;
    margin: 0 5px 4px 4px;
    padding: 2px;
}
#management .step-circle-0 span{
 border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    width: 100%;
    height: 100%;
}


#management .step-block .p-step__text{
 font-size:14px;
 margin-bottom:0;
}
#management .step-block .step-arrow{
 display:block;
 margin:0 auto 20px;
 max-width:60px;
 width:100%;
}
#management .step-block .step-block-ul{
 display:flex;
 flex-wrap: wrap;
 margin-top: 20px;
 font-size:14px;
}
#management .step-block .step-block-ul li{
 margin-bottom:15px;
}
#management .step-block .step-block-ul li:nth-of-type(1),
#management .step-block .step-block-ul li:nth-of-type(4),
#management .step-block .step-block-ul li:nth-of-type(6)
{
 width:30%;
}
#management .step-block .step-block-ul li:nth-of-type(2),
#management .step-block .step-block-ul li:nth-of-type(5)
{
 width:40%;

}
@media screen and (max-width: 768px) {
 #management .step-block .step-block-ul li{
  margin-bottom:10px;
 }
 #management .step-block .step-block-ul li:nth-of-type(1),
 #management .step-block .step-block-ul li:nth-of-type(2),
 #management .step-block .step-block-ul li:nth-of-type(3),
 #management .step-block .step-block-ul li:nth-of-type(4),
 #management .step-block .step-block-ul li:nth-of-type(5),
 #management .step-block .step-block-ul li:nth-of-type(6){
  width:100%;
 }
}

#management .step-block .step-block-ul .step-circle{
 display: inline-block;
 vertical-align: middle;
 width: 18px;
 height: 18px;
 background: #ccc;
 border-radius: 50%;
 margin: 0 5px 4px 4px;
 color:#fff;
 text-align: center;
 font-weight: bold;
 line-height: 1;
 padding-top: 2px;
}
#management .step-block .step-block-ul .step-circle-1{
 background: #8fc320;
}
#management .step-block .step-block-ul .step-circle-2{
 background: #f29700;
}
#management .step-block .step-block-ul .step-circle-3{
 background: #c1ad4a;
}
#management .step-block .step-block-ul .step-circle-4{
 background: #009de2;
}
#management .step-block .step-block-ul .step-circle-5{
 background: #ec6d82;
}
#management .step-block .step-block-ul .step-circle-6{
 background: #a688be;
}
#management .step-3-sub{
 background:#fff;
 padding:15px;
 border:1px solid #ccc;
}
#management .p-step__block-sub{
 display:block;
 position: relative;
 margin-bottom: 54px;
}
#management .p-step__block-sub:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 15px solid #007ac5;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
@media screen and (max-width: 768px) {
 #management .p-step__block-sub{
 margin-bottom: 40px;
}
 #management .p-step__block-sub:after {
  top: calc(100% + 10px);
        border-top: 10px solid #007ac5;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
 }
}
#management .p-step__block-step3-mb{
 margin-bottom:20px;
}
#management .li-step3-padding{
 padding:0 20px;
}

@media screen and (max-width: 768px) {

  #management .li-step3-padding{
   padding:0 10px;
  }
 
}

/* 2024.6 en */
.p-sustainability-nav.human_capital-en  ul li{
  max-width:initial;
}
#management .step-block .step-3-sub-en .step-block-ul li{
 display:table;
}
#management .step-block .step-3-sub-en .step-block-ul li > span:first-child{
 display:table-cell;
 width:27px;
}

#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(1),
#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(2),
#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(3),
#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(4),
#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(5),
#management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(6)
{
 width: 33%;
}
@media screen and (max-width: 768px) {
  h4.p-sustainability-block-title--en{
    flex-wrap: nowrap;
    
  }
  .p-sustainability-block-title--en .p-sustainability-block-title__number{
   width:18%;
  }
  .p-sustainability-block-title--en .p-sustainability-block__text{
   width:82%;
   line-height: 1.2;
   padding: 10px 0;
  }
  
  .p-sustainability-nav.human_capital-en  ul li{
    width: calc(100% / 2);
   }
 .p-sustainability-nav.human_capital-en  ul:last-of-type li{
    width: 100%;
   }
  #human_capital .p-sustainability-box__grid-image:last-child{
    margin-bottom:10px;
  }
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(1),
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(2),
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(3),
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(4),
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(5),
  #management .step-block .step-3-sub-en .step-block-ul li:nth-of-type(6)
  {
   width: 100%;
  }
}

/* top spc
------------------------------ */
.top-scp{
  margin:0;
}

.top-scp a{
 display:block;
 max-width:880px;
 width:100%;
 margin:auto;
 transition: 250ms ease-out;
}
.top-scp a:hover{
 opacity:0.7;
}

.p-bottom-banner__banner img.u-only-pc{
 max-width:380px;
}

@media screen and (max-width: 768px) {
.top-scp{
 padding-left: 17px;
 padding-right: 17px;
 }
.top-scp a{
 display:block;
 max-width:400px;
 }

}
/* service spc
------------------------------ */
.service-spc-card_banner a{
 transition: 250ms ease-out;
}
.service-spc-card_banner a:hover{
 opacity:0.7;
}
@media screen and (max-width: 768px) {
 .p-bottom-banner.u-only-pc.is-active {
   display: none;
 }
}
