/*======================================
    font
======================================*/
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 10px;
  font-family: "Noto sans JP", sans-serif;
  color: #231815;
}

body {
  background-color: #fff;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.is-nowrap {
  white-space: nowrap;
}

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

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
.container {
  overflow: hidden;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .container {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 767px) {
  .container {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}

.inner {
  max-width: 67.5em;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 86.67%;
    max-width: 31.25em;
  }
}

/*======================================
    section
======================================*/
.section-ttl {
  font-size: 3.375em;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 1.375em;
  }
}
.section-ttl span.line {
  font-size: 1.19em;
}
.section-ttl img {
  width: auto;
  height: 1em;
}

.section-text {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.75;
  font-feature-settings: "palt";
}

/*======================================
    button
======================================*/
.button01 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.7142857143;
  text-align: center;
  max-width: 20.93em;
  width: 100%;
  background-color: #fff;
  height: 5.57em;
  border-radius: 3em;
  border: 1px solid #231815;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button01 {
    font-size: 0.8125em;
    max-width: 16.3em;
    height: 4.3em;
  }
}
.button01:hover {
  opacity: 0.7;
}
.button01:hover::before {
  transform: translate(calc(0.25em + 50%), -50%);
}
.button01::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 4.7em;
  height: 0.5em;
  background: url(../img/icon_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .button01::before {
    right: 0.5em;
  }
}
.button01 span.link {
  font-weight: inherit;
  display: inline-block;
  position: relative;
}
.button01 span.link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(150%, -50%);
  width: 0.86em;
  height: 0.86em;
  background: url(../img/icon_link.svg) no-repeat center/contain;
}
.button01.coming-soon {
  background-color: #c8c8c8;
  color: #828282;
  border-color: #b4b4b4;
}
.button01.coming-soon::before {
  display: none;
}

/*======================================
    post list
======================================*/
.post-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.post-list:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.post-list__link {
  display: grid;
  grid-template-columns: 8.125em 13.5em auto;
  align-items: center;
  padding-right: 3.125em;
  position: relative;
  min-height: 6.2em;
  padding: 0.625em 3.125em 0.625em 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .post-list__link {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.25em;
    min-height: 6.75em;
    align-items: start;
    padding-top: 1.25em;
  }
}
.post-list__link:hover {
  opacity: 0.7;
}
.post-list__link:hover::before {
  transform: translate(0.25em, -50%);
}
.post-list__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875em;
  transform: translateY(-50%);
  width: 1.1875em;
  height: 0.5em;
  background: url(../img/post_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .post-list__link::before {
    right: 0;
  }
}

.post-list__date,
.post-list__title {
  font-size: 0.8125em;
  line-height: 1.75;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  font-weight: 500;
}

.post-list__date {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .post-list__date {
    padding-left: 0;
  }
}

.post-list__cats {
  padding-right: 1em;
}

.post-cats {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.625em;
  row-gap: 0.2em;
}

.post-cat {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  height: 3.167em;
  padding: 0 2.25em;
  border-radius: 5em;
  background-color: #ccc;
}
@media screen and (max-width: 767px) {
  .post-cat {
    height: 2.33em;
    padding: 0 1em;
  }
}
.post-cat.-coiu {
  background-color: rgba(248, 171, 140, 0.5);
}
.post-cat.-soranotan {
  background-color: rgba(170, 219, 252, 0.5);
}
.post-cat.-energy {
  background-color: rgba(162, 225, 147, 0.5);
}

