@charset "UTF-8";
.flag--new {
  background-color: #16160e;
  border-radius: 1em;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 8px;
  margin-right: 2px;
  position: relative;
}

@-webkit-keyframes scroll-icon {
  0% {
    bottom: 24px;
  }
  33% {
    bottom: 16px;
  }
  100% {
    bottom: 24px;
  }
}

@keyframes scroll-icon {
  0% {
    bottom: 24px;
  }
  33% {
    bottom: 16px;
  }
  100% {
    bottom: 24px;
  }
}
.modal-component--new {
  z-index: 10000;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-component--new.-opened {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}
.modal-component--new.-opened .modal-component--new__header,
.modal-component--new.-opened .modal-component--new__main,
.modal-component--new.-opened .modal-component--new__footer,
.modal-component--new.-opened .modal-component--new__scroll-icon {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s 0.5s, visibility 0.25s 0.5s;
}
.modal-component--new.not-available {
  z-index: 10001;
}
.modal-component--new.-header-fixed .modal-component--new__header-buffer {
  height: 60px;
}
.modal-component--new.-header-fixed .modal-component--new__header {
  background-color: #ffffff;
  border-radius: 6px 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.modal-component--new.-footer-fixed .modal-component--new__footer-buffer {
  height: 88px;
}
.modal-component--new.-footer-fixed .modal-component--new__main {
  padding-bottom: 0;
}
.modal-component--new.-footer-fixed .modal-component--new__footer {
  background-color: #ffffff;
  border-radius: 0 0 6px 6px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding-top: 20px;
}

.modal-component--new__wrapper {
  display: none;
}

.modal-component--new__overlay {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.modal-component--new__overlay > span {
  position: absolute;
  z-index: -1;
  opacity: 0;
  font-size: 10px;
  white-space: nowrap;
}

.modal-component--new__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal-component--new__x {
  background: none;
  border: 0;
  position: absolute;
  padding: 16px;
  right: 0;
  top: -36px;
  cursor: pointer;
  overflow: hidden;
}
.modal-component--new__x::before, .modal-component--new__x::after {
  content: "";
  height: 32px;
  width: 2px;
  position: absolute;
  background-color: #fff;
  right: 12px;
  top: 0;
}
.modal-component--new__x::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-component--new__x::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-component--new__x > span {
  font-size: 10px;
  white-space: nowrap;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.modal-component--new__body {
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
  overflow-y: auto;
  width: calc(100vw - 32px);
  max-height: calc(100vh - 112px);
}

.modal-component--new__header {
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal-component--new__header-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.modal-component--new__main {
  padding: 16px 20px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.modal-component--new__main > :first-child {
  margin-top: 0 !important;
}
.modal-component--new__main > :last-child {
  margin-bottom: 0 !important;
}

.modal-component--new__footer {
  padding: 0 16px 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  overflow: hidden;
}
.modal-component--new__footer > :first-child {
  margin-top: 0 !important;
}
.modal-component--new__footer > :last-child:not(.modal-component--new__button-wrap) {
  margin-bottom: 0 !important;
}

.modal-component--new__button-wrap {
  display: flex;
  justify-content: center;
  margin: 0 -16px -16px 0;
}
.modal-component--new__button-wrap.-type-vertical {
  flex-direction: column;
}
.modal-component--new__button-wrap.-type-vertical .modal-component--new__button {
  flex-shrink: 0;
  width: calc(100% - 16px);
}
.modal-component--new__button-wrap.-type-vertical.-type-select {
  flex-direction: column-reverse;
}
.modal-component--new__button-wrap .modal-component--new__button {
  margin: 0 16px 16px 0;
  margin-right: 16px;
  margin-bottom: 16px;
  flex-grow: 1;
  flex-basis: 100%;
  width: auto;
}

.modal-component--new__scroll-icon {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 2;
  display: block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
  height: 64px;
  border-radius: 0 0 6px 6px;
}
.modal-component--new__scroll-icon.is-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  transition: opacity 0.25s, visibility 0.25s !important;
}
.modal-component--new__scroll-icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0.5;
  position: absolute;
  bottom: 24px;
  left: calc(50% - 8.5px);
  z-index: 1;
  -webkit-animation: scroll-icon 0.6s infinite;
          animation: scroll-icon 0.6s infinite;
}
.modal-component--new__scroll-icon > span {
  position: absolute;
  z-index: -1;
  opacity: 0;
  font-size: 10px;
  white-space: nowrap;
}

.title {
  margin-bottom: 40px;
  font-size: 2rem;
}

.guide-detail_body {
  margin-bottom: 128px;
  font-size: 1rem;
}
.guide-detail_body > :not(:first-child) {
  margin: 0 0 50px;
}
.guide-detail_body > :not(:first-child).guide-detail-title {
  margin: 30px 0 20px;
}
.guide-detail_body a:hover img {
  opacity: 0.88;
}

.guide-detail-main-image > img {
  border-radius: 0.6rem;
  width: 100%;
  height: auto;
}

.guide-detail-image > img {
  border: 1px solid #efefef;
}

.guide-detail-image__price {
  background-color: #ad0003;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

.guide-detail-title {
  position: relative;
  font-weight: 700;
}
.guide-detail-title.size-large {
  font-size: 1.25rem;
  line-height: 1.3;
}
.guide-detail-title.size-large.border-left {
  padding-left: 12px;
}
.guide-detail-title.size-large.border-left::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 6px;
  background-color: #ad0003;
}
.guide-detail-title.size-medium {
  font-size: 1.125rem;
  line-height: 1.5;
}
.guide-detail-title.size-small {
  font-size: 1rem;
  line-height: 1.5;
}

.guide-detail-title__text {
  padding-bottom: 4px;
}

.guide-detail-anchor {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  color: #0065dc;
}
.guide-detail-anchor > a:hover {
  text-decoration: underline;
}
.guide-detail-anchor.is-right {
  justify-content: flex-end;
  text-align: right;
}

.guide-detail-movie {
  width: 100%;
  max-width: 796px;
  max-height: 580px;
  margin: auto;
  padding-top: 56%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
.guide-detail-movie > iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.guide-detail-text {
  line-height: 1.8;
  letter-spacing: 0.6px;
}
.guide-detail-text.has-image {
  margin-top: -5px;
}
.guide-detail-text.has-image::after {
  content: "";
  display: block;
  clear: both;
}

.guide-detail-text__image {
  text-align: center;
}

.guide-detail-text__content {
  line-height: 1.8;
  letter-spacing: 0.6px;
}

.guide-detail-text__caption {
  margin-bottom: 8px;
  color: #6f6f6f;
  font-size: 0.75rem;
}

.guide-detail-note {
  line-height: 1.8;
  letter-spacing: 0.6px;
  color: #e8000a;
}

.guide-detail-box {
  padding: 28px 24px;
  background-color: #f6f6f6;
}

.guide-detail-box__title {
  font-size: 18px;
  margin-bottom: 18px;
}

.guide-detail-box__content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.guide-detail-box__image {
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 16px;
  border: 1px solid #efefef;
}

.guide-detail-box__text {
  line-height: 1.8;
  letter-spacing: 0.6px;
  margin-top: -5px;
}

.guide-detail-card {
  border: solid #efefef;
  border-width: 1px 1px 3px 1px;
  border-radius: 4px;
  overflow: hidden;
}
.guide-detail-card .guide-detail-card__image {
  position: relative;
  box-sizing: border-box;
}
.guide-detail-card .guide-detail-card__image > img {
  width: 100%;
}
.guide-detail-card .guide-detail-card__city {
  font-size: 0.875rem;
  line-height: 1;
  color: #6b6b6b;
  margin-bottom: 8px;
}
.guide-detail-card .guide-detail-card__title {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 10px;
}
.guide-detail-card .guide-detail-card__stock {
  line-height: 1;
  font-size: 0.875rem;
  display: inline-block;
}
.guide-detail-card .guide-detail-card__stock--slightly {
  color: #e8000a;
  font-weight: bold;
}
.guide-detail-card .guide-detail-card__review {
  line-height: 1;
  margin-top: 16px;
}
.guide-detail-card .guide-detail-card__review:hover span {
  text-decoration: underline;
}
.guide-detail-card .guide-detail-card__review a {
  display: block;
  font-size: 0.875rem;
  color: #0065dc;
}
.guide-detail-card .guide-detail-card__review .icn-message {
  margin-right: 4px;
}
.guide-detail-card .guide-detail-card__price {
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: #ad0003;
  display: inline-block;
  margin-right: 18px;
}
.guide-detail-card .guide-detail-card__price span {
  margin-right: 4px;
}
.guide-detail-card .guide-detail-card__description {
  margin-top: 12px;
  font-size: 0.875rem;
  color: #6f6f6f;
  line-height: 1.5;
}
.guide-detail-card .guide-detail-card__buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
.guide-detail-card .speed-shipping__wrap {
  margin-top: 16px;
}
.guide-detail-card .speed-shipping__wrap .speed-shipping-label {
  padding-right: 4px;
}
.guide-detail-card .speed-shipping__wrap .speed-shipping-label__sub {
  font-size: 0.875rem;
  padding-right: 4px;
}
.guide-detail-card .btn-passive--icon,
.guide-detail-card .btn-favorite,
.guide-detail-card .btn-positive,
.guide-detail-card .btn-active--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 40px;
}
.guide-detail-card .btn-positive,
.guide-detail-card .btn-passive--icon,
.guide-detail-card .btn-active--icon {
  font-size: 0.875rem !important;
}
.guide-detail-card .btn-rebuild.on .btn-active__icon {
  -webkit-animation: beat 0.4s ease-in-out;
          animation: beat 0.4s ease-in-out;
}
.guide-detail-card .btn-rebuild .btn-passive__icon {
  -webkit-animation: blink 0.4s ease;
          animation: blink 0.4s ease;
}
.guide-detail-card.-large {
  padding: 24px;
  margin-bottom: 32px;
}
.guide-detail-card.-large .soldflg:hover,
.guide-detail-card.-large .prepareflg:hover {
  cursor: pointer;
}
.guide-detail-card.-large .guide-detail-card__image {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #efefef;
}
.guide-detail-card.-large .guide-detail-card__image img {
  width: 100%;
}
.guide-detail-card.-large .btn-passive--icon i:before {
  color: #6f6f6f;
  font-weight: 700;
}
.guide-detail-card.-large .btn-passive--icon,
.guide-detail-card.-large .btn-active--icon {
  width: 145px;
  margin-right: 10px;
}
.guide-detail-card.-large .btn-passive--icon i:before,
.guide-detail-card.-large .btn-active--icon i:before {
  font-size: 1rem !important;
}
.guide-detail-card.-large .btn-positive {
  width: 273px;
}
.guide-detail-card.-large .btn-positive.-full-width {
  width: 100%;
}
.guide-detail-card.-large .btn-rebuild span {
  margin: 0 !important;
}
.guide-detail-card.-large .btn-passive__text {
  letter-spacing: 0;
}
.guide-detail-card.-disabled .soldflg:hover,
.guide-detail-card.-disabled .prepareflg:hover {
  cursor: default;
}
.guide-detail-card.-small {
  margin-bottom: 20px;
  position: relative;
}
.guide-detail-card.-small .guide-detail-card__content {
  padding: 20px 10px;
}
.guide-detail-card.-small .guide-detail-card__city {
  font-size: 0.875rem;
}
.guide-detail-card.-small .guide-detail-card__buttons-area {
  padding-bottom: 60px;
}
.guide-detail-card.-small .guide-detail-card__buttons {
  position: absolute;
  width: calc(100% - 20px);
  bottom: 20px;
}
.guide-detail-card.-small .btn-favorite {
  width: 53px;
  border-radius: 0.25rem;
  flex-shrink: 0;
  margin-right: 8px;
}
.guide-detail-card.-small .btn-passive__icon:before {
  color: #6f6f6f;
  font-weight: 700;
}
.guide-detail-card.-small .btn-passive__icon,
.guide-detail-card.-small .btn-active__icon {
  margin-right: 0;
}
.guide-detail-card.-small .btn-passive__icon:before,
.guide-detail-card.-small .btn-active__icon:before {
  top: 4px;
  margin-left: 1px;
}
.guide-detail-card.-small .icon_favorite {
  display: inline !important;
}
.guide-detail-card.-small .icon_favorite_img {
  width: 28px;
}

.guide-detail-card__list {
  display: flex;
  flex-wrap: wrap;
}
.guide-detail-card__list > .guide-detail-card {
  width: calc(50% - 6px);
  box-sizing: border-box;
}

.guide-detail-project .guide-detail-project__title {
  font-size: 1.125rem;
  line-height: 1.44;
  border-top: solid 2px #16160e;
  border-bottom: solid 1px #16160e;
  padding: 16px 0;
  margin-bottom: 20px;
}
.guide-detail-project .guide-detail-project__media {
  margin-bottom: 24px;
}
.guide-detail-project .guide-detail-project__image {
  position: relative;
}
.guide-detail-project .guide-detail-project__image .image {
  width: 100%;
}
.guide-detail-project .guide-detail-project__image .complete,
.guide-detail-project .guide-detail-project__image .soon {
  position: absolute;
}
.guide-detail-project .guide-detail-project__image .complete {
  width: 70px;
  top: 8px;
  left: 8px;
}
.guide-detail-project .guide-detail-project__image .soon {
  width: 108px;
  left: 8px;
}
.guide-detail-project .guide-detail-project__content {
  width: 100%;
}
.guide-detail-project .guide-detail-project__price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  word-break: keep-all;
}
.guide-detail-project .guide-detail-project__price .tag {
  border-radius: 20px;
  padding: 6px 12px;
  margin: 0 12px 0 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.guide-detail-project .guide-detail-project__price .price {
  font-size: 26px;
  letter-spacing: 0;
}
.guide-detail-project .guide-detail-project__meter {
  background: url(/gcf/images_cf/bg_02.gif) repeat top left;
  width: 100%;
  height: 33px;
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.guide-detail-project .guide-detail-project__meter .meter {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #59b052;
}
.guide-detail-project .guide-detail-project__meter .meter.-achieved {
  background-color: #f2b02d;
}
.guide-detail-project .guide-detail-project__meter .percentage {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
}
.guide-detail-project .guide-detail-project__target {
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1;
}
.guide-detail-project .guide-detail-project__status {
  margin-bottom: 16px;
  display: flex;
}
.guide-detail-project .guide-detail-project__status p {
  background: #f6f6f6;
  width: 50%;
  text-align: center;
  padding: 16px 0;
  font-size: 0.875rem;
  line-height: 1;
}
.guide-detail-project .guide-detail-project__status p:first-child {
  border-right: solid 1px #ffffff;
  border-radius: 4px 0 0 4px;
}
.guide-detail-project .guide-detail-project__status p:last-child {
  border-left: solid 1px #ffffff;
  border-radius: 0 4px 4px 0;
}
.guide-detail-project .guide-detail-project__status p .number {
  margin-left: 4px;
  font-size: 1.25rem;
  font-weight: 700;
}
.guide-detail-project .guide-detail-project__status p .unit {
  font-weight: 700;
}
.guide-detail-project .guide-detail-project__place {
  line-height: 1;
  margin-bottom: 16px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.guide-detail-project .guide-detail-project__place i {
  font-size: 1rem;
  margin-right: 4px;
}
.guide-detail-project .guide-detail-project__sdgs {
  display: flex;
  align-items: center;
}
.guide-detail-project .guide-detail-project__sdgs dt {
  font-size: 0.875rem;
  margin-right: 8px;
}
.guide-detail-project .guide-detail-project__sdgs ul {
  display: flex;
}
.guide-detail-project .guide-detail-project__sdgs ul li {
  list-style: none;
}
.guide-detail-project .guide-detail-project__sdgs ul li:not(:last-child) {
  margin-right: 4px;
}
.guide-detail-project .guide-detail-project__sdgs ul li img {
  width: 34px;
}
.guide-detail-project .guide-detail-project__buttons .btn-passive--icon,
.guide-detail-project .guide-detail-project__buttons .btn-active--icon {
  height: 48px;
  width: 172px;
  margin-right: 4px;
}
.guide-detail-project .guide-detail-project__buttons .btn-passive--icon i,
.guide-detail-project .guide-detail-project__buttons .btn-active--icon i {
  margin: 0 !important;
}
.guide-detail-project .guide-detail-project__buttons .guide-detail-project__button {
  background: #2e792d;
  color: #ffffff;
  font-size: 1rem;
  display: inline-block;
  padding: 12px 0;
  text-align: center;
  border-radius: 0.25rem;
  width: 100%;
}
.guide-detail-project .guide-detail-project__description {
  background: #f6f6f6;
  padding: 24px;
  border-radius: 0.25rem;
  margin-top: 24px;
}
.guide-detail-project .guide-detail-project__description h4 {
  margin-bottom: 5px;
}
.guide-detail-project .guide-detail-project__products {
  margin: 32px 0 24px;
  font-size: 1.125rem;
}

.guide-detail-list__projects .grid > li {
  list-style: none !important;
  margin-bottom: 20px;
}
.guide-detail-list__projects .card-project {
  box-sizing: border-box;
}
.guide-detail-list__projects .card-project__title {
  height: 78px;
}

.modal-component[data-modal-id=confirm] .modal-component__body,
.modal-component[data-modal-id=questionnaire] .modal-component__body,
.modal-component[data-modal-id=questionnaireConfirm] .modal-component__body,
.modal-component[data-modal-id=complete] .modal-component__body {
  padding: 0;
  max-height: calc(100vh - 100px);
}

.app-message.app-message__wrap {
  margin: 20px 16px 30px !important;
}
.app-message .app-message-list li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  vertical-align: middle;
  border-radius: 50%;
  background: #16160e;
  margin: 0 calc(0.5em - 1.5px);
}

.featured-part__section {
  margin: 0 16px 40px;
}

.featured-part__banner {
  border: 1px solid #efefef;
}

.featured-part__section-title {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #16160e;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.featured-part__section-title [class^=icn-] {
  margin-right: 8px;
  vertical-align: middle;
}

.featured-part__tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: -10px;
}
.featured-part__tags > li {
  margin: 0 5px 10px 0;
}
.featured-part__tags > li > a {
  display: block;
  padding: 5px 16px;
  border: solid 1px #efefef;
  border-radius: 13px;
  background-color: #f6f6f6;
  font-size: 0.875rem;
  line-height: 1;
}
.featured-part__tags > li > a:hover {
  border-color: #16160e;
  background-color: #16160e;
  color: #ffffff;
}
.featured-part__banners > li {
  margin: 0 48px 14px;
}
.featured-part__banners > li > a:hover {
  opacity: 0.88;
}
.featured-part__banners > li img {
  border: solid 1px #efefef;
}

.guide-detail_body a.link-txt {
  color: #1e50a2;
  text-decoration: underline;
}

.guide-detail_body a.link-txt:hover {
  text-decoration: none;
  cursor: pointer;
}

.guide-detail_body p.gd-atc-p {
  margin: 32px 0 0;
  line-height: 1.8;
}

.guide-detail_body ul.gd-atc-ul,
.guide-detail_body ol.gd-atc-ol {
  margin: 12px 0;
  line-height: 1.8;
}

.gd-atc-p .insert-img {
  border-radius: 0.6rem;
}

ul.gd-atc-ul,
ol.gd-atc-ol {
  padding-left: 24px;
  list-style: disc;
}

.gd-atc-li {
  list-style: disc;
  padding-top: 5px;
}

.gd-atc-li:first-child {
  padding-top: 0;
}

.gd-atc-li::marker {
  color: #ad0003;
}

p.gd-atc-p.sm-ft {
  font-size: 0.875rem;
}

.deco-wrap {
  margin-top: 12px;
  padding: 24px 30px;
  border-radius: 0.25rem;
  overflow: hidden;
}

.deco-wrap p.gd-atc-p,
.deco-wrap li.gd-atc-li {
  font-size: 15px;
}

.deco-wrap p.gd-atc-p + .gd-atc-ul-wrap {
  padding-top: 5px;
}

.deco-wrap .gd-atc-ul-wrap + .gd-atc-ul-wrap {
  padding-top: 5px;
}

.deco-wrap p.gd-atc-p,
.deco-wrap ul.gd-atc-ul,
.deco-wrap ol.gd-atc-ol {
  margin: 0;
}

/* 装飾ブロック */
.deco-wrap.outline1 {
  border: 1px solid #dfdfdf;
}

.deco-wrap.outline2 {
  border: 2px solid #dfdfdf;
  border-radius: 10px;
}

.deco-wrap.bg1 {
  background-color: #f9f9f9;
}

.deco-wrap.bg2 {
  background-color: #fff8f8;
}

.deco-wrap.bg3 {
  background-color: #fbf7f5;
}

.deco-wrap.bg4 {
  background-color: #fbf8f3;
}

/* table */
.gd-atc-table-wrap table.simple-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.25rem;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  width: 100%;
  margin: 30px 0 0;
  display: table;
}

.gd-atc-table-wrap table th.gd-atc-th {
  font-weight: normal;
  font-size: 0.875rem;
  padding: 10px 10px;
  vertical-align: middle;
  background-color: #f6f0e6;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}

.gd-atc-table-wrap table thead th.gd-atc-th {
  border-right: 1px solid #ffffff;
  border-bottom: none;
}

.gd-atc-table-wrap table td.gd-atc-td {
  padding: 18px 10px;
  font-size: 0.875rem;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
  background-color: unset;
  border-bottom: none;
}

.gd-atc-table-wrap table th.gd-atc-th:last-child,
.gd-atc-table-wrap table td.gd-atc-td:last-child {
  border-right: none;
}

.gd-atc-table-wrap table.simple-table.color2 thead th.gd-atc-th {
  background-color: #fde9e9;
}

.gd-atc-table-wrap table.simple-table.color2 td.gd-atc-td {
  background-color: #fdfafa;
}

.gd-atc-table-wrap table.simple-table.horizontal tr:nth-child(even) {
  background-color: #f9f9f9;
}

.w-5 {
  width: 5% !important;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.mw-80 {
  min-width: 80px !important;
}

.mw-100 {
  min-width: 100px !important;
}

.mw-150 {
  min-width: 150px !important;
}

.mw-200 {
  min-width: 200px !important;
}

.is-nowrap {
  white-space: nowrap !important;
}

/* 目次 */
.gd-atc-mokuji {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 0.25rem;
}

.gd-atc-mokuji p.gd-atc-p {
  font-weight: 700;
  color: #444;
  font-size: 15px;
  margin: 0;
}

.gd-atc-mokuji .table_of_contents {
  padding-top: 10px;
}

.gd-atc-mokuji .tb-cont-item a.table_of_contents-link {
  border-bottom: 1px solid #ebebeb;
  display: block;
  padding: 7px 0 4px 20px;
  font-size: 15px;
  color: #444;
  position: relative;
}

.gd-atc-mokuji .tb-cont-item a.table_of_contents-link:before {
  background: #d7d7d7;
  border-radius: 2px;
  flex: none;
  height: 4px;
  width: 4px;
  max-width: 100%;
  content: "";
  position: absolute;
  top: 46%;
  left: 5px;
}

.gd-atc-mokuji .tb-cont-item a.table_of_contents-link:hover {
  color: #8d8b8b;
}

.gd-atc-mokuji .tb-cont-item:last-child a.table_of_contents-link {
  border: none;
}

.gd-atc-mokuji .tb-cont-item.tb-cont-indent-2 {
  margin-left: 22px;
  display: none;
}

/* 見出し */
.gd-atc-h2 {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  margin-top: 70px;
  border-bottom: 3px solid #eee;
  padding: 0 0 10px;
}

.gd-atc-h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 30px;
  height: 3px;
  background: #ad0003;
}

.gd-atc-h3 {
  font-size: 22px;
  font-weight: 700;
  position: relative;
  margin-top: 50px;
  padding: 0 0 0 18px;
}

.gd-atc-h3::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #ad0003;
  border-radius: 2px;
}

/* ボタン */
p.linkbutton1 {
  text-align: center;
  margin: 25px auto;
}

p.linkbutton1 a {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  display: block;
  border: 2px solid #1e50a2;
  border-radius: 5px;
  color: #1e50a2;
  position: relative;
  transition: all 0.2s;
}

p.linkbutton1 a:hover {
  background-color: #f5f9ff;
}

.btn-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.2s;
}

.btn-arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1e50a2;
  border-right: 2px solid #1e50a2;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

p.linkbutton1 a:hover .btn-arrow {
  right: 16px;
}

/* ===== CTAブロック ===== */
.cta-bridge {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
  color: #111827;
}

.bridge-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 16px;
}

.gift-section {
  margin-top: 32px;
}

.gift-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gift-intro {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
}

/* カード群 */
.gift-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gift-card {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e5e7eb;
}

.gift-card img {
  width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f3f4f6;
}

.gift-copy {
  font-size: 0.875rem;
  color: #1f2937;
}

/* CTA */
.cta-area {
  margin-top: 48px;
  padding: 40px 24px;
  background: #f6f8fb;
  border-radius: 1rem;
  text-align: center;
  position: relative;
}

.cta-area::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #e5e7eb;
}

