@charset "utf-8";

/*
Version: 1.0.0
*/
/* ==================================
  reset
  ================================== */
#trait img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

/* ==================================
  base
  ================================== */
html {
  overflow-x: hidden;
}

#trait {
  -webkit-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #404544;
  letter-spacing: 0.2em;
  background-color: #fff;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100vw;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.flex-container {
  display: flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

.text-center {
  text-align: center;
}

small {
  font-size: 9px;
  vertical-align: super;
}

.arrow {
  opacity: 0;
}

.anim.active .arrow {
  animation-name: slideTextY100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.effect {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity, transform;
  transform: translate(0, 20px);
  position: relative;
  z-index: 2;
}

.delay-05 {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-1 {
  transition-delay: 1s;
  animation-delay: 1s;
}

.delay-15 {
  transition-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-2 {
  transition-delay: 2s;
  animation-delay: 2s;
}

.anim.active .effect {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 768px) {}

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

  .sp {
    display: block;
  }
}

/* ==================================
 root
  ================================== */

:root {
  --font-en: "Oswald", sans-serif;
  --font-b: "TBUDゴシック B", "TBUDGothic B";
  --font-h: "TBUDゴシック H", "TBUDGothic H";
  --px20: 20px;
  --px10: 10px;
  --line-18: 1.8;
  --color-blue: #dceef0;
  --color-blue2: #51a8b2;
  --color-blue3: #eef4f8;
  --color-blue4: #5691ba;
  --color-grey: #f4f4f4;
  --color-grey2: #f6f6f4;
  --color-grey3: #e7e7e7;
  --color-grey4: #d8d8d8;
  --color-grey5: #898989;
  --color-grey6: #efefef;
  --color-grey7: #f3f3f3;
  --color-grey8: #a6a6a6;
  --color-orange: #f39800;
  --color-orange2: #eb924b;
  --color-orange3: #fef5e5;
  --color-orange4: #fbf2ec;
  --color-orange5: #d97a46;
  --color-orange6: #e95504;
  --color-orange7: #db3c1f;
  --color-green: #ebf0dc;
  --color-green2: #64966e;
  --color-green3: #59a569;
  --color-font: #404544;
  --color-font2: #231815;
  --color-arrow: #51828c;
  --hover: #e8380d;
}

/* ==================================
 font
  ================================== */
.blue-text {
  color: var(--color-blue-2);
}



/* ==================================
  adjust
  ================================== */
.contents {
  margin: 0 auto;
}

#trait p {
  margin-bottom: 0;
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  #trait {
    margin-top: 0x;
  }
}

/* ==================================
  common
  ================================== */

#trait .inner {
  width: 76.407%;
  margin: auto;
  position: relative;
}

.common-title-container .inner {
  height: 100%;
  position: relative;
}

.common-padding {
  padding-bottom: 84px;
}

/*wrapper*/
.common-contents {
  background: #fff;
  padding: 60px 0;
  border-radius: var(--px20);
  margin-bottom: 96px;
}

.common-contents:last-child {
  margin-bottom: 0;
}

.common-contents-inner {
  width: 90%;
  margin: 0 auto;
}

.common-container {
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 2px var(--color-grey3);
  border-style: dashed;
}

.common-container:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/*text*/
.common-title-container {
  height: 321px;
  width: 100%;
  margin-bottom: 40px;
}

.common-title-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-b);

}

.common-title {
  font-size: 38px;
}

.common-lead {
  font-size: 18px;
  margin-top: 20px;
}

.common-head {
  font-size: 14px;
  color: var(--color-green2);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 10px;

}

#disaster .common-head {
  color: var(--color-orange5);
}

.common-head::after {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-green2);
}

#disaster .common-head::after {
  background: var(--color-orange5);
}

.common-sub-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-b);
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.common-sub-title h3 {
  position: relative;
  display: block;
  width: fit-content;
}

.common-text {
  font-size: 16px;
}

