@charset "UTF-8";
/* THP Inc. トップページ プレビュー */

.thp {
  --pink: #ee2b78;
  --yellow: #f7d629;
  --blue: #18a7df;
  --green: #22c7a8;
  --ink: #2b3038;
  --muted: #5f6672;
  --line: #e8ebf0;
  --soft: #f5f9fc;
  --cream: #fbf6ec;
  --shadow: 0 18px 44px rgba(20, 32, 56, .12);
  --shadow-sm: 0 10px 28px rgba(20, 32, 56, .10);
  --container: 1180px;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.thp *,
.thp *::before,
.thp *::after {
  box-sizing: border-box;
}

.thp a {
  color: inherit;
  text-decoration: none;
}

.thp img {
  display: block;
  max-width: 100%;
  height: auto;
}

.thp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thp__container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.thp-ico {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.thp-btn:hover {
  transform: translateY(-2px);
}

.thp-btn--sm {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 15px;
}

.thp-btn--pink {
  color: #fff !important;
  background: linear-gradient(90deg, #ec1670, #f23b91);
  box-shadow: 0 12px 24px rgba(238, 43, 120, .28);
}

.thp-btn--pink:visited,
.thp-btn--pink:hover,
.thp-btn--pink:focus {
  color: #fff !important;
}

.thp-btn--yellow {
  color: #4b4118;
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(247, 214, 41, .32);
}

.thp-btn--white {
  color: var(--ink);
  background: #fff;
  border-color: #cfd5dc;
  box-shadow: 0 8px 18px rgba(20, 32, 56, .06);
}

.thp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(232, 235, 240, .72);
  backdrop-filter: blur(12px);
}

.admin-bar.thp .thp-header {
  top: 32px;
}

.thp-header__inner {
  width: 100%;
  max-width: 1280px;
  height: 88px;
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.thp-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.thp-logo__mark {
  width: 48px;
  height: 48px;
}

.thp-logo__img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 54px;
  object-fit: contain;
}

.thp-logo__text {
  display: grid;
  line-height: 1.05;
}

.thp-logo__name {
  font-size: 34px;
  font-weight: 800;
}

.thp-logo__tag {
  font-size: 10px;
  font-weight: 800;
}

.thp-nav {
  margin-left: auto;
}

.thp-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.thp-nav .sub-menu {
  display: none;
}

.thp-nav a {
  font-size: 14px;
  font-weight: 800;
}

.thp-nav a:hover {
  color: var(--pink);
}

.thp-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20, 32, 56, .08);
  appearance: none;
}

.thp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: var(--ink);
}

.thp-hero {
  position: relative;
  min-height: 545px;
  overflow: hidden;
  background: #fff;
}

.thp-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 48%;
}

.thp-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 30%, rgba(255,255,255,.26) 58%, rgba(255,255,255,.06) 100%),
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 55%, rgba(255,255,255,.24) 100%);
}

.thp-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 545px;
  display: flex;
  align-items: center;
}

.thp-hero__copy {
  width: min(100%, 560px);
  padding-top: 18px;
}

.thp-hero__title {
  margin: 0 0 22px;
  font-size: 60px;
  line-height: 1.22;
  font-weight: 800;
}

.thp-hero__title span {
  color: var(--pink);
}

.thp-hero__lead {
  margin: 0 0 28px;
  font-size: 17px;
  font-weight: 800;
  color: #343a44;
}

.thp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.thp-deco,
.thp-yoyo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.thp-deco--hero-left {
  width: 220px;
  height: 380px;
  left: -130px;
  top: 0;
  border-radius: 0 180px 180px 0;
  background: var(--yellow);
  opacity: .66;
}

.thp-deco--hero-right {
  width: 210px;
  height: 210px;
  right: -78px;
  bottom: -28px;
  border-radius: 52% 48% 0 0;
  background: var(--blue);
  opacity: .72;
}

.thp-yoyo--hero {
  width: 86px;
  left: 22px;
  bottom: 78px;
}

.thp-news {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.thp-news__bar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  min-height: 78px;
  overflow: hidden;
  padding: 18px 42px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(232, 235, 240, .92);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.thp-news__label {
  flex: 0 0 auto;
  padding: 4px 13px;
  border-radius: 999px;
  color: var(--pink);
  background: #ffe8f1;
  font-size: 12px;
  font-weight: 800;
}

.thp-news time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.thp-news__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thp-news__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #3a404a;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.thp-section {
  position: relative;
  padding: 84px 0;
}

.thp-sec {
  margin-bottom: 36px;
}

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

.thp-sec--left {
  text-align: left;
}

