@charset "UTF-8";
body {
  background: transparent !important;
}
/*------------------------------------------------------------
breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  background: #f3f9f9;
  padding: 6px 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb {
    padding: 6px 0 0;
  }
}
.c-breadcrumb__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb__inner {
    display: flex;
    padding: 0 12px 4px;
    overflow: auto;
  }
}
.c-breadcrumb__item {
  display: inline;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb__item {
    word-break: keep-all;
    white-space: nowrap;
  }
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 4px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 7px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url("../../images/new_ui23/icon-arrow-right.svg") no-repeat center/cover;
  margin-left: 4px;
}
.c-breadcrumb__item a,
.c-breadcrumb__item span {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  color: #1c7e67;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .c-breadcrumb__item a,
.c-breadcrumb__item span {
    word-break: keep-all;
    white-space: nowrap;
  }
}
.c-breadcrumb__item span {
  color: #222;
}
/*------------------------------------------------------------
★ボタン
------------------------------------------------------------*/
.btn-favorite {
  width: 172px;
}
.btn-favorite__inner {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border: 2px solid #999999;
  border-radius: 8px;
  padding: 8px 5px;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .btn-favorite__inner {
    padding: 12px 5px;
  }
}
@media screen and (max-width: 375px) {
  .btn-favorite__inner {
    padding: 3.2vw 0;
  }
}
@media screen and (min-width: 751px) {
  .btn-favorite__inner:hover {
    opacity: 0.8;
  }
  .btn-favorite__inner:hover .btn-favorite__icon .off {
    opacity: 0;
  }
  .btn-favorite__inner:hover .btn-favorite__icon .on {
    opacity: 1;
  }
}
.btn-favorite__icon {
  display: block;
  width: 20px;
  position: relative;
  margin-right: 7px;
}
@media screen and (max-width: 750px) {
  .btn-favorite__icon {
    width: 20px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 375px) {
  .btn-favorite__icon {
    width: 4.8vw;
    margin-right: 2px;
    top: 0;
  }
}
.btn-favorite__icon img {
  display: block;
  width: 100%;
  transition: all 0.3s;
}
.btn-favorite__icon .on {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.btn-favorite__icon .active {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.btn-favorite__txt {
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: #666666;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .btn-favorite__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .btn-favorite__txt {
    font-size: 4vw;
  }
}
.btn-favorite.is-active .btn-favorite__icon .off {
  opacity: 0;
}
.btn-favorite.is-active .btn-favorite__icon .on {
  opacity: 0;
}
.btn-favorite.is-active .btn-favorite__icon .active {
  opacity: 1;
}
.btn-favorite--style1 .btn-favorite__inner {
  display: block;
  padding: 10px 5px 9px;
  text-align: center;
}
.btn-favorite--style1 .btn-favorite__icon {
  width: 20px;
  margin: 0 auto 3px;
}
.btn-favorite--style1 .btn-favorite__txt {
  font-size: 15px;
}
/*------------------------------------------------------------
list condition-icons
------------------------------------------------------------*/
.condition-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.condition-icons__item {
  background: #e1f4ed;
  border-radius: 8px;
  padding: 7px 8px 6px;
  position: relative;
  /*
  cursor: pointer;
  */
}
@media screen and (max-width: 1299px) {
  .condition-icons__item {
    padding: 7px 6px 6px;
  }
}
@media screen and (max-width: 750px) {
  .condition-icons__item {
    padding: 9px 8px 8px;
    margin: 0 4px 8px 0;
  }
}
.condition-icons__item.js-tooltip {
  cursor: pointer;
}
.condition-icons__item.js-tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #0e5645 transparent;
  position: absolute;
  bottom: -5px;
  left: 32px;
  z-index: 4;
  opacity: 0;
}
.condition-icons__item.js-tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: -9px;
  left: 32px;
  z-index: 5;
  opacity: 0;
}
.condition-icons__item.js-tooltip.is-right::after {
  left: auto;
  right: 30px;
}
.condition-icons__item.js-tooltip.is-right::before {
  left: auto;
  right: 30px;
}
.condition-icons__item.js-tooltip.disable {
  background: #f3f3f3;
}
.condition-icons__item.js-tooltip.disable > .condition-icons__txt {
  color: #666666;
}
.condition-icons__item.js-tooltip.disable > .condition-icons__txt::after {
  background: url("../../images/new_ui23/icon-x.svg") no-repeat center/cover;
}
@media screen and (min-width: 751px) {
  .condition-icons__item.js-tooltip:hover::before {
    opacity: 1;
  }
  .condition-icons__item.js-tooltip:hover::after {
    opacity: 1;
  }
  .condition-icons__item.js-tooltip:hover .condition-icons__tooltip {
    opacity: 1;
    visibility: visible;
  }
}