@media screen and (max-width: 767px) {
  .post-list__title {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
}

.h__inner {
  display: flex;
  column-gap: 0.625em;
  padding: 2em 1.875em 2em 3.125em;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .h__inner {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  .h__inner {
    padding: 0.625em 0.625em 0.625em 1.5em;
  }
}

.h__logo {
  width: 29.25em;
  display: block;
  transition: opacity 0.3s ease;
}
.h__logo.-hide {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .h__logo {
    width: 11.75em;
  }
}
.h__logo a {
  display: block;
}

.h__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.h__contact {
  display: flex;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: "palt";
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #231815;
  height: 3.57em;
  width: 9.29em;
  border-radius: 5em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .h__contact {
    font-size: 0.5em;
  }
}
.h__contact:hover {
  background-color: #231815;
  color: #fff;
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.h__drawer--icon {
  width: 3.625em;
  height: 3.625em;
  margin-left: 1.75em;
  background: url(../img/icon_drawer_black.svg) no-repeat center/contain;
}
.h__drawer--icon.-white {
  background-image: url(../img/icon_drawer_white.svg);
}
.h__drawer--icon.hide {
  visibility: hidden;
}
.h__drawer--icon:hover {
  animation: iconRotate 0.5s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .h__drawer--icon {
    margin-left: 1em;
    width: 2.125em;
    height: 2.125em;
  }
}
.h__drawer--icon:hover {
  cursor: pointer;
}

.drawer-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: url(../img/drawer_bg.jpg) no-repeat center/cover;
  z-index: 200;
  padding: 7.625em 0 2.5em;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer-contents {
    padding-top: 3.75em;
  }
}
.drawer-contents::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  max-height: 67.5em;
}
.drawer-contents .inner {
  max-width: 37.5em;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
.drawer-contents.active {
  opacity: 1;
  visibility: visible;
}

.drawer-list:nth-child(n+2) {
  margin-top: 3.125em;
}
@media screen and (max-width: 767px) {
  .drawer-list:nth-child(n+2) {
    margin-top: 1.5em;
  }
}

.drawer-list__link {
  display: block;
  font-size: 0.8125em;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  line-height: 1.5384615385;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer-list__link {
    font-size: 0.75em;
  }
}
.drawer-list__link:hover {
  opacity: 0.7;
}
.drawer-list__link .en {
  display: block;
  font-size: 1.85em;
}
@media screen and (max-width: 767px) {
  .drawer-list__link .en {
    font-size: 1.75em;
  }
}
.drawer-list__link .en span.line {
  font-size: 1.19em;
}
.drawer-list__link .en img {
  width: auto;
  height: 1em;
}

.drawer-close {
  position: fixed;
  top: 1.75em;
  right: 1.5em;
  width: 3.5em;
  height: 3.5em;
  z-index: 500;
}
@media screen and (max-width: 767px) {
  .drawer-close {
    width: 1.75em;
    height: 1.75em;
    top: 1em;
    right: 1.25em;
  }
}
.drawer-close.hide {
  opacity: 0;
  visibility: hidden;
}

.footer {
  padding: 4.5em 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 3.5em 0;
  }
}

.f__links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.75em;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .f__links {
    flex-direction: column;
    align-items: center;
    row-gap: 1.2em;
  }
}

.f__link a {
  font-size: 0.9375em;
  letter-spacing: 0.25em;
  line-height: 1.7333333333;
  font-feature-settings: "palt";
  display: block;
  transition: opacity 0.3s ease;
}
.f__link a:hover {
  opacity: 0.7;
}

.f__logo {
  display: block;
  max-width: 18em;
  margin: 5.5em auto 0;
}
@media screen and (max-width: 767px) {
  .f__logo {
    max-width: 15em;
    margin-top: 4.25em;
  }
}

.f__copy {
  margin-top: 2.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f__copy {
    margin-top: 2em;
  }
}
.f__copy small {
  font-size: 0.875em;
  letter-spacing: 0.25em;
  line-height: 1.75;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .f__copy small {
    font-size: 0.6875em;
    letter-spacing: 0.06em;
    margin: 0 -2em;
  }
}

.fv-swiper-slide {
  aspect-ratio: 1920/1080;
}
@media screen and (max-width: 767px) {
  .fv-swiper-slide {
    aspect-ratio: 375/600;
    max-height: 37.5em;
  }
}
.fv-swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.t-about {
  margin-top: 11.25em;
}
@media screen and (max-width: 767px) {
  .t-about {
    margin-top: 2.75em;
  }
}

.t-about__lead {
  max-width: 44.375em;
  margin-top: 4.5em;
}
@media screen and (max-width: 767px) {
  .t-about__lead {
    margin-top: 1.75em;
    max-width: 20.3125em;
  }
}

.t-about__sublead {
  max-width: 57.1875em;
  margin-top: 3.2em;
}
@media screen and (max-width: 767px) {
  .t-about__sublead {
    margin-top: 1.5em;
    max-width: 20em;
  }
}

.t-about__text {
  font-size: 0.9375em;
  line-height: 2;
  letter-spacing: 0.125em;
  font-feature-settings: "palt";
  margin-top: 2em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .t-about__text {
    font-size: 0.8125em;
    line-height: 1.8461538462;
    margin-top: 1.5em;
  }
}

