@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background-color: #fff;
}

body {
  font-family: Roboto, Helvetica, Arial, "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "黑體-繁", "Heiti TC", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

main {
  color: #646464;
}

a {
  color: #646464;
  text-decoration: none;
}
a:hover {
  color: #3287d2;
  text-decoration: none;
}

pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

b {
  font-weight: bold;
}

select {
  -webkit-appearance: none;
  padding-left: 6px;
  padding-right: 1.5rem;
  border-radius: 0.25rem;
  background: white url("../img/caret-down.svg") no-repeat center right 5px;
  background-size: 0.8rem 0.8rem;
}
select::-ms-expand {
  display: none;
}
select.page-select {
  color: #646464;
  background-color: #fff;
  background-image: none;
  border-radius: 0;
}
select.page-select:hover {
  color: #3e3e3e;
  background-color: #ebebeb;
}

.my-input {
  -webkit-appearance: none;
  padding: 0 6px;
  background-color: white;
  border: 1px inset;
}

.-text-black {
  color: #000;
}

a.-text-black:hover {
  color: #000;
}

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

a.-text-white:hover {
  color: #b3b3b3;
}

.-text-gray {
  color: #646464;
}

a.-text-gray:hover {
  color: #181818;
}

.-text-red {
  color: #96241e;
}

a.-text-red:hover {
  color: #170505;
}

.-text-orange {
  color: #e66e3c;
}

a.-text-orange:hover {
  color: rgb(189.2386363636, 72.7840909091, 24.2613636364);
}

.-text-yellow {
  color: #ffaf19;
}

a.-text-yellow:hover {
  color: rgb(203.5, 132.7173913043, 0);
}

.-text-green {
  color: #5aa564;
}

a.-text-green:hover {
  color: rgb(63, 115.5, 70);
}

.-text-bluegreen {
  color: #49a29b;
}

a.-text-bluegreen:hover {
  color: rgb(49.2361702128, 109.2638297872, 104.5425531915);
}

.-text-blue {
  color: #3287d2;
}

a.-text-blue:hover {
  color: rgb(33.03, 95.42, 150.47);
}

.-text-lightblue {
  color: #009cff;
}

a.-text-lightblue:hover {
  color: rgb(0, 109.2, 178.5);
}

#header, #footer a, .-text-white {
  color: #fff;
}
#header:hover, #footer a:hover, .-text-white:hover {
  color: #b3b3b3;
}

.button {
  display: inline-block;
  border: none;
  padding: 0.2rem 1rem;
  font-size: 1rem;
  color: #fff;
  background-color: #000;
}
.button:hover {
  cursor: pointer;
  color: #ebebeb;
  background-color: #000;
}
.button:focus {
  outline: none;
}
.button__icon {
  color: inherit;
  font-size: inherit;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-left: 0.5rem;
}
.button__icon--right {
  position: absolute;
  right: 8px;
}
.button__icon--left {
  position: absolute;
  left: 8px;
}
.button--black {
  color: #fff;
  background-color: #000;
}
.button--black:hover {
  color: #ebebeb;
  background-color: black;
}
.button--white {
  color: #fff;
  background-color: #fff;
}
.button--white:hover {
  color: #ebebeb;
  background-color: #ccc;
}
.button--gray {
  color: #fff;
  background-color: #646464;
}
.button--gray:hover {
  color: #ebebeb;
  background-color: #313131;
}
.button--red {
  color: #fff;
  background-color: #96241e;
}
.button--red:hover {
  color: #ebebeb;
  background-color: rgb(86.25, 20.7, 17.25);
}
.button--orange {
  color: #fff;
  background-color: #e66e3c;
}
.button--orange:hover {
  color: #ebebeb;
  background-color: rgb(189.2386363636, 72.7840909091, 24.2613636364);
}
.button--yellow {
  color: #fff;
  background-color: #ffaf19;
}
.button--yellow:hover {
  color: #ebebeb;
  background-color: rgb(203.5, 132.7173913043, 0);
}
.button--green {
  color: #fff;
  background-color: #5aa564;
}
.button--green:hover {
  color: #ebebeb;
  background-color: rgb(63, 115.5, 70);
}
.button--bluegreen {
  color: #fff;
  background-color: #49a29b;
}
.button--bluegreen:hover {
  color: #ebebeb;
  background-color: rgb(49.2361702128, 109.2638297872, 104.5425531915);
}
.button--blue {
  color: #fff;
  background-color: #3287d2;
}
.button--blue:hover {
  color: #ebebeb;
  background-color: rgb(33.03, 95.42, 150.47);
}
.button--lightblue {
  color: #fff;
  background-color: #009cff;
}
.button--lightblue:hover {
  color: #ebebeb;
  background-color: rgb(0, 109.2, 178.5);
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .page-title {
    height: 200px;
  }
}
.page-title__icon {
  height: 5rem;
  width: 5rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 0 6px #646464;
}
@media (max-width: 767.98px) {
  .page-title__icon {
    height: 4rem;
    width: 4rem;
  }
}
.page-title__text {
  margin: 0 0.5rem;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
  text-shadow: 0 0 6px #646464;
}
@media (max-width: 767.98px) {
  .page-title__text {
    font-size: 2.2rem;
  }
}