.common-note {
  font-size: 11px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.common-note:nth-child(n+2) {
  margin-top: 0.5em;
}

.common-note-2 {
  font-size: 11px;
  padding-left: 2em;
  text-indent: -2em;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/*deco*/
.deco-unique {
  width: 55px;
  position: absolute;
  right: 0;
  transform: translateX(112%);
  bottom: 0;
}

/*arrow*/
.btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 30px;
  color: var(--color-arrow);
}

.text-btn-icon {
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  right: -17px;
  font-size: 40px;
  color: var(--color-arrow);
  transition: 0.3s all;
}

.btn-icon::before {
  font-family: "icomoon";
  content: "\e315";
}

.text-btn-icon::before {
  font-family: "icomoon";
  content: "\e315";
}

/*btn*/
.common-btn-container {
  padding: 85px 0;
  background: url(../img/trait/common-btn-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.common-btn-list {
  width: 76.4%;
  justify-content: space-between;
  margin: 0 auto;
}

.common-btn-item {
  width: calc((100% - 3%) / 3);
  background: var(--color-orange);
  line-height: 60px;
  text-align: center;
  position: relative;
}

.common-btn-item::after {
  content: "";
  position: absolute;
  width: 68%;
  height: 61.3%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -63%);
  pointer-events: none;
}

.common-btn-item:nth-child(1)::after {
  background: url(../img/trait/common-btn-item-bubble-01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.common-btn-item:nth-child(2)::after {
  background: url(../img/trait/common-btn-item-bubble-02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.common-btn-item a {
  color: #fff;
  font-weight: 700;
  font-family: var(--font-b);
  font-size: 16px;
  display: block;
  position: relative;
}

.common-btn-item:last-child {
  border: solid 1px var(--color-grey8);
  background: #fff;
}

.common-btn-item:last-child a {
  color: var(--color-font);
}

.common-btn-item .btn-icon {
  color: #fff;
}

.common-btn-item:last-child .btn-icon {
  color: var(--color-arrow);
  right: .8px;
}

.common-btn-item:last-child .btn-icon::before {
  transform: rotate(-90deg);
  transform-origin: center;
  display: block;

}

@media (min-width: 768px) {
  #trait .inner {
    min-width: 710px;
    max-width: 978px;
  }

  .common-btn-list {
    min-width: 710px;
    max-width: 978px;
  }
}

@media (max-width: 767px) {
  #trait .inner {
    width: 92.004%;
  }

  .common-padding {
    padding-bottom: 50px;
  }

  .common-title-container {
    height: 400px;
    margin-bottom: 30px;
  }

  .common-title {
    font-size: 30px;
  }

  .common-head {
    margin-bottom: 12px !important;
  }

  .common-lead {
    font-size: 16px;
  }

  .common-contents {
    padding: 30px 0 38px;
    margin-bottom: 48px;
  }

  .common-container {
    padding-bottom: 50px;
  }

  .common-sub-title {
    font-size: 26px;
    letter-spacing: 0.15em;
  }


  .deco-unique {
    width: min(14.7vw, 55px);
    top: 0;
    bottom: auto;
  }

  .common-btn-list {
    flex-direction: column;
    width: 84.004%;
  }

  .common-btn-item {
    width: 100%;
  }

  .common-btn-item:nth-child(1) {
    margin-bottom: 17.5%;
  }

  .common-btn-item:nth-child(2) {
    margin-bottom: 12.1%;
  }

  .common-btn-container {
    padding: 72px 0 36px;
  }

  .common-scroll-box {
    justify-content: end;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .common-scroll-arrow {
    width: 26px;
    display: flex;
    align-items: center;
    margin-left: 10px;
  }
}

/* ==================================
  fixed
  ================================== */
.fixed {
  position: fixed;
  right: 0;
  bottom: 40px;
  z-index: 10;
}

.fixed-item {
  background: #fff;
  border-radius: 23px 0 0 23px;
  border-top: solid var(--color-orange6) 1px;
  border-left: solid var(--color-orange6) 1px;
  border-bottom: solid var(--color-orange6) 1px;
  overflow: hidden;
  font-size: 12px;
  height: 103px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.fixed-item span {
  font-weight: 700;
  font-family: var(--font-b);
  font-size: 18px;
}

.fixed-item:nth-child(1) {
  color: var(--color-orange7);
}

.fixed-item:nth-child(2),
.fixed-item:nth-child(3) {
  text-align: center;
}

.fixed-img {
  width: 67px;
  margin: 0 auto 8px;
}

.fixed-text {
  color: var(--color-font);
}

.scroll-top {
  width: 70px;
  margin-left: auto;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .fixed {
    position: relative;
    bottom: 0;
  }

  .fixed-list {
    display: flex;
    flex-wrap: wrap;
  }

  .fixed-item {
    border-radius: 0;
    margin-bottom: 0;
    height: 37px;
  }

  .fixed-item:nth-child(1) {
    width: 100%;
  }

  .fixed-item:nth-child(n+2) {
    width: 50%;
  }

  .fixed-link {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .fixed-img {
    width: 25px;
    margin: 0 4px 0 0;
  }
}

/* ==================================
  mv
  ================================== */
.mv-wrap {
  position: relative;
  padding: 130px 0 110px;
  background: url(../img/trait/mv-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv-inner {
  position: relative;
  margin: 0 auto;
  width: 79%;
  justify-content: space-between;
}

.mv-l {
  width: 51%;
}

.mv-r {
  width: 30.9%;
}

.mv-title-box {
  margin-bottom: 48px;
  font-weight: 700;
  font-family: var(--font-b);
}

.mv-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1;

}

.mv-title {
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.mv-text {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  line-height: 2.1;
}

@media (max-width: 767px) {
  .mv-wrap {
    padding: 108px 0 67px;
    background: url(../img/trait/mv-bg-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .mv-inner {
    width: 92.004%;
    flex-direction: column;
  }

  .mv-l {
    width: 100%;
  }

  .mv-r {
    width: 51.9%;
    margin-left: auto;
    margin-top: 16px;
  }

  .mv-title {
    font-size: 29px;
  }

  .mv-text {
    line-height: 1.6;
  }
}

/* ==================================
  anc
  ================================== */
.anc-wrap {
  background: var(--color-grey2);
  padding: 43px 0 54px;
  margin-bottom: 80px;
}

.trait-anc-list {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.trait-anc-list-item {
  width: calc((100% - 6.1%) / 5);
  margin-right: 1.4%;
  font-size: 12px;
}

.trait-anc-list-item:nth-child(5),
.trait-anc-list-item:nth-child(9) {
  margin-right: 0;
}

.trait-anc-list-item:nth-child(n+6) {
  margin-top: 1.4%;
}

.trait-anc-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.trait-anc-link::after {
  font-family: "icomoon";
  content: "\f107";
  font-size: 1.5em;
  line-height: 1;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}

.trait-anc-link-txt {
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-shadow: rgba(0, 0, 0, 0.4) 0 0 10px;
  position: absolute;
  z-index: 2;
  margin: 0;
  font-weight: 700;
  font-family: var(--font-b);
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  .anc-wrap {
    padding: 30px 0;
    margin-bottom: 50px;
  }

  .trait-anc-list {
    justify-content: space-between;
  }

  .trait-anc-list-item {
    width: calc((100% - 2%) / 2);
    margin-right: 0;
  }

  .trait-anc-link-img {
    height: 85px;
  }

  .trait-anc-link-img img {
    object-fit: cover;
  }

  .trait-anc-list-item:nth-child(n+3) {
    margin-top: 2%;
  }

  .trait-anc-link::after {
    transform: translate(-50%, 5px);
  }
}

/* ==================================
  banner
================================== */
.banner-wrap {
  margin-bottom: 84px;
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  .banner-wrap {
    margin-bottom: 22px;
  }
}

/* ==================================
  movie
================================== */

.movie-box {
  aspect-ratio: 16/9;
  position: relative;
}

.movie-box iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

@media (min-width: 768px) {}

@media (max-width: 767px) {}

/* ==================================
  about
================================== */
.about-title {
  background: transparent url(../img/trait/about-title-bg.jpg) no-repeat center top/cover;
}

.about-energy-title span {
  color: var(--color-orange);
}

.about-energy {
  position: relative;
}

.about-energy-head {
  width: 24.6%;
  position: relative;
  margin: -4.5% auto 0;
  transform: translateY(67%);
  z-index: 1;
}

.about-energy-wrap {
  background: var(--color-blue);
  border-radius: var(--px20);
  position: relative;
  padding: 64px 0 44px;
  margin-bottom: 110px;
}

.about-energy-inner {
  width: 93.7%;
  margin: 0 auto;
}

.about-energy-title {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 40px;
}

.about-energy-container {
  margin-bottom: 1em;
}

.about-energy-subtitle {
  text-align: center;
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--color-font2);
  letter-spacing: 0.02em;
}

.about-energy-box {
  background: var(--color-grey);
  padding: 32px 24px 30px 30px;
  position: relative;
}

.about-energy-text {
  width: 65.9%;
}

.about-energy-chart {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 26.7%;
}

.about-energy-note {
  width: 70%;
}

.about-system {
  margin-bottom: 130px;
}

.about-system-inner {
  border: 2px solid var(--color-blue2);
  border-radius: var(--px10);
  padding: 72px 7%;
  position: relative;
}

.about-system-title {
  width: 562px;
  color: var(--color-blue2);
  font-size: 34px;
  letter-spacing: 0.04em;
  background: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-b);
}

.about-system-text {
  font-weight: 700;
  font-family: var(--font-b);
  font-size: 18px;
  text-align: center;
  line-height: var(--line-18);
  letter-spacing: 0.02em;
}

.about-system-text span {
  color: var(--color-orange2);
}

.about-system-img {
  margin-bottom: 15px;
}

.about-system-note:last-child {
  margin-bottom: 0;
}

.about-yucoa-wrap {
  background: var(--color-grey2);
  padding-top: 90px;
}

.about-yucoa-inner {
  background: #fff;
  width: 50.4%;
  margin: 0 auto 50px;
  padding: 40px 0 32px;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-b);
}

.about-yuoca-subtitle {
  font-size: 16px;
  color: #000000;
}

.about-yuoca-title {
  font-size: 31px;
  margin-bottom: 12px;
  color: #000000;
}

.about-yuoca-img {
  width: 43.5%;
  margin: 0 auto 16px;
}

.about-yuoca-text {
  text-align: center;
  font-size: 16px;
}

.about-yucoa-list {
  width: 65.3%;
  margin: 0 auto;
  justify-content: space-between;
}

.about-yucoa-item {
  width: calc((100% - 10%) / 6);
  aspect-ratio: 1;
  background: var(--color-blue2);
  border-radius: 500px;
  position: relative;
}

.about-yucoa-item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 51.9%;
}

@media (min-width: 768px) {
  .about-yucoa-inner {
    min-width: 645px;
  }

  .about-yucoa-list {
    min-width: 710px;
  }
}

@media (max-width: 767px) {
  .about-title {
    background: transparent url(../img/trait/about-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .about-energy-head {
    width: 69.6%;
    margin-top: -12.5%;
  }

  .about-energy-wrap {
    padding-bottom: 32px;
    margin-bottom: 86px;
  }

  .about-energy-inner {
    width: 91.3%;
  }

  .about-energy-title {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .about-energy-container {
    margin-bottom: 22px;
  }

  .about-energy-subtitle {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .about-energy-box {
    padding: 24px 24px 20px;
  }

  .about-energy-text {
    width: 100%;
    margin-bottom: 16px;
  }

  .about-energy-chart {
    position: relative;
    top: auto;
    transform: none;
    margin: 0 auto;
    right: auto;
    width: 92%;
  }

  .about-energy-note {
    width: 100%;
  }

  .about-system {
    margin-bottom: 70px;
  }

  .about-system-inner {
    padding: 60px 5% 30px;
  }

  .about-system-title {
    width: 80%;
    line-height: 1.3;
    font-size: 26px;
  }

  .about-system-text {
    font-size: 16px;
    text-align: left;
  }

  .about-yucoa-wrap {
    padding-top: 50px;
  }

  .about-yucoa-inner {
    width: 92.004%;
    margin-bottom: 18px;
  }

  .about-yuoca-text {
    font-size: 14px;
  }

  .about-yuoca-img {
    width: 81.2%;
  }

  .about-yucoa-list {
    flex-wrap: wrap;
    width: 92.004%;
  }

  .about-yucoa-item {
    width: calc((100% - 10%) / 3);
  }

  .about-yucoa-item:nth-child(n+4) {
    margin-top: 3.4%;
  }
}

/* ==================================
  eco
================================== */
.eco-title {
  background: transparent url(../img/trait/eco-title-bg.jpg) no-repeat center top/cover;
}

.eco-wrap {
  background: var(--color-green);
}

.eco-img-title {
  width: 64.6%;
  margin: 0 auto 40px;
}

.eco-img-list {
  margin-bottom: 40px;
  background: var(--color-grey);
  padding: 1.2% 5.5%;
  justify-content: space-between;
}

.eco-img-item:nth-child(1) {
  width: 31.3%;
}

.eco-img-item:nth-child(2) {
  width: 28.4%;
}

.eco-img-item:nth-child(3) {
  width: 26.6%;
}

.eco-contents {
  background: #64966e;
  margin-bottom: 96px;
  padding: 64px 0;
}

.eco-contents:last-child {
  margin-bottom: 0;
}

.eco-flex {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
}

.eco-flex-text {
  width: 46.4%;
  font-weight: 700;
  font-family: var(--font-b);
}

.eco-flex-img {
  width: 48.9%;
}

.eco-flex-chart-box {
  position: relative;
}

.eco-flex-chart-text {
  width: 43.2%;
  margin: 0 auto 5.5%;
}

.eco-flex-chart {
  position: relative;
  overflow: hidden;
}

.eco-flex-chart-arrow {
  position: absolute;
  top: 0;
  width: 2.4%;
  right: 30.2%;
  opacity: 0;
}

.eco-flex-chart-bubble {
  width: 23.9%;
  position: absolute;
  right: 6%;
  top: 20%;
}

.eco-sub-title {
  margin: 0 0 40px;
}

.eco-contents-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-b);
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.eco-contents-text {
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.eco-contents-flex {
  justify-content: space-between;
  width: 89%;
  margin: 0 auto 30px;
}

.eco-contents-flex-img {
  width: 41.4%;
}

.eco-contents-flex-text {
  font-size: 18px;
  color: #fff;
  width: 56.3%;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eco-contents-flex-text p {
  margin-bottom: 16px !important;
}

.eco-btn {
  display: block;
  width: 100%;
}

.eco-link {
  position: relative;
  width: min(400px, 82%);
  background: #fff;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  color: var(--color-font);
  margin: 0 auto;
}

.eco-separate-title {
  font-size: 14px;
  text-align: center;
  color: var(--color-green2);
  font-weight: 700;
  font-family: var(--font-b);
  letter-spacing: 0.04em;
  position: relative;
  margin-bottom: 0.5em;
  height: 52px;
  display: flex;
  align-items: center;
}


.eco-separate {
  margin-bottom: 32px;
  justify-content: space-between;
}

.eco-separate-img-box {
  width: 48.9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  align-items: center;
}

.eco-separate-wrap {
  flex-grow: 1;
}

.eco-separate-img {
  border: solid 1px var(--color-green2);
  border-radius: var(--px20);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 20px;

}

.eco-separate-list {
  border: solid 1px var(--color-green2);
  border-radius: var(--px20);
  height: 100%;
  flex-wrap: wrap;
  padding: 54px 0;
  justify-content: center;
  position: relative;
}


.eco-separate-item {
  width: calc((100% - 11%) / 2);
}

.eco-separate-item:nth-child(odd) {
  margin-right: 1.9%;
}

.eco-separate-item:nth-child(n+3) {
  margin-top: 1.9%;
}

.eco-separate-chart-title {
  width: 77.6%;
  margin: 0 auto 0 5.6%;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.eco-separate-chart-title span {
  color: var(--color-green3);
  font-size: 27px;
}

.eco-separate-chart-box {
  width: 75%;
  margin: 0 auto 0 5.6%;
  position: relative;
}

.eco-chart-bubble {
  width: 37.4%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}

.eco-separate-chart {
  position: relative;
  overflow: hidden;
}

.eco-separate-chart-arrow {
  position: absolute;
  top: 0;
  width: 2.04%;
  right: 29.5%;
  opacity: 0;
}

.eco-img-bottom-box {
  position: relative;
}

.eco-img-bottom-bubble-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.eco-img-bottom-bubble {
  width: 9.9%;
  position: absolute;
}

.eco-img-bottom-bubble:nth-child(1) {
  top: 20%;
  left: 5.8%;
}

.eco-img-bottom-bubble:nth-child(2) {
  top: 20%;
  left: 25.6%;
}

.eco-img-bottom-bubble:nth-child(3) {
  top: 29.6%;
  left: 58.2%;
}

.eco-img-bottom-bubble:nth-child(4) {
  top: 40%;
  left: 88.6%;
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  .eco-title {
    background: transparent url(../img/trait/eco-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .eco-sub-title {
    margin-bottom: 32px;
  }


  .eco-img-title {
    width: 100%;
    margin-bottom: 24px;
  }

  .eco-img-list {
    flex-direction: column;
    margin-bottom: 30px;
    padding: 32px 5.5%;
  }

  .eco-img-item {
    margin: 0 auto;
  }

  .eco-img-item {
    margin: 0 auto 0 3%;
  }

  .eco-img-item:nth-child(1) {
    width: 92%;
    margin-bottom: 16px;
  }

  .eco-img-item:nth-child(2) {
    width: 83.4%;
    margin-bottom: 16px;
  }

  .eco-img-item:nth-child(3) {
    width: 78.2%;
  }

  .eco-img-bottom-box {
    overflow-x: scroll;
    width: 100%;
  }

  .eco-img-bottom {
    width: 741px;
    border: solid 1px var(--color-grey8);
    padding: 20px 10px 10px;
    position: relative;
  }

  .eco-img-bottom-bubble-box {
    width: calc(100% - 20px);
    height: calc(100% - 30px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 5px));
  }

  .eco-separate {
    flex-direction: column;
    margin-bottom: 0;
  }

  .eco-separate-title {
    height: auto;
  }

  .eco-separate-title .deco-unique {
    width: 38px;
    bottom: 4px;
    top: auto;
    right: -3px;
  }

  .eco-separate-img-box {
    width: 100%;
  }

  .eco-separate-img-box:nth-child(1) {
    margin-bottom: 24px;
  }

  .eco-separate-list {
    padding: 32px 0;
  }


  .eco-separate-chart-title {
    font-size: 17px;
    width: 90%;
    margin-bottom: 20px;
  }

  .eco-separate-chart-title span {
    font-size: 20px;
  }

  .eco-contents {
    padding: 24px 0;
    margin-bottom: 44px;
  }

  .eco-contents-title {
    font-size: 26px;
    text-align: left;
    width: 91.4%;
    margin: 0 auto 14px;
  }

  .eco-contents-text {
    text-align: left;
    width: 91.4%;
    margin: 0 auto 24px;
  }

  .eco-contents-flex {
    flex-direction: column;
  }

  .eco-contents-flex-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .eco-contents-flex-text {
    width: 100%;
  }

  .eco-contents-flex-text .eco-link {
    width: 100%;
  }

  .eco-btn {
    width: 100%;
  }

  .eco-link {
    width: 91.4%;
    margin: 0 auto;
  }

  .eco-flex {
    flex-direction: column;
    margin-bottom: 0px;
  }

  .eco-flex-chart {
    width: 94.4%;
  }

  .eco-flex-chart-arrow {
    width: 3.1%;
    right: 24.5%;
  }

  .eco-flex-chart-bubble {
    width: 28.9%;
    right: -3%;
  }

  .eco-flex-chart-text {
    width: 48.7%;
  }

  .eco-wrap .common-container .common-note,
  .eco-wrap .common-container .common-note-2 {
    margin-top: 24px;
  }

  .eco-flex-text {
    width: 100%;
  }

  .eco-flex-chart-box {
    margin-top: 24px;
  }

  .common-container:nth-child(2) .eco-flex-img {
    margin-bottom: 24px;
  }

  .eco-flex-img {
    width: 100%;
  }

  .eco-flex .row-reverse {
    flex-direction: column;
  }
}

/* ==================================
  solar
================================== */
.solar-title {
  background: transparent url(../img/trait/solar-title-bg.jpg) no-repeat center top/cover;
}

.solar-wrap {
  background: var(--color-green);
}

.solar-sub-title {
  margin-bottom: 24px;
  width: calc(100% - 45px);
}

.solar-img-scroll {
  margin-bottom: 32px;
}

.solar-img-text {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-b);
  color: var(--color-green2);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.solar-text {
  margin-bottom: .6em;
  font-weight: 700;
  font-family: var(--font-b);
}

.solar-list {
  justify-content: space-between;
  margin-bottom: 40px;
}

.solar-item {
  width: calc((100% / 3) - 1.5%);
  text-align: center;
}

.solar-tag {
  width: 25.7%;
  margin: 0 auto 8px;
  aspect-ratio: 1;
  border: solid 1px var(--color-green2);
  background: var(--color-orange3);
  border-radius: 500px;
  color: var(--color-green2);
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-family: var(--font-b);
  flex-direction: column;
  line-height: 1;
}

#trait .solar-tag-text {
  font-size: 11px;
  margin-bottom: .4px;
  margin-left: 0.3em;
}

.solar-tag-num {
  font-size: 32px;
  margin-left: 0.1em;
}

.solar-list-text {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
}

.solar-list-text span {
  color: var(--color-green2);
}

.solar-img {
  position: relative;
}

.solar-chart-img {
  justify-content: space-between;
  align-items: center;
}

.solar-chart-img-l {
  width: 71.4%;
  position: relative;
}

.solar-chart-line-01 {
  position: absolute;
  bottom: 18%;
  width: 85.2%;
  right: 5.2%;
}

.solar-chart-num-01 {
  position: absolute;
  bottom: 30%;
  width: 79.5%;
  right: 11.7%;
}

.solar-chart-num-02 {
  position: absolute;
  width: 6%;
  right: 2.8%;
  bottom: 24%;
}

.solar-chart-img-r {
  width: 24.4%;
}

.solar-img-3 {
  overflow: hidden;
}

.solar-chart-bg-02 {
  width: 89.9%;
}

.solar-chart-bubble-01 {
  width: 19.1%;
  position: absolute;
  top: 1%;
  left: 28.3%;
}

.solar-chart-bubble-02 {
  width: 19.1%;
  position: absolute;
  top: 1%;
  right: 3%;
}

.solar-chart-arrow-01 {
  width: 1.37%;
  position: absolute;
  top: 0;
  right: 51.3%;
}

.solar-chart-arrow-02 {
  width: 1.37%;
  position: absolute;
  top: 0;
  right: 37.2%;
}

.solar-chart-arrow-03 {
  width: 1.37%;
  position: absolute;
  top: 0;
  right: 23%;
}


@media (min-width: 768px) {}

@media (max-width: 767px) {
  .solar-title {
    background: transparent url(../img/trait/solar-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .solar-sub-title {
    width: 100%;
    margin-bottom: 30px;
  }

  .solar-img-text {
    margin-bottom: 24px;
  }

  .solar-img-scroll {
    overflow-x: scroll;
    width: 100%;
  }

  .solar-img {
    width: 750px;
    border: solid 1px var(--color-grey8);
    padding: 10px 20px 10px 10px;
  }

  .solar-img-2 {
    padding: 30px 10px 20px 10px;
  }

  .solar-img-3 {
    padding: 30px 10px 10px 10px;
  }

  .solar-chart-arrow-01,
  .solar-chart-arrow-02,
  .solar-chart-arrow-03 {
    animation-name: none !important;
    padding-top: 30px;
    opacity: 1 !important;
  }

  .solar-chart-bubble-01,
  .solar-chart-bubble-02 {
    opacity: 1;
    transform: translate(0, 0);
  }

  .solar-list {
    flex-direction: column;
    align-items: center;
  }

  .solar-item {
    width: 100%;
    margin-bottom: 32px;
  }

  .solar-item:last-child {
    margin-bottom: 0;
  }

  .solar-tag {
    width: 21.6%;
  }
}

/* ==================================
  disaster
================================== */
.disaster-title {
  background: transparent url(../img/trait/disaster-title-bg.jpg) no-repeat center top/cover;
}

.disaster-sub-title {
  margin-bottom: 24px;
}

.disaster-contents {
  background: var(--color-orange4);
}

.disaster-text {
  margin-bottom: 40px;
}

.disaster-img-box {
  margin-bottom: 24px;
}

.disaster-head {
  margin-bottom: 12px;
}

.disaster-tab-title {
  margin: 0 0 36px;
}

@media (max-width: 767px) {
  .disaster-title {
    background: transparent url(../img/trait/disaster-title-bg.jpg) no-repeat center top/cover;
  }

  .disaster-sub-title {
    margin-bottom: 20px;
  }

  .disaster-text {
    margin-bottom: 30px;
  }

  .disaster-img-box {
    overflow-x: scroll;
    width: 100%;
    margin-bottom: 32px;
  }

  .disaster-img {
    width: 750px;
  }

  .disaster-tab-title {
    margin: 0 0 30px;
  }


}

/* ==================================
  tab
  ================================== */
#tab {
  position: relative;
}

.tab-list {
  justify-content: space-between;
  margin-bottom: 32px;
}

.tab-item {
  width: calc((100% - 2%) / 4);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  background: var(--color-grey4);
  border: solid 1px var(--color-grey3);
  color: var(--color-grey5);
  border-radius: 500px;
  position: relative;
  transition: .2s ease-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 40px;
  letter-spacing: 0;
}

.tab-item.active {
  background: #fff;
  border: solid 1px var(--color-orange5);
  color: var(--color-orange5);
  z-index: 1;
  transition: .2s ease-out;
  pointer-events: none;
}


.t-area {
  display: none;
  opacity: 0;
  background: #fff;
  border: solid 1px var(--color-orange5);
  border-radius: var(--px20);
  z-index: 1;
  position: relative;
}

.t-area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.tab-container {
  justify-content: space-between;
  align-items: center;
}

.tab-l {
  width: 44%;
}

.tab-r {
  width: 56%;
  position: relative;
  right: -3%;
}

.tab-text-box {
  margin-bottom: 24px;
}

.tab-text-box:last-child {
  margin-bottom: 0;
}

.tab-num {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-b);
  letter-spacing: 0;
  padding: 8px 8px 4px;
  color: #fff;
  background: var(--color-orange5);
  display: inline-block;
  line-height: 1;
  margin-bottom: 4px;
}

.tab-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 8px;
}

.tab-sub-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  color: var(--color-orange5);
  border-bottom: solid 1px var(--color-orange5);
  display: inline;
}

.tab-text {
  font-size: 16px;
  margin-top: 9px;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  .tab-list {
    flex-wrap: wrap;
  }

  .tab-item {
    width: calc((100% - 2%) / 2);
    height: 62px;
  }

  .tab-item:nth-child(n+3) {
    margin-top: 1%;
  }

  .tab-container {
    flex-direction: column;
  }

  .tab-l {
    width: 100%;
    margin-bottom: 30px;
  }

  .tab-text-box {
    margin-bottom: 32px;
  }

  .tab-num {
    margin-bottom: 16px;
  }

  .tab-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .tab-text {
    margin-top: 8px;
  }

  .tab-r {
    width: 100%;
    right: auto;
  }

}

/* ==================================
  clean
================================== */
.clean-title {
  background: transparent url(../img/trait/clean-title-bg.jpg) no-repeat center top/cover;
}

.clean-wrap {
  background: var(--color-blue3);
}

.clean-sub-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 24px;
}

.clean-text {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 8px;
}

.yucoa-logo {
  width: 247px;
  margin-bottom: 11px;
}

.clean-note {
  margin-bottom: 24px;
}

.clean-movie {
  margin-bottom: 90px;
}

.clean-list {
  justify-content: space-between;
  margin-bottom: 64px;
}

.clean-item {
  width: calc((100% / 3) - 2.6%);
}

.clean-list-img {
  border: solid 2px var(--color-grey3);
  border-radius: var(--px10);
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s all;
}

.clean-link {
  display: block;
  color: var(--color-font);
}

.clean-list-note {
  margin-top: 12px;
}

.clean-list-title {
  font-size: 23px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.clean-list-title .btn-icon {
  font-size: 40px;
}

.clean-list-text {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
}

#trait .clean-list-note p {
  margin-bottom: 1em;
}

#trait .clean-list-note p:last-child {
  margin-bottom: 0;
}

.message-contents {
  justify-content: space-between;
  margin-bottom: 32px;
}

.message-box {
  width: calc((100% - 2.9%) / 2);
  border-radius: var(--px20);
  padding: 32px 0 24px;
}

.message-l {
  border: solid 2px var(--color-orange);
}

.message-r {
  border: solid 2px var(--color-blue4);
}

.message-title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  text-align: center;
  margin-bottom: 10px;
}

.message-title h4 {
  display: inline-block;
  position: relative;
  padding-bottom: calc(19px + .1em);
}

.message-l .message-title h4 {
  color: var(--color-orange);
}

.message-r .message-title h4 {
  color: var(--color-blue4);
}

.message-title h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 19px;
}

.message-l .message-title h4::after {
  background: url(../img/trait/message-line-o.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.message-r .message-title h4::after {
  background: url(../img/trait/message-line-b.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.message-img {
  width: 26%;
  margin: 0 auto 12px;
}

.message-text {
  width: 84.4%;
  margin: 0 auto;
  font-size: 14px;
}

@media (min-width: 768px) {
  .clean-link:hover {
    color: var(--hover);
    opacity: 1;
  }

  .clean-link:hover .text-btn-icon {
    color: var(--hover);
  }

  .clean-link:hover .clean-list-img {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .clean-title {
    background: transparent url(../img/trait/clean-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .clean-sub-title {
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .clean-movie {
    margin-bottom: 50px;
  }

  .clean-list {
    flex-direction: column;
    margin-bottom: 54px;
  }

  .clean-item {
    width: 100%;
    margin-bottom: 16px;
  }

  .clean-item:last-child {
    margin-bottom: 0;
  }

  .clean-list-img {
    margin-bottom: 20px;
  }

  .message-contents {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .message-box {
    width: 100%;
  }

  .message-l {
    margin-bottom: 20px;
  }

  .message-img {
    width: 36%;
    margin: 0 auto 12px;
  }

  .message-text {
    width: 93%;
    line-height: 1.4;
  }
}

/* ==================================
  zeh
================================== */
.zeh-title {
  background: transparent url(../img/trait/zeh-title-bg.jpg) no-repeat center top/cover;
}

.zeh-wrap {
  background: var(--color-grey6);
}

.zeh-contents:nth-child(1) {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: dashed 2px #fff;
}

.zeh-head {
  width: 19.7%;
  margin: 0 auto;
}

. .zeh-contents:nth-child(1) .zeh-sub-title {
  text-align: center;
}

.zeh-contents:nth-child(1) .zeh-sub-title h4 {
  padding: 0 0.3em;
}

.zeh-sub-title {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-b);
  color: var(--color-green2);
  margin-bottom: 24px;
}

.zeh-sub-title h4 {
  display: inline-block;
  border-bottom: solid 1px var(--color-green2);
}

.zeh-text {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 40px;
}

.zeh-container {
  border: solid 1px var(--color-green2);
  border-radius: var(--px20);
  padding: 48px 0;
  background: #fff;
  margin-bottom: 16px;
}

.zeh-img-title {
  width: 37%;
  margin: 0 auto 24px;
}

.zeh-img {
  width: 67.4%;
  margin: 0 auto;
}

.zeh-container-title {
  font-size: 14px;
  color: var(--color-green2);
  text-align: center;
  font-weight: 700;
  font-family: var(--font-b);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.zeh-note {
  margin-top: 16px;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.zeh-flex {
  margin-top: 24px;
  justify-content: space-between;
}

.zeh-box {
  width: 49.1%;
}

.zeh-box-img {
  border: solid 1px var(--color-green2);
  border-radius: var(--px10);
  background: #fff;
  margin-bottom: 16px;
}

.zex-box-note {
  font-size: 11px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

.zex-box-note p:first-child {
  margin-bottom: .3em !important;
}

.zeh-chart-box {
  padding: 4.2% 6.3% 4.2% 8.4%;
  position: relative;
}

.zeh-chart-title {
  width: 61.2%;
  margin-bottom: 3.9%;
}

.zeh-chart {
  overflow: hidden;
  position: relative;
}

.zeh-chart-arrow {
  position: absolute;
  top: 0;
  width: 2.6%;
}

.zeh-chart-arrow2 {
  position: absolute;
  top: 0;
  width: 2.4%;
}

.zeh-chart-arrow-1-1 {
  left: 33.9%;
}

.zeh-chart-arrow-1-2 {
  left: 55.1%;
}

.zeh-chart-arrow-1-3 {
  left: 77.2%;
}

.zeh-chart-arrow-2-1 {
  left: 33.9%;
}

.zeh-chart-arrow-2-2 {
  left: 54.9%;
}

.zeh-chart-arrow-2-3 {
  left: 76.1%;
}

.zeh-chart-bubble {
  position: absolute;
  top: 10%;
  right: 3%;
  width: 20.3%;
}

@media (min-width: 768px) {}

@media (max-width: 767px) {
  .zeh-title {
    background: transparent url(../img/trait/zeh-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .zeh-contents:nth-child(1) {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .zeh-head {
    width: 55.7%;
  }

  .zeh-sub-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .zeh-sub-title h4 {
    display: inline;
  }

  .zeh-container {
    padding: 20px 0 30px;
    margin-bottom: 1em;
  }

  .zeh-container-title {
    margin-bottom: 28px;
  }

  .zeh-img {
    width: 97%;
  }

  .zeh-img-title {
    width: 71%;
  }

  .zeh-contents:nth-child(1) .zeh-sub-title h4 {
    padding: 0 5px;
  }

  .zeh-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .zeh-flex {
    flex-direction: column;
    margin-top: 30px;
  }

  .zeh-box {
    width: 100%;
  }

  .zeh-box:nth-child(1) {
    margin-bottom: 30px;
  }
}

/* ==================================
  app
================================== */
.app-title {
  background: transparent url(../img/trait/app-title-bg.jpg) no-repeat center top/cover;
}

.app-wrap {
  background: var(--color-green);
}

.app-flex {
  justify-content: space-between;
  align-items: center;
  color: var(--color-font);
}

.app-head {
  font-size: 18px;
  color: var(--color-green2);
  border-bottom: solid 4px var(--color-green2);
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  transition: 0.3s all;
}

.app-sub-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2px;
}

.app-l {
  width: 58%;
  font-weight: 700;
  font-family: var(--font-b);
}

.app-r {
  width: 38.7%;
  transition: 0.3s all;
}

.app-container {
  justify-content: space-between;
  width: 90.5%;
  margin: 0 auto;
}

.app-box {
  width: 49.2%;
  font-weight: 700;
  font-family: var(--font-b);
  border-radius: var(--px10);
  border: solid 1px var(--color-orange);
  background: #fff;
  position: relative;
  padding: 32px 0;
}

.app-box::before {
  content: "";
  width: min(25.7%, 110px);
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -25%);
  background: url(../img/trait/app-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.app-box-title {
  text-align: center;
  margin-bottom: 10px;
}

.app-box-title h4 {
  font-size: 16px;
  color: var(--color-orange);
  position: relative;
  padding-bottom: calc(19px + .2em);
  display: inline-block;
}

.app-box-title h4::after {
  content: "";
  width: 100%;
  height: 19px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.app-box:nth-child(1) .app-box-title h4::after {
  background: url(../img/trait/app-line-01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.app-box:nth-child(2) .app-box-title h4::after {
  background: url(../img/trait/app-line-02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.app-box-text {
  font-size: 18px;
  width: 74%;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.app-box-text span {
  color: var(--color-orange);
  font-size: 24px;
}

@media (min-width: 768px) {
  .app-flex:hover {
    color: var(--hover);
    opacity: 1;
  }

  .app-flex:hover .app-head {
    color: var(--hover);
    border-bottom: solid 4px var(--hover);
  }

  .app-flex:hover .app-r {
    opacity: 0.6;
  }

  .app-flex:hover .text-btn-icon {
    color: var(--hover);
  }
}

@media (max-width: 767px) {
  .app-title {
    background: transparent url(../img/trait/app-title-bg-sp.jpg) no-repeat center top/cover;
  }

  .app-flex {
    flex-direction: column;
  }

  .app-l {
    width: 100%;
    margin-left: 20px;
  }

  .app-r {
    width: 100%;
  }

  .app-head {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .app-sub-title {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .app-container {
    flex-direction: column;
  }

  .app-box {
    width: 100%;
    padding: 24px 0 16px;
  }

  .app-box:nth-child(1) {
    margin-bottom: 48px;
  }

  .app-box-title h4 {
    font-size: 13px;
  }

  .app-box-text span {
    font-size: 19px;
  }

  .app-box-text {
    font-size: 15px;
    width: 80%;
  }
}



/* ==================================
  hiito
================================== */
.hiito-wrap {
  background-image: url(../img/trait/hiito-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;

  padding: 100px 0;
  position: relative;
}

.hiito-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fbe0b2;
  opacity: 0.6;
}

.hiito-title-box {
  font-weight: 700;
  font-family: var(--font-b);
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}

.hiito-head {
  font-size: 14px;
  color: var(--color-orange);
  display: inline-block;
  margin-bottom: 10px;
}

.hiito-head p {
  border-bottom: solid 4px var(--color-orange);
  display: inline;
  padding-bottom: 2px;
}

.hiito-logo {
  width: 47px;
  position: absolute;
  right: 0;
  transform: translateX(calc(145% + 55px + 12px));
  bottom: 0;
}

#hiito .deco-unique {
  transform: translateX(145%);
}

.hiito-list {
  justify-content: space-between;
  margin-bottom: 42px;
}

.hiito-item {
  width: 48.1%;
}

.hiito-list-img {
  border: solid 2px var(--color-grey3);
  border-radius: var(--px10);
  margin-bottom: 32px;
  overflow: hidden;
  transition: 0.3s all;
}

.hiito-link {
  display: block;
  color: var(--color-font);
}

.hiito-list-title {
  font-size: 23px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.hiito-list-text {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 14px;
}

.hiito-box-title {
  font-size: 25px;
  font-weight: 700;
  font-family: var(--font-b);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.hiito-box-title::before,
.hiito-box-title::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.hiito-box-title::before {
  background: var(--color-grey3);
  width: 100%;
}

.hiito-box-title::after {
  background: var(--color-green2);
  width: 16.2%;
}

.hiito-box-lead {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 38px;
}

.hiito-flex {
  justify-content: space-between;
  color: var(--color-font);
}

.hiito-l {
  width: 48.1%;
  border: solid 2px var(--color-grey3);
  border-radius: var(--px10);
  overflow: hidden;
  transition: 0.3s all;
}

.hiito-r {
  width: 49%;
}

.hiito-box-subtitle {
  font-size: 23px;
  font-weight: 700;
  font-family: var(--font-b);
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.hiito-box-text {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
}

.hiito-box-text p:nth-child(n+2) {
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 768px) {
  .hiito-link:hover {
    color: var(--hover);
    opacity: 1;
  }

  .hiito-link:hover .text-btn-icon {
    color: var(--hover);
  }

  .hiito-link:hover .hiito-list-img {
    opacity: 0.6;
  }

  .hiito-flex:hover {
    color: var(--hover);
    opacity: 1;
  }

  .hiito-flex:hover .text-btn-icon {
    color: var(--hover);
  }

  .hiito-flex:hover .hiito-l {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .hiito-wrap {
    padding: 50px 0;
  }

  .hiito-head {
    line-height: 2.1;
    margin-bottom: 10px;
  }

  .hiito-logo {
    bottom: 48px;
  }

  #hiito .deco-unique {
    transform: translateX(145%);
    bottom: 48px;
    top: auto;
  }

  #hiito .common-sub-title {
    font-size: 30px;
  }

  .hiito-list {
    flex-direction: column;
  }

  .hiito-item {
    width: 100%;
  }

  .hiito-item:nth-child(1) {
    margin-bottom: 40px;
  }

  .hiito-list-img {
    margin-bottom: 20px;
  }

  .hiito-box-title {
    font-size: 23px;
  }

  .hiito-box-lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hiito-flex {
    flex-direction: column;
  }

  .hiito-l {
    width: 100%;
    margin-bottom: 20px;
  }

  .hiito-r {
    width: 100%;
  }

  .hiito-box-text {
    letter-spacing: 0.02em;
  }
}

/* ==================================
  review
================================== */
.review-wrap {
  padding: 72px 0 60px;
  background: #fbf2ec;
}

.review-inner {
  width: 87.5%;
  margin: 0 auto;

}

.review-title {
  font-size: 38px;
  margin-bottom: 56px;
  text-align: center;
  color: #d97a46;
  letter-spacing: 0.02em;
  line-height: 1;
}

.review-container {
  background: #fff;
  border-radius: 10px;
  padding: 3.8% 2.2%;
  justify-content: space-between;
  margin-bottom: 36px;
}

.review-l {
  width: 49.1%;
  border-radius: 10px;
}

.review-r {
  width: 49.1%;
}

.review-text {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-b);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.review-note {
  text-align: right;
  font-size: 12px;
  margin-bottom: 50px;
}

.review-l-btn {
  width: min(360px, 68.5%);
  margin: 0 auto;
  position: relative;
  border: solid 1px #a5a5a5;
  text-align: center;
  transition: .3s ease-out;
}

.review-l-btn a {
  line-height: 65px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-b);
  color: var(--color-font);
  transition: .3s ease-out;
}

.review-l-btn .btn-icon {
  color: #d97a46;
}

.review-btn {
  width: 360px;
  margin: 0 auto;
  position: relative;
  border: solid 1px #d97a46;
  text-align: center;
  background: #fff;
  transition: .3s ease-out;
}

.review-btn a {
  line-height: 65px;
  display: block;
  font-weight: 700;
  font-family: var(--font-b);
  font-size: 16px;
  color: #d97a46;
  transition: .3s ease-out;
}

.review-btn .btn-icon {
  color: #d97a46;
  right: 5px;
}

@media (min-width: 768px) {
  .review-inner {
    min-width: 710px;
    max-width: 978px;
  }

  .review-l-btn:hover {
    border: solid 1px var(--hover);
    background: var(--hover);
  }

  .review-l-btn a:hover {
    color: #fff;
    opacity: 0.6;
  }

  .review-l-btn:hover .btn-icon {
    color: #fff;
  }

  .review-btn:hover {
    border: solid 1px var(--hover);
    background: var(--hover);
  }

  .review-btn a:hover {
    color: #fff;
  }

  .review-btn:hover .btn-icon {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .review-wrap {
    padding: 40px 0 30px;
  }

  .review-inner {
    width: 92%;
  }

  .review-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .review-container {
    flex-direction: column;
    margin-bottom: 20px;
    padding: 16px 0;
  }

  .review-l {
    width: 91.3%;
    margin: 0 auto 16px;
  }

  .review-r {
    width: 91.3%;
    margin: 0 auto;
  }

  .review-text {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .review-note {
    margin-bottom: 42px;
  }

  .review-l-btn {
    width: 100%;
  }

  .review-l-btn a {
    font-size: 14px;
    line-height: 60px;
  }

  .review-btn {
    width: 100%;
    border: solid 2px #d97a46;
  }

  .review-btn a {
    line-height: 60px;
  }
}

/* ==================================
  lineup
================================== */
.lineup-wrap {
  padding: 112px 0 172px;
}

.lineup-inner {
  width: 87.5%;
  margin: 0 auto;
}

.lineup-title {
  font-size: 38px;
  margin-bottom: 72px;
  text-align: center;
  line-height: 1;
}

.lineup-list {
  justify-content: space-between;
  margin-bottom: 30px;
}

.lineup-item {
  width: 29.9%;
  display: flex;
  height: auto;
  flex-direction: column;
}

.lineup-item-text {
  font-size: 20px;
  margin-bottom: 24px;
  height: 100%;
}

.lineup-img {
  margin-bottom: 24px;
}

#trait .trait-lineup-list__spec-item:first-child {
  border-top: 1px solid #d2d2d2;
}

#trait .trait-lineup-list__spec-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  line-height: 1.5;
  font-size: 14px;
}

#trait .trait-lineup-list__spec-item dt {
  background: #f3f3f3;
  padding: 10px 15px;
  width: 56.8%;
}

#trait .trait-lineup-list__spec-item dd {
  padding: 10px 3px 10px 12px;
}

.lineup-text {
  font-size: 12px;
  margin-bottom: 80px;
  letter-spacing: 0.02em;
  text-align: right;
}

.lineup-btn-list {
  justify-content: space-between;
}

.lineup-btn-item {
  width: 31.5%;
  border: solid 1px #a5a5a5;
  transition: .3s ease-out;
}

@media (min-width: 768px) {
  .lineup-inner {
    min-width: 710px;
    max-width: 978px;
  }

  .lineup-btn-item:hover {
    border: solid 1px var(--hover);
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .lineup-wrap {
    padding: 56px 0;
  }

  .lineup-inner {
    width: 92%;
  }

  .lineup-title {
    font-size: 26px;
    margin-bottom: 42px;
  }

  .lineup-list {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .lineup-item {
    width: 100%;
    margin-bottom: 64px;
  }

  .lineup-item:last-child {
    margin-bottom: 0;
  }

  .lineup-item-text {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .lineup-img {
    margin-bottom: 20px;
  }

  .lineup-text {
    margin-bottom: 40px;
    text-align: left;
  }

  .lineup-btn-list {
    flex-direction: column;
  }

  .lineup-btn-item {
    width: 100%;
    margin-bottom: 16px;
  }

  .lineup-btn-item:last-child {
    margin-bottom: 0;
  }
}

/* ==================================
  info
================================== */
.info-wrap {
  padding-bottom: 170px;
}

.info-inner {
  width: 87.5%;
  margin: 0 auto;
}

.info-title {
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-b);
  position: relative;
  padding-left: 20px;
  margin-bottom: 40px;
  line-height: 1.4;
}

.info-title::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #d97a46;
}

.info-btn {
  width: 100%;
  margin-bottom: 40px;
}

.info-link {
  border: solid 1px #a5a5a5;
  display: block;
  transition: .3s ease-out;
}

.info-list {
  justify-content: space-between;
  margin-bottom: 80px;
}

.info-item {
  width: 29.9%;
}

.info-co2 {
  width: 55.6%;
  margin: 0 auto;
}

.info-co2-link {
  color: var(--color-font);
  transition: .3s ease-out;
  display: block;
}

.info-co2-img {
  padding-bottom: 24px;
}

.info-co2-title {
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  transition: .3s ease-out;
}

.info-co2-title .text-btn-icon {
  color: #d97a46;
  font-size: 24px;
}

.info-co2-text {
  font-size: 14px;
  transition: .3s ease-out;
}

@media (min-width: 768px) {
  .info-inner {
    min-width: 710px;
    max-width: 978px;
  }

  .info-co2 {
    min-width: 710px;
    max-width: 978px;
  }

  .info-link:hover {
    border: solid 1px var(--hover);
    opacity: 0.6;
  }

  .info-co2-link:hover {
    color: var(--hover);
    opacity: 0.6;
  }


}

@media (max-width: 767px) {
  .info-wrap {
    padding-bottom: 142px;
  }

  .info-inner {
    width: 92%;
  }

  .info-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 24px;
  }

  .info-title::before {
    width: 3px;
  }

  .info-btn {
    margin-bottom: 16px;
  }

  .info-list {
    flex-direction: column;
    margin-bottom: 42px;
  }

  .info-item {
    width: 100%;
    margin-bottom: 16px;
  }

  .info-item:last-child {
    margin-bottom: 0;
  }

  .info-co2 {
    width: 100%;
  }

  .info-co2-img {
    padding-bottom: 20px;
  }

  .info-co2-title {
    font-size: 16px;
  }

  .info-co2-title .text-btn-icon {
    font-size: 27px;
    display: inline-block;
    position: relative;
    top: 5px;
    transform: none;
    right: auto;
    left: -8px;
  }
}
}
}