.t-about__img {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .t-about__img {
    margin-top: 1.5em;
  }
}

.t-about__note {
  margin-top: 1.5em;
}
.t-about__note dt, .t-about__note dd {
  font-feature-settings: "palt";
}
.t-about__note dt {
  font-size: 0.75em;
  line-height: 1.75;
}
.t-about__note dd {
  font-size: 0.8125em;
  line-height: 1.8461538462;
  letter-spacing: 0.125em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .t-about__note dd {
    font-size: 0.6875em;
    line-height: 1.7272727273;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
}

.t-about__button {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .t-about__button {
    margin-top: 2.3em;
  }
}

.t-about__links {
  display: flex;
  justify-content: center;
  column-gap: 2em;
  margin-top: 4.5em;
}
@media screen and (max-width: 767px) {
  .t-about__links {
    flex-direction: column;
    row-gap: 1.85em;
    margin-top: 3.5em;
  }
}

.t-about__link {
  width: 15.25em;
  display: grid;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .t-about__link {
    width: 100%;
    max-width: 13.25em;
    margin-left: auto;
    margin-right: auto;
  }
}

.t-about__link--img {
  grid-column: 1/2;
  grid-row: 1/2;
  padding-bottom: 2.25em;
}
@media screen and (max-width: 767px) {
  .t-about__link--img {
    width: 95.28%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2em;
  }
}

.t-about__link--button {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 0.8125em;
  height: 4.46em;
  width: 89.3%;
}
@media screen and (max-width: 767px) {
  .t-about__link--button {
    font-size: 0.75em;
    height: 4.67em;
    width: 100%;
    max-width: 100%;
    letter-spacing: 0.14em;
    font-feature-settings: "palt";
  }
}

.t-report {
  margin-top: 10em;
}
@media screen and (max-width: 767px) {
  .t-report {
    margin-top: 5.25em;
  }
}

.t-report__ttl {
  font-size: 0.8125em;
  line-height: 2.0769230769;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .t-report__ttl {
    letter-spacing: 0.125em;
    line-height: 1.8461538462;
    margin-top: 1em;
  }
}

.t-report__text {
  font-size: 0.9375em;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  .t-report__text {
    font-size: 0.8125em;
    line-height: 1.8461538462;
    letter-spacing: 0.125em;
    margin-top: 1.5em;
  }
}

.t-report__topic {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .t-report__topic {
    font-size: 0.9375em;
    letter-spacing: 0.2em;
    line-height: 1.8;
    margin-top: 3em;
  }
}

.report-swiper__wrap {
  margin-top: 1.5em;
  position: relative;
}

.report-swiper-pagination {
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: unset;
  left: unset;
  transform: translate(0, calc(-100% - 2em));
  color: #fff;
  width: 1.875em;
  height: 1.875em;
}
.report-swiper-pagination::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 2em;
  height: 1px;
  background-color: #231815;
}
.report-swiper-pagination .swiper-pagination-current,
.report-swiper-pagination .swiper-pagination-total {
  font-size: 13px;
  display: inline-block;
  color: #231815;
  position: absolute;
}
.report-swiper-pagination .swiper-pagination-current {
  top: 0;
  left: 0;
}
.report-swiper-pagination .swiper-pagination-total {
  bottom: 0;
  right: 0;
}

.report-swiper {
  overflow: visible;
}

.report-swiper-slide__link {
  display: block;
  transition: opacity 0.3s ease;
}
.report-swiper-slide__link:hover {
  opacity: 0.7;
}
.report-swiper-slide__link:hover .report-swiper-slide__img img {
  transition: scale(1.05);
}

.report-swiper-slide__img {
  aspect-ratio: 1080/576;
  border-radius: 1.25em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .report-swiper-slide__img {
    border-radius: 0.375em;
  }
}
.report-swiper-slide__img.-bg {
  background-color: #ccc;
}
.report-swiper-slide__img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.report-swiper-slide__img .noimage {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.report-swiper-slide__img .noimage img {
  height: auto;
}

.report-swiper-slide__body {
  margin-top: 1em;
  display: flex;
  column-gap: 1.25em;
  row-gap: 0.85em;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .report-swiper-slide__body.pc-row {
    flex-direction: row;
  }
  .report-swiper-slide__body.pc-row .report-swiper-slide__note {
    margin-left: 0;
    align-items: start;
  }
  .report-swiper-slide__body.pc-row .report-swiper-slide__more {
    text-align: right;
    margin-top: 0.75em;
    margin-left: auto;
  }
}

.report-swiper-slide__texts {
  flex: 1;
}

.report-swiper-slide__head {
  font-size: 0.75em;
  letter-spacing: 0.125em;
  line-height: 2.5;
  display: flex;
  column-gap: 0.75em;
}

.report-swiper-slide__cats li {
  padding-left: 1em;
  position: relative;
}
.report-swiper-slide__cats li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25em;
  background-color: #231815;
}