#page-title-bg {
  background-image: url("../img/econavi/econavi0521_02_bg.jpg?d=20250311");
}
@media (max-width: 767.98px) {
  #page-title-bg {
    background-image: url("../img/econavi/econavi0605_mobile.jpg?d=20250224");
  }
}
#page-title-bg .page-title__icon {
  box-shadow: 0 0 6px #5aa564;
}
#page-title-bg .page-title__text {
  text-shadow: 0 0 6px #5aa564;
}

.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.econavi-box {
  overflow: hidden;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.econavi-box > * {
  width: 100%;
}
@media (max-width: 991.98px) {
  .econavi-box {
    width: 100%;
    flex-direction: column-reverse;
  }
}

.econavi__text-box {
  padding: 2rem;
}
@media (max-width: 991.98px) {
  .econavi__text-box {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0;
    order: 2;
  }
}

.eco__name {
  font-size: 1.3rem;
  margin: 1rem 2rem 1rem 0rem;
  color: #000;
}
.eco__detail {
  font-size: 1rem;
  margin: 0rem 2rem 0.5rem 0rem;
  color: #646464;
  font-weight: normal;
}
.eco__img-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 991.98px) {
  .eco__img-box {
    flex-direction: column;
  }
}
.eco__img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .eco__img {
    height: auto;
  }
}
.eco__title {
  font-size: 1.8rem;
  color: #3FA989;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.eco__info-box {
  flex: 5;
}
@media (max-width: 991.98px) {
  .eco__info-box {
    width: 100%;
    flex-direction: column;
  }
}
.eco__icon-box {
  width: 100px;
  height: 100px;
}
@media (max-width: 991.98px) {
  .eco__icon-box {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767.98px) {
  .eco__icon-box {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575.98px) {
  .eco__icon-box {
    width: 70px;
    height: 70px;
  }
}
.eco__icon {
  width: 100px;
  height: 100px;
  padding-top: 1rem;
  padding-right: 1rem;
}
@media (max-width: 991.98px) {
  .eco__icon {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767.98px) {
  .eco__icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575.98px) {
  .eco__icon {
    width: 70px;
    height: 70px;
  }
}
.eco__box-img {
  overflow: hidden;
  margin: 1rem auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.eco__sm {
  font-size: 0.8rem;
  color: #646464;
}

.econavi__title {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

#header {
  background: linear-gradient(to bottom, #646464, #464646);
  position: relative;
}
#header .header__logo {
  width: 100%;
  margin-left: -12px;
}
@media (max-width: 991.98px) {
  #header .header__logo {
    max-width: 136px;
  }
}
#header .header__right {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  #header .header__right {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
}
#header .header__menu-item.active {
  background: url("../images/header/caret-up.png") no-repeat center bottom;
  background-clip: padding-box;
}

.subheader {
  display: none;
  background: linear-gradient(to top, #282828, #343434);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
.subheader.active {
  display: block;
}
@media (max-width: 991.98px) {
  .subheader {
    display: none;
  }
}

#footer {
  padding: 0.5rem 0;
  background-color: #464646;
  color: #cacaca;
}

.pagefooter__legal__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-top: 1.5rem;
}
.pagefooter__legal__links__item {
  display: inline-block;
  padding: 0 10px;
  white-space: nowrap;
}

.item-card {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.item-card__img-box {
  width: 30%;
  margin-right: 5%;
  flex-grow: 1;
}
.item-card__img {
  width: 100%;
  height: 160px;
  padding: 0.5rem;
  object-fit: contain;
}
.item-card__body {
  width: 65%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 575.98px) {
  .item-card__img-box {
    width: 45%;
  }
  .item-card__body {
    width: 50%;
  }
}

.note {
  margin-top: 2rem;
}

.hidden {
  opacity: 0;
}