.condition-icons__item.is-open::before {
  opacity: 1;
}
.condition-icons__item.is-open::after {
  opacity: 1;
}
.condition-icons__item.is-open .condition-icons__tooltip {
  opacity: 1;
  visibility: visible;
}

.condition-icons__txt {
  font-size: 16px;
  line-height: 1.45;
  color: #0e5645;
  font-weight: bold;
}
@media screen and (max-width: 1299px) {
  .condition-icons__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .condition-icons__txt {
    font-size: 16px;
  }
}
.condition-icons__txt::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../../images/new_ui23/icon-circle.svg") no-repeat center/cover;
  display: inline-block;
  margin-left: 4px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 1299px) {
  .condition-icons__txt::after {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 750px) {
  .condition-icons__txt::after {
    width: 16px;
    height: 16px;
  }
}
.condition-icons__tooltip {
  width: 300px;
  background: #fff;
  border: 2px solid #0e5645;
  border-radius: 8px;
  padding: 9px 8px;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
.condition-icons__tooltip-txt {
  font-size: 15px;
  line-height: 1.45;
  color: #0e5645;
  font-weight: bold;
}
/*------------------------------------------------------------
help-tooltip
------------------------------------------------------------*/
.help-tooltip {
  position: relative;
}
.help-tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #f66700 transparent;
  position: absolute;
  bottom: -7px;
  left: 6px;
  z-index: 3;
  opacity: 0;
}
.help-tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6px 12px 6px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  bottom: -12px;
  left: 6px;
  z-index: 4;
  opacity: 0;
}
@media screen and (min-width: 751px) {
  .help-tooltip:hover::before {
    opacity: 1;
  }
  .help-tooltip:hover::after {
    opacity: 1;
  }
  .help-tooltip:hover .help-tooltip__info {
    opacity: 1;
    visibility: visible;
  }
}
.help-tooltip.is-open::before {
  opacity: 1;
}
.help-tooltip.is-open::after {
  opacity: 1;
}
.help-tooltip.is-open .help-tooltip__info {
  opacity: 1;
  visibility: visible;
}
.help-tooltip__icon {
  display: block;
  width: 24px;
  transition: all 0.3s;
  cursor: pointer;
}
.help-tooltip__icon img {
  width: 100%;
}
.help-tooltip__info {
  width: 450px;
  background: #fff;
  border: 2px solid #f66700;
  border-radius: 8px;
  padding: 9px 8px;
  position: absolute;
  left: -26px;
  top: calc(100% + 7px);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 750px) {
  .help-tooltip__info {
    width: 300px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.help-tooltip__txt {
  font-size: 15px;
  line-height: 1.45;
  color: #f66700;
  font-weight: bold;
}

/*------------------------------------------------------------
modal
------------------------------------------------------------*/
.c-modal {
  width: 100%;
  height: 100%;
  min-width: 980px;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 750px) {
  .c-modal {
    min-width: auto;
    background: rgba(34, 34, 34, 0.8);
  }
}
.c-modal.is-active {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.c-modal__close {
  width: 60px;
  height: 60px;
  background: #1c7e67;
  border-radius: 50%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-modal__close {
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
  }
}
.c-modal__close img {
  width: 20px;
}
@media screen and (max-width: 750px) {
  .c-modal__close img {
    width: 15px;
  }
}
.c-modal__wrap {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 70px 0 30px;
}
@media screen and (max-width: 750px) {
  .c-modal__wrap {
    padding: 50px 30px;
  }
}

.skeleton {
  display: block;
  background-color: rgba(0, 0, 0, 0.11);
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  animation: loading 2s ease-in-out 0.5s infinite;
}

@keyframes loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 750px) {
  .is-hidden-mobile {
    display: none;
  }
}

@media screen and (min-width: 751px) {
  .is-hidden-desktop {
    display: none;
  }
}