.report-swiper-slide__note {
  width: 3.33em;
  margin-left: auto;
  align-items: flex-end;
}

.report-swiper-slide__title {
  font-size: 0.9375em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin-top: 0.25em;
}

.report-swiper-slide__more {
  font-size: 0.6875em;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding-right: 3em;
  position: relative;
  align-self: start;
  text-align: left;
  display: inline-block;
  margin-left: 0;
  margin-top: 0;
}
.report-swiper-slide__more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  width: 2em;
  height: 0.75em;
  background: url(../img/icon_arrow_short.svg) no-repeat center/contain;
}

.t-report__button {
  margin-top: 4.5em;
}
@media screen and (max-width: 767px) {
  .t-report__button {
    margin-top: 4em;
  }
}

.t-innovation {
  margin-top: 10.25em;
}
@media screen and (max-width: 767px) {
  .t-innovation {
    margin-top: 6.6em;
  }
}

.t-innovation__title--sp {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .t-innovation__title--sp {
    display: none;
  }
}

.t-innovation__lead {
  font-size: 0.9375em;
  letter-spacing: 0.2em;
  line-height: 1.8;
  font-feature-settings: "palt";
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .t-innovation__lead {
    font-size: 0.8125em;
    letter-spacing: 0.125em;
    line-height: 1.8461538462;
    margin-top: 1.5em;
  }
}

.t-innovation__wrap {
  height: 50.625em;
  position: relative;
  margin-top: 2.5em;
}
@media screen and (max-width: 767px) {
  .t-innovation__wrap {
    margin-top: 0.25em;
  }
}

.t-innovation__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 2.75em;
}

.t-innovation__button {
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .t-innovation__button {
    margin-top: 4.5em;
  }
}

