@charset "UTF-8";
/* ガイドトリガーボタン */
.guide-trigger {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}
.guide-trigger__button {
  gap: 8px;
  padding: 6px 16px;
  background: -webkit-gradient(linear, left top, right top, from(#F8CD42), color-stop(#A2FFEC), to(#51BE75));
  background: linear-gradient(90deg, #F8CD42, #A2FFEC, #51BE75);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.2;
  padding: 2px;
  width: 220px;
}
.guide-trigger__button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.guide-trigger__button > span {
  background-color: #fff;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 10px;
  padding-left: 74px;
}
.guide-trigger__label {
  font-weight: 700;
}
.guide-trigger__label > span {
  font-weight: 500;
  opacity: 0.6;
  font-size: 12px;
  display: block;
}
.guide-trigger__icon {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ガイドコンテナ */
.guide-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  height: 460px;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

/* ガイドヘッダー */
.guide-header {
  background: #329C57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  height: 50px;
  border-radius: 10px 10px 0 0;
  position: relative;
  gap: 8px;
}
.guide-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.guide-header__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.guide-header__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.guide-header__button:hover {
  background: #eee;
}

.guide-header__button svg {
  width: 20px;
  height: 20px;
  color: #666;
}

.guide-body {
  background-color: #ECF8F0;
  padding: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.guide-tab {
  padding: 4px 0;
  border: none;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  background: rgba(27, 129, 98, 0.1);
  color: rgba(27, 129, 98, 0.6);
}
.guide-tab:hover, .guide-tab.active {
  background: #1B8162;
  color: #fff;
}

/* ガイドコンテンツ */
.guide-content {
  position: relative;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
}

.guide-section {
  display: none;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
}

.guide-section.active {
  display: block;
}

.guide-section h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #329C57;
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #EDF0F5;
}

.guide-section p {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.guide-section__link {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.guide-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 24px;
  background: #1B8162;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.guide-link:hover {
  background: #1f9672;
}