.cta-button {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
}

.cta-button:hover {
  background: #1d4ed8;
}

.cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

@media only screen and (min-width: 835px), (min-device-width: 835px) {
  .goods_list .flag--new {
    top: -0.1em;
  }
  .modal-component--new.-header-fixed .modal-component--new__header-buffer {
    height: 68px;
  }
  .modal-component--new.-footer-fixed .modal-component--new__footer-buffer {
    height: 96px;
  }
  .modal-component--new.-footer-fixed .modal-component--new__footer {
    padding-top: 24px;
  }
  .modal-component--new__body {
    width: auto;
  }
  .modal-component--new__body.-size-s {
    width: 410px;
  }
  .modal-component--new__body.-size-m {
    width: 660px;
  }
  .modal-component--new__body.-size-l {
    width: 964px;
  }
  .modal-component--new__header {
    padding: 18px 24px;
  }
  .modal-component--new__main {
    padding: 24px;
  }
  .modal-component--new__footer {
    padding: 0 24px 24px;
  }
  .page-guide-detail {
    margin-bottom: 128px;
  }
  .guide-detail-inner {
    width: 796px;
    margin: 56px auto;
  }
  .guide-detail_body > :not(:first-child).guide-detail-title {
    margin: 48px 0 20px;
  }
  .guide-detail-image__price {
    font-size: 1.25rem;
  }
  .guide-detail-title.size-large.border-left {
    padding-left: 16px;
  }
  .guide-detail-title.size-large.border-left::before {
    width: 6px;
    border-radius: 6px;
  }
  .guide-detail-title.size-large {
    font-size: 1.5rem;
  }
  .guide-detail-title.size-medium {
    font-size: 1.25rem;
  }
  .guide-detail-text__image {
    width: 320px;
  }
  .guide-detail-text__image.is-left {
    float: left;
    margin-right: 24px;
  }
  .guide-detail-text__image.is-right {
    float: right;
    margin-left: 24px;
  }
  .guide-detail-box__content {
    flex-direction: row;
    justify-content: space-between;
  }
  .guide-detail-box__image {
    width: calc((100% - 40px) / 3);
    margin: 0 20px 0 0;
  }
  .guide-detail-box__text {
    margin-top: -6px;
  }
  .guide-detail-card:not(.-disabled):hover {
    cursor: pointer;
  }
  .guide-detail-card:not(.-disabled):hover .guide-detail-card__image {
    opacity: 0.88;
  }
  .guide-detail-card:not(.-disabled):hover .guide-detail-card__city,
  .guide-detail-card:not(.-disabled):hover .guide-detail-card__title,
  .guide-detail-card:not(.-disabled):hover .guide-detail-card__stock,
  .guide-detail-card:not(.-disabled):hover .guide-detail-card__description {
    text-decoration: underline;
    color: #0065dc;
  }
  .guide-detail-card .guide-detail-card__title {
    line-height: 1.38;
  }
  .guide-detail-card.-large .guide-detail-card__image {
    width: 296px;
    margin-right: 18px;
  }
  .guide-detail-card.-large .guide-detail-card__image + .guide-detail-card__content {
    display: inline-block;
    width: 426px;
  }
  .guide-detail-card__list > .guide-detail-card {
    margin-left: 20px;
    width: 252px;
  }
  .guide-detail-card__list > .guide-detail-card:first-child {
    margin-left: 0;
  }
  .guide-detail-card__list > .guide-detail-card:nth-child(3n+1) {
    margin-left: 0;
  }
  .guide-detail-project .guide-detail-project__title {
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 20px 0;
    margin-bottom: 32px;
  }
  .guide-detail-project .guide-detail-project__media {
    display: flex;
    margin-bottom: 32px;
  }
  .guide-detail-project .guide-detail-project__image {
    width: 388px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  .guide-detail-project .guide-detail-project__price {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .guide-detail-project .guide-detail-project__price .tag {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .guide-detail-project .guide-detail-project__price .tag:hover {
    background: #f6f6f6;
    cursor: default;
  }
  .guide-detail-project .guide-detail-project__price .price {
    font-size: 34px;
  }
  .guide-detail-project .guide-detail-project__meter .percentage {
    font-size: 20px;
  }
  .guide-detail-project .guide-detail-project__status p .number {
    font-size: 26px;
  }
  .guide-detail-project .guide-detail-project__buttons .btn-passive--icon i:before,
  .guide-detail-project .guide-detail-project__buttons .btn-active--icon i:before {
    top: 2px;
  }
  .guide-detail-project .guide-detail-project__buttons .guide-detail-project__button {
    width: 614px;
  }
  .guide-detail-project .guide-detail-project__buttons .guide-detail-project__button:hover {
    opacity: 0.88;
  }
  .guide-detail-project .guide-detail-project__description {
    margin-top: 32px;
  }
  .guide-detail-project .guide-detail-project__description h4 {
    font-size: 1.125rem;
  }
  .guide-detail-project .guide-detail-project__products {
    font-size: 1.25rem;
  }
  .featured-part__section {
    margin: 0 0 40px;
  }
  .featured-part__banners {
    margin: 0 0 14px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 16px;
  }
  .featured-part__banners > li {
    margin: 0 0 14px;
  }
}

@media screen and (min-width: 768px) {
  .modal-component--new__button-wrap {
    flex-wrap: wrap;
    width: auto;
  }
  .modal-component--new__button-wrap.-type-vertical {
    flex-direction: row;
  }
  .modal-component--new__button-wrap.-type-vertical .modal-component--new__button {
    width: auto;
  }
  .modal-component--new__button-wrap.-type-vertical.-type-select {
    flex-direction: row;
  }
  .modal-component--new__button-wrap .modal-component--new__button {
    flex-grow: 0;
    flex-basis: auto;
    min-width: 152px;
  }
  .modal-component--new p {
    font-size: 1rem;
  }
  .btn-positive {
    width: 244px;
  }
  .modal-component[data-modal-id=confirm] .modal-component__body,
  .modal-component[data-modal-id=questionnaire] .modal-component__body,
  .modal-component[data-modal-id=questionnaireConfirm] .modal-component__body,
  .modal-component[data-modal-id=complete] .modal-component__body {
    max-height: none;
  }
  .modal-component[data-modal-id=confirm] .modal-component__body .modal-component__main,
  .modal-component[data-modal-id=questionnaire] .modal-component__body .modal-component__main,
  .modal-component[data-modal-id=questionnaireConfirm] .modal-component__body .modal-component__main,
  .modal-component[data-modal-id=complete] .modal-component__body .modal-component__main {
    max-height: calc(100vh - 144px);
  }
}

@media only screen and (max-width: 834px) and (max-device-width: 834px) {
  .title {
    margin: 16px 0 32px;
    font-size: 1.5rem;
  }
  .guide-detail_body {
    margin: 0;
    padding: 16px;
    font-size: 0.875rem;
  }
  .guide-detail-text__content {
    margin-top: 16px;
  }
  .guide-detail-box__title {
    font-size: 1rem;
  }
  .guide-detail-card .guide-detail-card__stock {
    margin-bottom: 8px;
  }
  .guide-detail-card .btn-passive--icon,
  .guide-detail-card .btn-favorite,
  .guide-detail-card .btn-positive,
  .guide-detail-card .btn-active--icon {
    height: 44px;
  }
  .guide-detail-card.-large {
    padding: 16px;
  }
  .guide-detail-card.-large .guide-detail-card__image {
    margin-bottom: 16px;
  }
  .guide-detail-card.-large .btn-passive--icon,
  .guide-detail-card.-large .btn-active--icon {
    width: 40%;
  }
  .guide-detail-card.-large .btn-positive {
    width: 60%;
  }
  .guide-detail-card.-small .guide-detail-card__content {
    padding: 20px 8px;
  }
  .guide-detail-card.-small .guide-detail-card__city {
    font-size: 0.75rem;
  }
  .guide-detail-card.-small .guide-detail-card__price span {
    margin: 0 2px;
  }
  .guide-detail-card.-small .guide-detail-card__buttons-area {
    padding-bottom: 68px;
  }
  .guide-detail-card.-small .guide-detail-card__buttons {
    width: calc(100% - 16px);
  }
  .guide-detail-card.-small .btn-favorite {
    width: 44px;
  }
  .guide-detail-card.-small .icon_favorite_img {
    width: 24px;
  }
  .guide-detail-card__list > .guide-detail-card:nth-child(2n) {
    margin-left: 12px;
  }
  .guide-detail-project .guide-detail-project__image {
    margin-bottom: 20px;
  }
  .guide-detail-project .guide-detail-project__price .tag {
    margin: 0 6px 0 0;
  }
  .guide-detail-project .guide-detail-project__buttons {
    display: flex;
    align-items: center;
  }
  .guide-detail-project .guide-detail-project__buttons .btn-passive--icon,
  .guide-detail-project .guide-detail-project__buttons .btn-active--icon {
    width: 63px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
  }
  .guide-detail-project .guide-detail-project__buttons .btn-passive--icon i:before,
  .guide-detail-project .guide-detail-project__buttons .btn-active--icon i:before {
    font-size: 1.5rem !important;
    top: 10px;
    margin-left: 1px;
  }
  .guide-detail-list__projects .grid > li {
    width: calc(50% - 6px) !important;
  }
  .guide-detail-list__projects .grid > li:not(:nth-child(3n)) {
    margin-right: 0 !important;
  }
  .guide-detail-list__projects .grid > li:not(:nth-child(2n)) {
    margin-right: 12px !important;
  }
  .guide-detail-list__projects .card-project__title {
    height: 58px;
  }
  .ttl-h1 {
    font-size: 1.5rem;
  }
  .gd-atc-h2 {
    font-size: 22px;
    margin-top: 50px;
  }
  .gd-atc-h3 {
    font-size: 1.125rem;
    margin-top: 35px;
  }
  .guide-detail_body p.gd-atc-p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .guide-detail_body ul.gd-atc-ul,
  .guide-detail_body ol.gd-atc-ol {
    font-size: 1rem;
    line-height: 1.7;
    margin: 10px 0;
  }
  .deco-wrap {
    padding: 18px 20px;
  }
  .deco-wrap p.gd-atc-p,
  .deco-wrap li.gd-atc-li {
    font-size: 0.875rem;
  }
  .deco-wrap p.gd-atc-p,
  .deco-wrap ul.gd-atc-ul,
  .deco-wrap ol.gd-atc-ol {
    margin: 0;
  }
  .gd-atc-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gd-atc-table-wrap table.simple-table {
    margin-top: 24px;
    width: 100%;
    table-layout: auto;
  }
  .gd-atc-table-wrap table th.gd-atc-th {
    font-size: 13px;
    padding: 8px;
  }
  .gd-atc-table-wrap table td.gd-atc-td {
    word-break: break-all;
    white-space: normal;
    font-size: 13px;
    padding: 12px 8px;
    min-width: 120px;
  }
  .gd-atc-mokuji {
    padding: 16px;
  }
  .gd-atc-mokuji p.gd-atc-p {
    font-size: 0.875rem;
  }
  .gd-atc-mokuji .tb-cont-item a.table_of_contents-link {
    font-size: 0.875rem;
  }
  p.linkbutton1 a {
    width: 80%;
    font-size: 0.875rem;
    margin: 0 auto;
    padding: 8px;
  }
  .gift-card {
    flex-direction: row;
    padding: 16px;
    gap: 16px;
  }
  .gift-card img {
    width: 70px;
    height: 70px;
  }
  .gift-copy {
    font-size: 13px;
  }
}