.thp-sec h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
}

.thp-sec p {
  margin: 6px 0 0;
  color: #3c424d;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

.thp-work {
  background:
    radial-gradient(circle at 7% 18%, rgba(238, 43, 120, .10) 0 14px, transparent 15px),
    radial-gradient(circle at 92% 10%, rgba(34, 199, 168, .12) 0 16px, transparent 17px),
    #fff;
}

.thp-work__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.thp-work-card {
  position: relative;
  display: block;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .9);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.thp-work-card:focus-visible,
.thp-member:focus-visible {
  outline: 3px solid rgba(238, 43, 120, .35);
  outline-offset: 4px;
}

.thp-work-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.thp-work-card__icon {
  position: absolute;
  top: -32px;
  left: 28px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 22px rgba(20, 32, 56, .16);
  z-index: 2;
}

.thp-work-card__svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thp-work-card__body {
  min-height: 166px;
  padding: 22px 22px 32px;
}

.thp-work-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.thp-work-card p {
  margin: 0;
  color: #555d68;
  font-size: 13px;
  font-weight: 700;
}

.thp-round-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.thp-round-link .thp-ico {
  width: 15px;
  height: 15px;
}

.thp-color--yellow {
  color: #4d4210 !important;
  background: var(--yellow);
}

.thp-color--pink {
  color: #fff !important;
  background: var(--pink);
}

.thp-color--blue {
  background: var(--blue);
}

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

.thp-activity {
  background:
    radial-gradient(circle at 2% 62%, rgba(238, 43, 120, .10) 0 38px, transparent 39px),
    radial-gradient(circle at 96% 70%, rgba(24, 167, 223, .12) 0 16px, transparent 17px),
    #fff;
}

.thp-activity__layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.thp-activity__aside,
.thp-products__aside,
.thp-sns__aside,
.thp-team__aside {
  min-width: 0;
}

.thp-carousel {
  min-width: 0;
}

.thp-carousel__track {
  display: flex;
  gap: 22px;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.thp-carousel__track::-webkit-scrollbar {
  display: none;
}

.thp-activity-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .9);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.thp-activity-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
}

.thp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #4d4210;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.thp-activity-card__body {
  padding: 18px 20px 20px;
}

.thp-activity-card time {
  display: block;
  color: #626873;
  font-size: 12px;
  font-weight: 800;
}

.thp-activity-card h3 {
  margin: 6px 0 12px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.thp-activity-card p {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.thp-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.thp-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8dde4;
}

.thp-dots button.is-active {
  background: var(--pink);
}

.thp-products {
  background:
    radial-gradient(circle at 7% 15%, rgba(247, 214, 41, .16) 0 20px, transparent 21px),
    radial-gradient(circle at 92% 78%, rgba(238, 43, 120, .10) 0 18px, transparent 19px),
    var(--cream);
}

.thp-products__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.thp-product-row {
  position: relative;
  min-width: 0;
}

.thp-product-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 0;
  padding: 16px 16px 18px;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .9);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.thp-product-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 12px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.thp-product-card__link {
  display: block;
}

.thp-product-card__img--oil {
  object-position: 24% 18%;
}

.thp-product-card__img--yoyo {
  object-position: 42% 72%;
}

.thp-product-card__img--book {
  filter: saturate(.9) brightness(1.12);
  object-position: 45% 42%;
}

.thp-product-card__img--case {
  object-position: 77% 22%;
}

.thp-product-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 150px;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
  background: #f7fbfd;
}

.thp-product-card__visual::before,
.thp-product-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.thp-product-card__visual::before {
  width: 82px;
  height: 82px;
  border: 16px solid var(--blue);
  background: #fff;
  box-shadow: inset 0 0 0 10px rgba(247, 214, 41, .65), 0 12px 24px rgba(20, 32, 56, .10);
}

.thp-product-card__visual::after {
  width: 128px;
  height: 54px;
  border-top: 3px dashed rgba(43, 48, 56, .18);
  transform: rotate(-18deg);
}