.t-innovation__lists--wrap {
  aspect-ratio: 2186/810;
  width: 136.625em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-card-left {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes infinity-card-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  30% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  50% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  60% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  70% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  90% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.flow-direction-left {
  animation-name: infinity-scroll-left;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.t-innovation__lists {
  position: relative;
  height: 100%;
  flex-shrink: 0;
  width: 136.625em;
}

.t-innovation__list {
  text-align: center;
  width: 23em;
  aspect-ratio: 368/194;
  color: #fff;
  position: absolute;
}
.t-innovation__list:nth-child(odd) .t-innovation__list--contents,
.t-innovation__list:nth-child(odd) .t-innovation__list--link {
  animation-name: infinity-card-right;
}
.t-innovation__list:nth-child(even) .t-innovation__list--contents,
.t-innovation__list:nth-child(even) .t-innovation__list--link {
  animation-name: infinity-card-left;
}
.t-innovation__list:nth-child(3n) .t-innovation__list--contents,
.t-innovation__list:nth-child(3n) .t-innovation__list--link, .t-innovation__list:nth-child(7n) .t-innovation__list--contents,
.t-innovation__list:nth-child(7n) .t-innovation__list--link {
  animation-name: infinity-card-right;
}
.t-innovation__list:nth-child(5) .t-innovation__list--contents,
.t-innovation__list:nth-child(5) .t-innovation__list--link, .t-innovation__list:nth-child(10) .t-innovation__list--contents,
.t-innovation__list:nth-child(10) .t-innovation__list--link, .t-innovation__list:nth-child(13) .t-innovation__list--contents,
.t-innovation__list:nth-child(13) .t-innovation__list--link {
  background-image: url(../img/co-innovation_bg_gray.svg);
}
.t-innovation__list:nth-child(3) .t-innovation__list--contents,
.t-innovation__list:nth-child(3) .t-innovation__list--link, .t-innovation__list:nth-child(8) .t-innovation__list--contents,
.t-innovation__list:nth-child(8) .t-innovation__list--link, .t-innovation__list:nth-child(9) .t-innovation__list--contents,
.t-innovation__list:nth-child(9) .t-innovation__list--link {
  background-image: url(../img/co-innovation_bg_lightgray.svg);
}
.t-innovation__list.-bg .t-innovation__list--contents,
.t-innovation__list.-bg .t-innovation__list--link {
  background-image: url(../img/co-innovation_bg_color.png) !important;
  color: #231815;
}
.t-innovation__list.-bg:hover {
  animation: puyon 0.7s linear 0s 1;
}
.t-innovation__list:nth-child(1) {
  scale: 0.8315217391;
  top: 20%;
  left: -0.75%;
}
.t-innovation__list:nth-child(2) {
  scale: 0.8260869565;
  top: 1%;
  left: 14.5%;
}
.t-innovation__list:nth-child(3) {
  scale: 0.9048913043;
  top: 24.5%;
  left: 19%;
}
.t-innovation__list:nth-child(4) {
  scale: 1;
  top: 54%;
  left: 15.25%;
}
.t-innovation__list:nth-child(5) {
  scale: 0.8206521739;
  top: 70.25%;
  left: 7%;
}
.t-innovation__list:nth-child(6) {
  scale: 0.8423913043;
  top: 10%;
  left: 34.25%;
}
.t-innovation__list:nth-child(7) {
  scale: 0.75;
  top: 45%;
  left: 31.75%;
}
.t-innovation__list:nth-child(8) {
  scale: 0.9673913043;
  top: 79%;
  left: 28%;
}
.t-innovation__list:nth-child(9) {
  top: 2%;
  left: 53.25%;
}
.t-innovation__list:nth-child(10) {
  scale: 0.8967391304;
  top: 29.5%;
  left: 49%;
}
.t-innovation__list:nth-child(11) {
  scale: 0.902173913;
  top: 69.5%;
  left: 43%;
}
.t-innovation__list:nth-child(12) {
  scale: 0.9076086957;
  top: 7.5%;
  left: 71.75%;
}
.t-innovation__list:nth-child(13) {
  scale: 0.7391304348;
  top: 33.25%;
  left: 67.25%;
}
.t-innovation__list:nth-child(14) {
  scale: 0.7663043478;
  top: 52.5%;
  left: 57.75%;
}
.t-innovation__list:nth-child(15) {
  scale: 1;
  top: 25%;
  left: 83.75%;
}
.t-innovation__list:nth-child(16) {
  scale: 1.222826087;
  top: 61%;
  left: 77.75%;
}
.t-innovation__list:nth-child(17) {
  scale: 0.8423913043;
  top: 78.5%;
  left: 62.25%;
}

.t-innovation__list--contents,
.t-innovation__list--link {
  display: block;
  padding: 1em 0.5em;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background: url(../img/co-innovation_bg_light.svg) no-repeat center/contain;
  animation-duration: 75s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

.t-innovation__list--link {
  position: relative;
  overflow: hidden;
}
.t-innovation__list--link:hover::before {
  transform: scale(1.5);
}
.t-innovation__list--link::before {
  content: "";
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  width: 0.625em;
  height: 0.625em;
  background: url(../img/icon_link_white.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}
.t-innovation__list--link:after {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 300ms;
  opacity: 0;
}

.t-innovation__list--ttl {
  font-size: 1.625em;
  font-weight: 500;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
}

.t-innovation__list--lead {
  font-size: 0.9375em;
  line-height: 1.6;
  font-feature-settings: "palt";
}

.t-innovation__list--text {
  font-size: 0.8125em;
  line-height: 1.8461538462;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-top: 1em;
}

.t-bg {
  width: 100%;
  height: 49.1875em;
  overflow: hidden;
  position: relative;
  margin-top: 10.5em;
}
@media screen and (max-width: 767px) {
  .t-bg {
    height: 15.5em;
    margin-top: 6.5em;
  }
}

.t-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
.t-bg__img img {
  display: block;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 90.25em;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .t-bg__img img {
    height: 17.5em;
  }
}

.t-info {
  margin-top: 9em;
}
@media screen and (max-width: 767px) {
  .t-info {
    margin-top: 3.75em;
  }
}

.t-posts {
  margin-top: 5.5em;
}
@media screen and (max-width: 767px) {
  .t-posts {
    margin-top: 2.2em;
  }
}

.t-posts__button {
  margin-top: 4em;
}
@media screen and (max-width: 767px) {
  .t-posts__button {
    margin-top: 3em;
  }
}

.member {
  position: relative;
  margin-top: 10em;
  padding-top: 9.5em;
  padding-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .member {
    margin-top: 7.75em;
    padding-top: 4.25em;
    padding-bottom: 4em;
  }
}

.member__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.member__bg img {
  height: 100%;
  object-fit: cover;
}

.member-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5em;
  row-gap: 3.125em;
  margin-top: 5.5em;
}
@media screen and (max-width: 767px) {
  .member-lists {
    grid-template-columns: 1fr;
    margin-top: 4em;
    row-gap: 2.75em;
  }
}

.member-list {
  display: grid;
  grid-template-columns: 14.625em auto;
  column-gap: 1.875em;
}
@media screen and (min-width: 768px) {
  .member-list {
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .member-list {
    column-gap: 1.25em;
    grid-template-columns: 10em auto;
  }
}
@media screen and (max-width: 767px) {
  .member-list {
    grid-template-columns: 10.1875em auto;
  }
}

.member-list__img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ccc;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .member-list__img {
    grid-column: 1/2;
    grid-row: 1/4;
  }
}
.member-list__img img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .member-list__img {
    grid-column: 1/2;
    grid-row: 1/2;
    max-width: 11.5em;
  }
}

.member-list__head {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .member-list__head {
    grid-column: 2/3;
    grid-row: 1/2;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .member-list__head {
    max-width: 10.1875em;
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
  }
}

.member-list__name {
  font-size: 0.8125em;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
  margin-top: 1.5em;
}
.member-list__name .lg {
  line-height: 1;
  font-size: 1.62em;
  display: block;
}

.member-list__from {
  font-size: 0.75em;
  line-height: 1.4166666667;
  font-feature-settings: "palt";
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .member-list__body {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .member-list__body {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 0.25em;
  }
}

.member-list__text {
  font-size: 0.75em;
  font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.75;
  margin-top: 1em;
}

.member-list__tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25em;
  row-gap: 0.2em;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .member-list__tags {
    margin-top: 0.8em;
  }
}

.member-list__tag {
  font-size: 0.5625em;
  display: flex;
  align-items: center;
  height: 2.67em;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 0 1em;
  border-radius: 3em;
}

.t-message {
  padding-top: 9.5em;
  padding-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .t-message {
    padding-top: 4.25em;
    padding-bottom: 4em;
  }
}

.message-swiper {
  margin-top: 7.5em;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .message-swiper {
    margin-top: 2.5em;
  }
}
.message-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.t-message-swiper-slide {
  width: fit-content;
}

.message-cards {
  display: grid;
}
.message-cards.-top {
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 3.75em;
  row-gap: 4.375em;
}
.message-cards.-top .message-card {
  width: 31.25em;
}
@media screen and (max-width: 767px) {
  .message-cards.-top .message-card {
    width: 18.75em;
  }
}
.message-cards.-archive {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.75em;
  row-gap: 4.375em;
}
@media screen and (max-width: 767px) {
  .message-cards.-archive {
    grid-template-columns: 1fr;
  }
}

.message-card {
  padding-left: 1em;
  border-left: 1px solid #231815;
}

.message-card__head {
  display: grid;
  grid-template-columns: auto 11.25em;
  column-gap: 0.625em;
  margin-bottom: 2.5em;
}
@media screen and (max-width: 767px) {
  .message-card__head {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 1.25em;
  }
}

.message-card__company,
.message-card__name {
  font-size: 1.3125em;
  line-height: 1.5714285714;
  font-feature-settings: "palt";
  margin-top: -0.2857142857em;
}
@media screen and (max-width: 767px) {
  .message-card__company,
  .message-card__name {
    font-size: 1.25em;
  }
}

.message-card__logo {
  aspect-ratio: 180/62;
  background-color: lightgrey;
}
@media screen and (max-width: 767px) {
  .message-card__logo {
    margin-bottom: 0.625em;
    max-width: 11.25em;
  }
}
.message-card__logo img {
  height: 100%;
  object-fit: contain;
}

.message-card__person {
  margin-bottom: 1.25em;
  display: grid;
  grid-template-columns: 5.25em auto;
  column-gap: 1.25em;
}

.message-card__person--img {
  aspect-ratio: 84/80;
}
.message-card__person--img img {
  height: 100%;
  object-fit: cover;
}

.message-card__name--en {
  font-size: 0.8125em;
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
}

.message-card__person--text {
  font-size: 0.75em;
  line-height: 1.4166666667;
  font-feature-settings: "palt";
}

.message-card__text {
  font-size: 0.875em;
  line-height: 1.8571428571;
  font-feature-settings: "palt";
  text-align: justify;
}

.t-recruit {
  padding: 10em 0 6em;
  background-color: #f3f3f3;
}
@media screen and (max-width: 767px) {
  .t-recruit {
    padding: 4.75em 0 6.5em;
  }
}

/*======================================
    page common
======================================*/
.page {
  padding-top: 16.25em;
  padding-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .page {
    padding-top: 6.25em;
    padding-bottom: 3.125em;
  }
}

.page-posts {
  margin-top: 4.375em;
}
@media screen and (max-width: 767px) {
  .page-posts {
    margin-top: 2.5em;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.25em;
  row-gap: 0.5em;
  margin-top: 6.25em;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 4.375em;
  }
}
.pagination .page-numbers {
  font-size: 0.6875em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #231815;
  width: 2.73em;
  height: 2.73em;
}
.pagination .page-numbers.current {
  background-color: #231815;
  color: #fff;
}
.pagination .page-numbers.dots {
  border: none;
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers.dots {
    width: 1.5em;
  }
}
.pagination a {
  transition: opacity 0.3s ease;
}
.pagination a:hover {
  opacity: 0.7;
}

/*======================================
    archive report
======================================*/
.a-report-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.125em;
  row-gap: 3em;
}
@media screen and (max-width: 767px) {
  .a-report-cards {
    grid-template-columns: repeat(auto-fill, minmax(18.75em, 1fr));
    column-gap: 1.25em;
    row-gap: 2.625em;
  }
}

.a-report-card .report-swiper-slide__img {
  border-radius: 0.375em;
}

/*======================================
    archive co-innovation
======================================*/
.a-innovation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.125em;
  row-gap: 3.125em;
}
@media screen and (max-width: 767px) {
  .a-innovation-cards {
    grid-template-columns: repeat(auto-fill, minmax(18.75em, 1fr));
    row-gap: 3em;
    column-gap: 1.25em;
  }
}

.a-innovation-card {
  text-align: center;
  background: url(../img/co-innovation_bg_light.svg) no-repeat center/contain;
  aspect-ratio: 328/172;
}
@media screen and (max-width: 767px) {
  .a-innovation-card {
    width: 100%;
    max-width: 20.5em;
    margin-left: auto;
    margin-right: auto;
  }
}
.a-innovation-card.-bg .t-innovation__list--contents,
.a-innovation-card.-bg .t-innovation__list--link {
  background-image: url(../img/co-innovation_bg_color.png) !important;
}

.a-innovation-card__ttl {
  font-size: 1.4375em;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.7391304348;
}

.a-innovation-card__lead {
  font-size: 0.8125em;
  font-feature-settings: "palt";
  line-height: 1.6923076923;
}

.a-innovation-card__text {
  font-size: 0.75em;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin-top: 1em;
}

/*======================================
    single
======================================*/
.single__inner {
  max-width: 44.75em;
  margin-left: auto;
  margin-right: auto;
}

.article {
  margin: 6.25em 0;
}
@media screen and (max-width: 767px) {
  .article {
    margin: 5em 0;
  }
}

.s-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.875em;
  row-gap: 0.375em;
}

.s-head__date {
  padding-left: 0;
}

.s-ttl {
  font-size: 0.9375em;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.75;
  margin-top: 1.5em;
}

.s-eye {
  margin-top: 2.5em;
}
.s-eye img {
  height: auto;
}

.s-contents {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 2.3076923077;
  margin-top: 3.23em;
  font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .s-contents {
    font-size: 0.75em;
    line-height: 2.5;
    margin-top: 4.2em;
  }
}
.s-contents h2, .s-contents h3, .s-contents h4, .s-contents h5, .s-contents h6 {
  margin-top: 1.5em;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.s-contents h2 {
  font-size: 1.5em;
}
.s-contents h3 {
  font-size: 1.25em;
}
.s-contents h4 {
  font-size: 1.125em;
}
.s-contents p {
  margin-bottom: 1em;
}
.s-contents img {
  height: auto;
  margin: 1em 0;
}
.s-contents a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
  color: #426AB3;
}
.s-contents ul {
  list-style: disc;
  padding-left: 1em;
  margin: 1em 0;
}
.s-contents ol {
  list-style: decimal;
  padding-left: 1em;
  margin: 1em 0;
}

.s-pagination {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0.625em;
}
@media screen and (max-width: 767px) {
  .s-pagination {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3.75em;
  }
}
.s-pagination a {
  font-size: 0.9375em;
  display: block;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .s-pagination a {
    grid-row: 1/2;
  }
}
.s-pagination a:hover {
  opacity: 0.7;
}

.s-pagination-prev,
.s-pagination-next {
  position: relative;
}
@media screen and (max-width: 767px) {
  .s-pagination-prev,
  .s-pagination-next {
    grid-row: 1/2;
  }
}
.s-pagination-prev::before,
.s-pagination-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5em;
  height: 0.6em;
  background: url(../img/post_arrow.svg) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.s-pagination-prev {
  grid-column: 1/2;
  padding-left: 2.5em;
}
.s-pagination-prev:hover::before {
  transform: translate(-0.25em, -50%) scale(-1, 1);
}
.s-pagination-prev::before {
  left: 0;
  transform: translateY(-50%) scale(-1, 1);
}

.s-pagination-all {
  text-align: center;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .s-pagination-all {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

.s-pagination-next {
  text-align: right;
  grid-column: 3/4;
  padding-right: 2.5em;
}
@media screen and (max-width: 767px) {
  .s-pagination-next {
    grid-column: 2/3;
  }
}
.s-pagination-next:hover::before {
  transform: translate(0.25em, -50%);
}
.s-pagination-next::before {
  right: 0;
  transform: translateY(-50%);
}

/*======================================
    contact
======================================*/
.contact-wrap {
  max-width: 51.6875em;
  margin: 6.25em auto 0;
}
@media screen and (max-width: 767px) {
  .contact-wrap {
    margin-top: 5em;
  }
}

.form-list:nth-child(n+2) {
  margin-top: 3.75em;
}
@media screen and (max-width: 767px) {
  .form-list:nth-child(n+2) {
    margin-top: 2.5em;
  }
}

.form-list__head {
  display: flex;
  align-items: center;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 1.2142857143;
  padding-left: 0.86em;
  border-left: 0.36em solid #231815;
}
.form-list__head .required {
  color: #fb0000;
}

.form-list__input {
  margin-top: 0.625em;
}
.form-list__input input,
.form-list__input select,
.form-list__input textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0.43em;
  font-size: 0.875em;
  background: #eee;
  border: none;
  box-shadow: none;
  width: 100%;
  line-height: 1.75;
  padding: 0.75em 1em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form-list__input input,
  .form-list__input select,
  .form-list__input textarea {
    border-radius: 0.29em;
  }
}
.form-list__input select {
  background: #eee url(../img/form_arrow.svg) no-repeat center right 1.64em/1.29em 0.64em;
}
.form-list__input textarea {
  height: 15em;
  resize: vertical;
}

.form-privacy {
  text-align: center;
  font-size: 0.8125em;
  font-weight: 500;
  margin-top: 3em;
}
.form-privacy input {
  display: none;
}
.form-privacy input:checked + span.wpcf7-list-item-label::after {
  opacity: 1;
}
.form-privacy .wpcf7-list-item-label {
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
.form-privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  border: 1px solid #231815;
}
.form-privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 0.5em;
  border-bottom: 2px solid #231815;
  border-left: 2px solid #231815;
  transform: translate(0.1em, -0.2em) rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-privacy .wpcf7-list-item-label a {
  text-decoration: underline;
  transition: opacity 0.3s ease;
  font-weight: inherit;
}
.form-privacy .wpcf7-list-item-label a:hover {
  opacity: 0.7;
}

.form-submit {
  margin-top: 2.1875em;
}
.form-submit input {
  font-size: 0.875em;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 0.105em;
  border: none;
  font-feature-settings: "palt";
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 26.93em;
  height: 4.2em;
  border-radius: 0.43em;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(to right, #ff8a80, #e8c232);
  transition: opacity 0.3s ease;
}
.form-submit input:hover {
  opacity: 0.7;
}

.contact-button {
  margin-top: 3em;
}

@media screen and (min-width: 768px) {
  .thanks-text {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