.thp-product-card__visual--oil {
  background: linear-gradient(135deg, #fff9d9, #f2fbff);
}

.thp-product-card__visual--oil::before {
  width: 46px;
  height: 92px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(#2b3038 0 14px, transparent 14px),
    linear-gradient(#fff 0 56px, #ffe9a8 56px 100%);
}

.thp-product-card__visual--kit {
  background: linear-gradient(135deg, #fff1f7, #f6fffb);
}

.thp-product-card__visual--kit::before {
  width: 96px;
  height: 112px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(238, 43, 120, .16) 0 10px, transparent 10px),
    repeating-linear-gradient(180deg, #fff 0 14px, #e8f4fb 14px 16px);
  transform: rotate(-7deg);
}

.thp-product-card__visual--case {
  background: linear-gradient(135deg, #eef9ff, #fffdf2);
}

.thp-product-card__visual--case::before {
  width: 96px;
  height: 74px;
  border: 0;
  border-radius: 16px;
  background: #2f3440;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .18), 0 12px 24px rgba(20, 32, 56, .14);
}

.thp-product-card__visual--case::after {
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: none;
}

.thp-product-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.thp-product-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.thp-product-card small {
  color: #68707b;
  font-size: 10px;
}

.thp-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.thp-arrow--prev {
  left: -24px;
}

.thp-arrow--next {
  right: -24px;
}

.thp-sns {
  background: #fff;
}

.thp-sns__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.thp-sns__lead {
  margin: 28px 0 24px;
  font-size: 14px;
  font-weight: 800;
}

.thp-sns__icons {
  display: flex;
  gap: 18px;
}

.thp-sns__icons a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
}

.thp-sns__svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thp-sns__svg--fill {
  fill: currentColor;
  stroke: none;
}

.thp-sns__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.thp-sns-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.thp-sns-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thp-sns-card span {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, .72);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.thp-sns-card__svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thp-sns-card__svg--fill {
  fill: currentColor;
  stroke: none;
}

.thp-team {
  background:
    linear-gradient(90deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 1) 42%, rgba(245, 249, 252, 1));
}

.thp-team__layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.thp-team__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
}

.thp-member {
  display: block;
  text-align: center;
}

.thp-member__photo {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eaf0f5;
  background-image: url("../img/preview/sns-team.png");
  background-repeat: no-repeat;
  background-size: 265%;
  box-shadow: 0 8px 18px rgba(20, 32, 56, .08);
}

.thp-member__pos1 {
  background-position: 5% 18%;
}

.thp-member__pos2 {
  background-position: 34% 7%;
}

.thp-member__pos3 {
  background-position: 50% 24%;
}

.thp-member__pos4 {
  background-position: 74% 7%;
}

.thp-member__pos5 {
  background-position: 96% 34%;
}

.thp-member h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.thp-member p {
  margin: 2px 0 0;
  color: #606773;
  font-size: 11px;
  font-weight: 800;
}

.thp-cta {
  padding: 56px 0 76px;
  background: #fff;
}

.thp-cta__box {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  overflow: hidden;
  padding: 24px 34px;
  border: 2px solid var(--yellow);
  border-radius: 28px;
  background:
    radial-gradient(circle at 4% 10%, rgba(247, 214, 41, .18) 0 35px, transparent 36px),
    radial-gradient(circle at 96% 90%, rgba(24, 167, 223, .12) 0 34px, transparent 35px),
    #fffdf7;
}

.thp-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.thp-cta h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 800;
}

.thp-cta p {
  margin: 0 0 18px;
  color: #3e4550;
  font-size: 13px;
  font-weight: 800;
}

.thp-cta__illust {
  position: relative;
  width: 142px;
  height: 136px;
  margin-inline: auto;
  border-radius: 48% 52% 46% 54%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 13px, transparent 14px),
    radial-gradient(circle at 50% 50%, #23b6e6 0 34px, transparent 35px),
    linear-gradient(135deg, #fff3ad, #f7d629);
}

.thp-cta__illust::before {
  content: "";
  position: absolute;
  inset: 21px 17px auto auto;
  width: 58px;
  height: 58px;
  border: 7px solid #23b6e6;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 10px, #ffeff7 11px 18px, transparent 19px);
  box-shadow: 0 12px 22px rgba(24, 167, 223, .18);
}

.thp-cta__illust::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 32px;
  width: 78px;
  height: 42px;
  border-top: 2px dashed rgba(238, 43, 120, .55);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.thp-cta__illust--right {
  transform: scaleX(-1);
  background:
    radial-gradient(circle at 50% 50%, #fff 0 13px, transparent 14px),
    radial-gradient(circle at 50% 50%, #ee2b78 0 34px, transparent 35px),
    linear-gradient(135deg, #ffeff7, #f7d629);
}

.thp-footer {
  padding: 58px 0 24px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.thp-footer__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  gap: 42px;
  align-items: start;
}

.thp-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.thp-footer-menu {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 26px;
  width: 100%;
}

.thp-footer-menu li {
  min-width: 0;
}

.thp-footer h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
}

.thp-footer__nav a {
  display: block;
  margin-top: 8px;
  color: #5e6570;
  font-size: 12px;
  font-weight: 700;
}

.thp-footer__contact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 32, 56, .05);
}

.thp-footer__contact p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.thp-footer__copy {
  margin: 34px 0 0;
  color: #8b929c;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.thp-page {
  background:
    radial-gradient(circle at 4% 24%, rgba(247, 214, 41, .15) 0 44px, transparent 45px),
    radial-gradient(circle at 94% 28%, rgba(24, 167, 223, .12) 0 24px, transparent 25px),
    #fff;
}

.thp-page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 58px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(245, 249, 252, .96)),
    radial-gradient(circle at 12% 20%, rgba(238, 43, 120, .10), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.thp-page-hero::before,
.thp-page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.thp-page-hero::before {
  width: 220px;
  height: 220px;
  left: -90px;
  top: -70px;
  background: rgba(247, 214, 41, .55);
}

.thp-page-hero::after {
  width: 140px;
  height: 140px;
  right: -45px;
  bottom: -60px;
  background: rgba(24, 167, 223, .20);
}

.thp-page-hero .thp__container {
  position: relative;
  z-index: 2;
}

.thp-page-hero__label,
.thp-single__cat {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 4px 14px;
  color: var(--pink);
  background: #ffe8f1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.thp-page-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.28;
  font-weight: 800;
}

.thp-single__hero time {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.thp-archive__section,
.thp-single__section,
.thp-page-content,
.thp-products-archive__section,
.thp-product-single__section {
  background: #fff;
}

.thp-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.thp-archive-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .94);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease;
}

.thp-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.thp-archive-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.thp-archive-card__body {
  padding: 20px 22px 24px;
}

.thp-archive-card time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.thp-archive-card h2 {
  margin: 7px 0 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

.thp-archive-card p,
.thp-empty {
  margin: 0;
  color: #555d68;
  font-size: 14px;
  font-weight: 700;
}

.thp-pagination {
  margin-top: 38px;
  text-align: center;
}

.thp-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.thp-pagination .page-numbers {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(20, 32, 56, .06);
}

.thp-pagination .current {
  color: #fff !important;
  background: var(--pink);
  border-color: var(--pink);
}

.thp-single__container {
  max-width: 920px;
}

.thp-single__article {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .94);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.thp-single__thumb {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.thp-single__content {
  padding: clamp(28px, 5vw, 54px);
  color: #343a44;
  font-size: 16px;
  font-weight: 700;
}

.thp-single__content > *:first-child {
  margin-top: 0;
}

.thp-single__content h2,
.thp-single__content h3 {
  color: var(--ink);
  font-weight: 800;
}

.thp-single__content h2 {
  margin: 2em 0 .7em;
  padding-bottom: .4em;
  border-bottom: 3px solid rgba(247, 214, 41, .65);
  font-size: 26px;
}

.thp-single__content h3 {
  margin: 1.8em 0 .6em;
  font-size: 21px;
}

.thp-single__content p {
  margin: 0 0 1.4em;
}

.thp-single__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.thp-page-content__container,
.thp-product-single__container {
  max-width: 960px;
}

.thp-page-content__body,
.thp-product-single__content {
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  color: #343a44;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .94);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  font-weight: 700;
}

.thp-page-content__body > *:first-child,
.thp-product-single__content > *:first-child {
  margin-top: 0;
}

.thp-page-content__body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.thp-page-content__body td,
.thp-page-content__body th {
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: #343a44;
  font-size: 15px;
}

.thp-page-content__body td:first-child,
.thp-page-content__body th:first-child {
  width: 28%;
  background: #f7fbfd;
  font-weight: 800;
}

.thp-page-content__body input,
.thp-page-content__body textarea,
.thp-page-content__body select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d6dce4;
  border-radius: 10px;
  background: #fff;
  color: #343a44;
  font: inherit;
}

.thp-page-content__body textarea {
  min-height: 160px;
}

.thp-page-content__body input[type="submit"],
.thp-page-content__body button[type="submit"] {
  width: auto;
  min-width: 220px;
  color: #fff !important;
  background: linear-gradient(90deg, #ec1670, #f23b91);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(238, 43, 120, .22);
}

.thp-page-content__body input[type="submit"]:hover,
.thp-page-content__body input[type="submit"]:focus,
.thp-page-content__body button[type="submit"]:hover,
.thp-page-content__body button[type="submit"]:focus {
  color: #fff !important;
}

.thp-products-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.thp-products-archive__card {
  flex: none;
}

.thp-products-archive__card h2 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.thp-product-single__price {
  margin: 18px 0 0;
  color: var(--pink);
  font-size: 22px;
  font-weight: 800;
}

.thp-product-single__container {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.thp-product-single__media {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .94);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.thp-product-single__media img,
.thp-product-single__media .thp-product-card__visual {
  width: 100%;
  height: 320px;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 1100px) {
  .thp-header__inner {
    height: 78px;
    padding-inline: 22px;
  }

  .thp-logo__name {
    font-size: 26px;
  }

  .thp-nav ul {
    gap: 18px;
  }

  .thp-hero,
  .thp-hero__inner {
    min-height: 510px;
  }

  .thp-hero__title {
    font-size: 50px;
  }

  .thp-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .thp-activity__layout,
  .thp-products__layout,
  .thp-sns__layout,
  .thp-team__layout {
    grid-template-columns: 1fr;
  }

  .thp-activity__aside,
  .thp-products__aside,
  .thp-sns__aside,
  .thp-team__aside {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
  }

  .thp-sec {
    margin-bottom: 0;
  }

  .thp-team__grid {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .thp-footer__layout {
    grid-template-columns: 1fr;
  }

  .thp-footer__nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .thp-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thp-products-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .admin-bar.thp .thp-header {
    top: 46px;
  }

  .thp__container {
    padding-inline: 18px;
  }

  .thp-header__inner {
    height: 70px;
    padding-inline: 16px;
  }

  .thp-logo__mark {
    width: 40px;
    height: 40px;
  }

  .thp-logo__img {
    max-width: 180px;
    max-height: 42px;
  }

  .thp-logo__name {
    font-size: 23px;
  }

  .thp-nav {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    display: none;
    margin: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .thp-nav.is-open {
    display: block;
  }

  .thp-nav ul {
    display: grid;
    gap: 10px;
  }

  .thp-header__cta {
    display: none;
  }

  .thp-burger {
    display: flex;
    margin-left: auto;
  }

  .thp-hero,
  .thp-hero__inner {
    min-height: 620px;
  }

  .thp-hero__image {
    height: 56%;
    inset: auto 0 0;
    object-position: 67% 48%;
  }

  .thp-hero__shade {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 47%, rgba(255,255,255,.38) 72%, rgba(255,255,255,.05) 100%);
  }

  .thp-hero__inner {
    align-items: flex-start;
    padding-top: 58px;
  }

  .thp-hero__title {
    font-size: 40px;
  }

  .thp-hero__lead {
    font-size: 15px;
  }

  .thp-hero__actions {
    gap: 12px;
  }

  .thp-btn {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .thp-news {
    margin-top: -28px;
  }

  .thp-news__bar {
    min-height: 64px;
    padding: 14px 18px;
    gap: 10px;
    border-radius: 18px;
  }

  .thp-news time,
  .thp-news__more {
    display: none;
  }

  .thp-section {
    padding: 64px 0;
  }

  .thp-sec h2 {
    font-size: 26px;
  }

  .thp-work__grid {
    grid-template-columns: 1fr;
  }

  .thp-activity__aside,
  .thp-products__aside,
  .thp-sns__aside,
  .thp-team__aside {
    align-items: flex-start;
    flex-direction: column;
  }

  .thp-activity-card {
    flex-basis: 82%;
  }

  .thp-product-card {
    flex-basis: 66%;
  }

  .thp-arrow {
    display: none;
  }

  .thp-sns__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thp-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .thp-member__photo {
    width: 112px;
    height: 112px;
  }

  .thp-cta__box {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .thp-cta__illust {
    display: none;
  }

  .thp-cta h2 {
    font-size: 22px;
  }

  .thp-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thp-footer-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thp-page-hero {
    padding: 58px 0 42px;
  }

  .thp-archive__grid {
    grid-template-columns: 1fr;
  }

  .thp-archive-card img {
    height: 210px;
  }

  .thp-single__article {
    border-radius: 18px;
  }

  .thp-single__content {
    font-size: 15px;
  }

  .thp-page-content__body,
  .thp-product-single__content {
    font-size: 15px;
  }

  .thp-page-content__body table,
  .thp-page-content__body tbody,
  .thp-page-content__body tr,
  .thp-page-content__body td,
  .thp-page-content__body th {
    display: block;
    width: 100%;
  }

  .thp-products-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thp-product-single__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .thp-hero__title {
    font-size: 36px;
  }

  .thp-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .thp-product-card {
    flex-basis: 78%;
  }

  .thp-footer__nav {
    grid-template-columns: 1fr;
  }

  .thp-footer-menu {
    grid-template-columns: 1fr;
  }

  .thp-products-archive__grid {
    grid-template-columns: 1fr;
  }
}
