@charset "utf-8";

/* --------------------------------------------------
initial settings
-------------------------------------------------- */
:root {
  --color-black: #090505;
  --color-yellow: #ffc107;
  --color-orange: #ff9800;
  --color-purple: #674ea9;
  --color-blue: #4400ff;
  --color-gray-01: #fafafa;
  --color-gray-02: #f4f4f4;
  --color-gray-03: #e3e2e3;
  --color-gray-04: #cccccc;
  --color-gray-05: #6a6a6a;
  --box-shadow-005: rgba(0, 0, 0, 0.05);
  --box-shadow-010: rgba(0, 0, 0, 0.1);
  --box-shadow-015: rgba(0, 0, 0, 0.15);
  --box-shadow-020: rgba(0, 0, 0, 0.2);
  --grad-yellow-orange: linear-gradient(90deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  --grad-yellow-orange-reverse: linear-gradient(-90deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  --grad-purple-blue: linear-gradient(90deg, var(--color-purple) 0%, var(--color-blue) 100%);
  --grad-purple-blue-reverse: linear-gradient(-90deg, var(--color-purple) 0%, var(--color-blue) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: var(--color-black);
}

html.is-active, body.is-active {
  touch-action: none;
  overflow: hidden;
  overscroll-behavior: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

ol, ul {
  list-style: none;
  line-height: 1.6;
}

ol.need-list-style, ul.need-list-style {
  list-style-type: disc;
  padding-inline-start: 16px;
}

ol.need-list-style ul, ul.need-list-style ul {
  list-style-type: circle;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-orange);
}

img {
  display: block;
  width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
}

input, textarea {
  font-size: 16px;
  font-family: inherit;
}

audio {
  display: block;
  width: 100%;
}

small {
  display: block;
  font-size: 12px;
}

small.inside-p {
  margin-top: 16px;
}

.underline {
  text-decoration: underline;
}

.font-bold {
  font-weight: bold;
}

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

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

.text-right {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .md_text-left {
    text-align: left;
  }

  .md_text-center {
    text-align: center;
  }

  .md_text-right {
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 96px;
  }

  p {
    font-size: 18px;
  }

  small.inside-p {
    font-size: 14px;
  }

  .lg_text-left {
    text-align: left;
  }

  .lg_text-center {
    text-align: center;
  }

  .lg_text-right {
    text-align: right;
  }
}


/* --------------------------------------------------
display hidden or block
-------------------------------------------------- */
.hidden {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .md_hidden {
    display: none !important;
  }

  .md_block {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .lg_hidden {
    display: none !important;
  }

  .lg_block {
    display: block !important;
  }
}

@media screen and (min-width: 1280px) {
  .xl_hidden {
    display: none !important;
  }

  .xl_block {
    display: block !important;
  }
}


/* --------------------------------------------------
bg setting
-------------------------------------------------- */
.bg-grad {
  position: relative;
  color: white;
}

.bg-gray, .bg-white {
  position: relative;
}

.bg-grad::before {
  background: var(--grad-purple-blue);
}

.bg-gray::before {
  background-color: var(--color-gray-01);
}

.bg-white::before {
  background-color: white;
}

.bg-grad::before, .bg-gray::before, .bg-white::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: skewY(4deg);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 10;
}


/* --------------------------------------------------
common
-------------------------------------------------- */
.artwork {
  box-shadow: 0 0 4px var(--box-shadow-010);
}

.color-yellow {
  color: var(--color-yellow);
}

.color-orange {
  color: var(--color-orange);
}

.color-purple {
  color: var(--color-purple);
}

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

.md_container {
  max-width: calc(768px - 48px);
  margin: 0 auto;
}

.lg_container {
  max-width: calc(1024px - 48px);
  margin: 0 auto;
}

.xl_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding-y {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-heading-title-en {
  font-family: "Josefin Sans";
  text-align: center;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 16px;
}

.section-heading-title-ja {
  text-align: center;
  font-size: 24px;
  line-height: 1.3;
}

.section-heading-title-slash {
  position: relative;
  height: 40px;
  margin: 20px 0 24px;
}

.section-heading-title-slash::after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 40px;
}

.color-orange.section-heading-title-slash::after {
  background-color: var(--color-orange);
}

.color-purple.section-heading-title-slash::after {
  background-color: var(--color-purple);
}

.box-padding-t-thick {
  padding-top: 64px;
}

.box-padding-t-thin {
  padding-top: 32px;
}

.box-heading-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
  .section-padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .box-padding-t-thick {
    padding-top: 104px;
  }

  .box-padding-t-thin {
    padding-top: 64px;
  }

  .section-heading-title-ja {
    font-size: 28px;
  }

  .box-heading-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}


/* --------------------------------------------------
header
-------------------------------------------------- */
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: auto;
}

.header.is-scroll {
  opacity: 0;
  pointer-events: none;
}

.header-inner {
  padding: 24px;
}

.head-logo {
  width: 120px;
}


/* --------------------------------------------------
hero
-------------------------------------------------- */
.hero {
  position: relative;
  height: 700px;
  margin-bottom: -3.5%;
}

.hero-img-wrapper {
  background-color: var(--color-gray-03);
  position: absolute;
  inset: 0;
  width: 100%;
}

.hero-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  inset: 0;
  width: 100%;
  background-image: url("../images/hero/hero.png");
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(277deg, rgba(255,255,255,0.1) 0 50%, rgba(255,255,255,0.99) 60%);
}

.hero-title-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-title {
  position: relative;
  z-index: 10;
  width: 100%;
  text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

.hero-title h1 {
  font-family: "Josefin Sans";
  font-size: 40px;
  line-height: 1;
}

.hero-title p {
  font-weight: bold;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .hero-title h1 {
    font-size: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .hero-img::before {
    background-image: linear-gradient(277deg, rgba(255,255,255,0.1) 0 50%, rgba(255,255,255,0.99) 70%);
  }
}


/* --------------------------------------------------
cta
-------------------------------------------------- */
.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.cta-text h2 {
  color: white;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.cta-btns li {
  width: 100%;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
  border-radius: 4px;
  color: white;
  font-weight: bold;
}

.cta-btn-orange {
  position: relative;
  background: linear-gradient(135deg, white 50%, var(--color-yellow) 50%, var(--color-orange));
  background-size: 300% 300%;
  background-position: bottom right;
  transition: color 0.5s ease, background-position 0.5s ease;
}

.cta-btn-orange:hover {
  color: var(--color-purple);
  background-position: top left;
}

.cta-btn-purple {
  border: 1px solid white;
  position: relative;
  background: linear-gradient(135deg, white 50%, transparent 50%);
  background-size: 300% 300%;
  background-position: bottom right;
  transition: color 0.5s ease, background-position 0.5s ease;
}

.cta-btn-purple:hover {
  color: var(--color-black);
  background-position: top left;
}

.cta-btn-text-en {
  font-family: "Josefin Sans";
  font-size: 28px;
}

.cta-btn-text-ja {
  font-size: 16px;
}

.cta-for-podcaster a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .cta-box {
    gap: 32px;
  }

  .cta-btns {
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .cta-text h2 {
    font-size: 28px;
  }

  .cta-btns {
    gap: 48px;
  }

  .cta-btn-text-en {
    font-size: 32px;
  }

  .cta-for-podcaster a {
    font-size: 16px;
  }
}


/* --------------------------------------------------
advertising-company
-------------------------------------------------- */
.ac-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.ac-list li {
  background-color: white;
  padding: 24px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .ac-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    max-width: 800px;
  }

  .ac-list li {
    padding: 24px 32px;
  }
}

/* @media screen and (min-width: 1280px) {
  .ac-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    max-width: 1280px;
  }

  .ac-list li {
    padding: 16px 20px;
  }
} */


/* --------------------------------------------------
about
-------------------------------------------------- */
.about-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-features-item {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 20px var(--box-shadow-005);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-features-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px var(--box-shadow-010);
}

.about-features-img {
  text-align: center;
}

.about-features-img i {
  font-size: 64px;
  background: var(--grad-yellow-orange);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-features-text h3 {
  font-size: 18px;
  text-align: center;
}

.about-features-text p {
  font-size: 16px;
  text-align: center;
  margin: 12px 0;
  color: var(--color-gray-05);
}

.about-features-text ul {
  font-size: 14px;
}

.about-available-list {
  display: flex;
  flex-direction: column;
  gap: calc(24px + 12px);
  margin-top: calc(24px + 16px);
}

.about-available-item {
  position: relative;
  padding: calc(24px + 12px) 24px 24px;
}

.about-available-item::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 16px;
  border: 4px solid transparent;
  background: var(--grad-purple-blue-reverse);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  z-index: -1;
}

.about-available-item h4 {
  color: white;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  background: var(--grad-purple-blue);
  border-radius: 32px;
  padding: 8px 0;
  position: absolute;
  top: -12px;
  left: 24px;
  right: 24px;
}

.about-available-item p {
  text-align: center;
  margin-bottom: 16px;
}

.about-available-program-list, .about-available-publisher-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.about-available-publisher-list + .about-available-program-list {
  margin-top: 24px;
}

.about-available-program-list li {
  width: calc((100% - 48px) / 4);
}

.about-available-publisher-list li {
  width: calc((100% - 48px) / 2);
}

.about-available-publisher-list li img {
  max-width: 312px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .about-features-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-features-text h3 {
    min-height: 58px;
  }

  .about-features-text p {
    min-height: 52px;
  }

  .about-available-program-list li {
    width: calc((100% - 80px) / 6);
  }
}

@media screen and (min-width: 1024px) {
  .about-features-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-available-list {
    flex-direction: row;
    gap: 24px;
    margin-top: calc(24px + 24px);
  }

  .about-available-item {
    padding: calc(32px + 20px) 32px 32px;
    width: calc((100% - 24px) / 2);
  }

  .about-available-item h4 {
    font-size: 18px;
    left: 40px;
    right: 40px;
  }

  .about-available-item p {
    margin-bottom: 32px;
  }
  
  .about-available-publisher-list {
    gap: 48px 32px;
  }

  .about-available-publisher-list + .about-available-program-list {
    margin-top: 48px;
  }
  

  .about-available-program-list li {
    width: calc((100% - 72px) / 4);
  }
}


/* --------------------------------------------------
case
-------------------------------------------------- */
.case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  color: var(--color-black);
}

.case-item-inner {
  background-color: var(--color-gray-02);
  box-shadow: 0 0 4px var(--box-shadow-020);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.case-desc {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  height: 168px;
}

.case-img {
  width: calc(25% - 8px);
  max-width: 136px;
}

.case-info {
  width: calc(75% - 8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-info img {
  background-color: white;
  width: 120px;
  padding: 2px 16px;
  object-fit: cover;
  border: 2px solid var(--color-gray-04);
  border-radius: 32px;
}

.case-info h3 {
  font-size: 16px;
  height: 52px;
  display: flex;
  align-items: center;
}

.case-info audio {
  height: 24px;
}

.case-detail {
  border-top: 1px dashed var(--color-gray-04);
}

.case-check {
  display: none;
}

.case-check:checked + .case-label + .case-text {
  padding: 16px;
  height: fit-content;
  opacity: 1;
  visibility: visible;
}

.case-check:checked + .case-label::before {
  transform: rotate(90deg);
}
.case-label {
  display: flex;
  align-items: center;
  padding: 16px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.case-label::before, .case-label::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 2px;
  height: 12px;
  background-color: var(--color-black);
}

.case-label::after {
  transform: rotate(90deg);
}

.case-text {
  padding: 0 16px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.case-text-desc + .case-text-desc {
  margin-top: 16px;
}

.case-text-desc h4 {
  background-color: var(--color-gray-05);
  color: white;
  font-size: 14px;
  text-align: center;
  border-radius: 32px;
  margin-bottom: 8px;
}

.case-text-desc p, .case-text-desc ul {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .case-list {
    grid-template-columns: 1fr 1fr;
  }
}


/* --------------------------------------------------
impact
-------------------------------------------------- */

.impact-hostread-graph-wrapper small {
  margin-top: 8px;
}

.impact-hostread-graph {
  background-color: white;
  color: var(--color-black);
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;
}

.impact-hostread-graph h4 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.personality {
  background: var(--grad-yellow-orange);
}

.non-personality {
  background-color: var(--color-gray-04);
}

.graph-adstype {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.graph-adstype li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.graph-adstype li span {
  display: inline-block;
  width: 1em;
  height: 1em;
}

.graph {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.graph-item {
  width: calc((100% - 64px) / 5);
  max-width: 80px;
}

.graph-bar-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  height: 10.5em;
}

.graph-bar {
  width: calc((100% - 8px) / 2);
  height: 0;
  transition: height 1s ease-out;
  position: relative;
  display: flex;
  justify-content: center;
}

.graph-bar span {
  position: absolute;
  top: -24px;
  font-size: 12px;
  font-weight: bold;
}

.graph-label {
  margin-top: 4px;
  font-size: 10px;
  height: 40px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .impact-hostread-graph-wrapper small {
    margin-top: 16px;
    text-align: right;
  }

  .graph-adstype {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .graph-label {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .impact-hostread-graph {
    padding: 32px;
    margin-top: 32px;
  }

  .impact-hostread-graph h4 {
    font-size: 18px;
  }

  .graph-adstype li {
    font-size: 14px;
  }
}


/* --------------------------------------------------
program
-------------------------------------------------- */
.program-categories-item h3 {
  font-size: 20px;
  border-left: 8px solid;
  border-image-source: var(--grad-purple-blue);
  border-image-slice: 1;
  padding-left: 8px;
  margin-bottom: 16px;
}

.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}

.program-item {
  cursor: pointer;
}

.program-item h4 {
  font-size: 14px;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.program-item img {
  transition: opacity 0.3s ease;
}

.program-item:hover h4 {
  color: var(--color-orange);
}

.program-item:hover img {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .program-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 24px;
  }
}

@media screen and (min-width: 1024px) {
  .program-categories-item h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .program-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1280px) {
  .program-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

/* --------------------------------------------------
program - modal
-------------------------------------------------- */
.program-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.program-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.program-modal.is-active .program-modal-content {
  opacity: 1;
}

.program-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.program-modal-content {
  position: relative;
  background: white;
  padding: 24px;
  width: calc(100% - 48px);
  max-width: calc(1280px - 48px);
  max-height: 100%;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.program-modal-close::before, .program-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transform-origin: center;
}

.program-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.program-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.program-modal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.program-modal-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.program-modal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
}

.program-modal-category {
  background: var(--grad-yellow-orange);
  color: white;
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 32px;
  font-size: inherit;
}

.program-modal-title {
  font-size: 16px;
  margin-top: 4px;
  margin-bottom: -8px;
}

.program-modal-desc {
  font-size: inherit;
}

.program-modal-platform {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.program-modal-platform li {
  border: 1px solid var(--color-black);
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 32px;
  font-size: inherit;
}

.platform-hidden {
  display: none;
}

.program-demographic {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: inherit;
}

.program-demographic-gender > ul {
  display: flex;
  gap: 2px;
}

.program-demographic-gender > ul li {
  width: calc((100% - 2px) / 2);
}

.program-demographic-age > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2px;
}

.program-demographic-age > ul li {
  width: calc((100% - 4px) / 3);
}

.program-demographic-type {
  background-color: var(--color-black);
  color: white;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.program-demographic-type.type-hit::after {
  content: "";
  display: block;
  position: absolute;
  background: var(--grad-purple-blue);
  width: 100%;
  height: 8px;
  border-radius: 16px;
  margin-top: 4px;
}

.small-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.small-categories li {
  background: var(--grad-purple-blue);
  color: white;
  font-weight: bold;
  line-height: 1;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 32px;
}

@media screen and (min-width: 768px) {
  .program-modal-img {
    width: 200px;
    height: 200px;
  }
}

@media screen and (min-width: 1024px) {
  .program-modal-info {
    flex-direction: row;
    gap: 24px;
  }

  .program-modal-content {
    padding: 32px;
  }

  .program-modal-text {
    width: calc(100% - 200px - 24px);
    font-size: 14px;
  }

  .program-modal-title {
    font-size: 20px;
  }

  .program-modal-desc {
    font-size: 16px;
  }

  .program-demographic {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 2px;
  }

  .program-demographic-gender {
    width: calc((100% - 2px) / 8 * 2);
  }

  .program-demographic-age > ul {
    flex-wrap: nowrap;
    gap: 2px;
  }


  .program-demographic-age {
    width: calc((100% - 2px) / 8 * 6);
  }

  .program-demographic-small-categories {
    width: 100%;
  }
}


/* --------------------------------------------------
flow
-------------------------------------------------- */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: calc(24px + 8px + 48px + 4px);
  width: calc(100% - 16px);
  margin: calc(24px + 48px + 4px) auto 0;
}

.flow-item {
  background-color: white;
  color: var(--color-black);
  border-radius: 8px;
  padding: 48px 24px 24px;
  position: relative;
  outline: 4px solid white;
  outline-offset: 4px;
}

.flow-step-number {
  font-family: "Josefin Sans";
  position: absolute;
  top: calc(-48px + -4px);
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--grad-yellow-orange);
  color: white;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: 0 0 4px var(--box-shadow-020);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.flow-step, .flow-number {
  line-height: 1;
}

.flow-step {
  margin-top: 8px;
  font-size: 14px;
}

.flow-number {
  font-size: 32px;
}

.flow-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-desc-img {
  width: 60%;
  margin: 0 auto;
  max-width: 240px;
}

.flow-desc-text h3 {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.flow-desc-text h3 span:first-child {
  font-size: 18px;
}

.flow-desc-text h3 span:last-child {
  font-size: 14px;
}

.flow-desc-text p {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .flow-list {
    gap: calc(24px + 8px + 8px);
    margin: calc(24px + 8px) auto 0;
  }

  .flow-item {
    padding: 24px 24px 24px 56px;
    width: calc(100% - (48px - 4px));
    margin-left: auto;
  }

  .flow-step-number {
    top: 50%;
    left: calc(-48px + -4px);
    right: auto;
    transform: translateY(-50%);
  }

  .flow-desc {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  .flow-desc-img {
    width: calc(20% - 12px);
    max-width: 120px;
  }

  .flow-desc-text {
    width: calc(80% - 12px);
  }

  .flow-desc-text h3 {
    text-align: left;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
  }

  .flow-desc-text h3 span:first-child {
    font-size: 20px;
  }

  .flow-desc-text h3 span:last-child {
    font-size: 16px;
  }
}


/* --------------------------------------------------
plan
-------------------------------------------------- */
.plan-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-item {
  border-radius: 8px;
  box-shadow: 0 8px 20px var(--box-shadow-015);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px var(--box-shadow-020);
}

.plan-item-title {
  color: white;
  font-size: 18px;
  text-align: center;
  background: var(--grad-yellow-orange);
  padding: 24px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.plan-item-desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  margin-top: -1px;
}

.plan-item-desc-img {
  text-align: center;
}

.plan-item-desc-img i {
  font-size: 64px;
  background: var(--grad-yellow-orange);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-item-desc-p {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.plan-detail h4 {
  font-size: 14px;
  text-align: center;
  background-color: var(--color-gray-05);
  color: white;
  border-radius: 32px;
  margin-bottom: 12px;
}

.plan-detail ul, .plan-detail p {
  font-size: 14px;
}

.plan-detail a {
  color: var(--color-orange);
}

.plan-categories {
  position: relative;
  padding: calc(24px + 18px) 24px 24px;
  margin-top: calc(32px + 14px);
}

.plan-categories::before {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: 8px;
  border: 4px solid transparent;
  background: var(--grad-purple-blue-reverse);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  z-index: -1;
}

.plan-categories h3 {
  color: white;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  background: var(--grad-purple-blue);
  border-radius: 32px;
  padding: 8px 24px;
  position: absolute;
  top: -14px;
  left: 24px;
  right: 24px;
}

.plan-categories-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.plan-categories-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: var(--color-gray-03);
  border-radius: 8px;
}

.plan-categories-text {
  width: calc(65% - 4px);
}

.plan-categories-text h4 {
  font-size: 14px;
}

.plan-categories-text p {
  font-size: 12px;
}

.plan-categories-imgs {
  width: calc(35% - 4px);
  display: flex;
  gap: 4px;
}

@media screen and (min-width: 768px) {
  .plan-list {
    flex-direction: row;
  }

  .plan-item {
    width: calc((100% - 24px) / 2);
  }

  .plan-item-desc {
    padding: 40px 24px;
  }

  .plan-categories-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .plan-list {
    gap: 40px;
  }

  .plan-item {
    width: calc((100% - 40px) / 2);
  }

  .plan-item-title {
    font-size: 20px;
  }

  .plan-categories {
    padding: calc(32px + 20px) 32px 32px;
    margin-top: calc(64px + 14px);
  }

  .plan-categories h3 {
    font-size: 18px;
  }

  .plan-categories-item {
    padding: 16px;
  }

  .plan-categories-text h4 {
    font-size: 16px;
  }

  .plan-categories-text p {
    font-size: 14px;
  }

  .plan-categories-imgs {
    gap: 8px;
  }
}


/* --------------------------------------------------
page-top
-------------------------------------------------- */
.page-top {
  margin: 3.5% 0;
}

.page-top-btn {
  font-family: "Josefin Sans";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 80px;
  margin: 0 auto;
  cursor: pointer;
}

.arrow-up {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-left: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
  transform: rotate(45deg);
  transition: all 0.3s;
  margin-top: 4px;
}

.page-top-btn:hover {
  color: var(--color-black);
}

@media screen and (min-width: 1024px) {
  .page-top {
    margin: 2% 0;
  }
}


/* --------------------------------------------------
footer
-------------------------------------------------- */
.footer {
  background-color: var(--color-gray-03);
}

.footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  width: fit-content;
}

.footer-logo a {
  display: flex;
  align-items: center;
}

.footer-logo a img {
  width: auto;
  height: 32px;
}

.footer-text {
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
}

.footer-small {
  font-size: 12px;
}

.footer-links {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--color-orange);
}


.footer-links a + a {
  border-left: 1px solid var(--color-black);
  padding-left: 16px;
}

@media screen and (min-width: 768px) {
  .footer-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}


/* --------------------------------------------------
hero-title fade-up setting
-------------------------------------------------- */
.hero-title-fade-up {
  transition: opacity 1s, transform 1s ease;
  transform: translateY(25px);
  opacity: 0;
}

.is-hero-title-fade-up {
  transform: translateY(0);
  opacity: 1;
}


/* --------------------------------------------------
hero-img fade-up setting
-------------------------------------------------- */
.hero-img-fade-left {
  transition: opacity 1.5s, transform 1.5s ease;
  transform: translateX(-50px);
  opacity: 0;
}

.is-hero-img-fade-left {
  transform: translateX(0);
  opacity: 1;
}


/* --------------------------------------------------
fade-up setting
-------------------------------------------------- */
.fade-up-item {
  transition: opacity 0.7s, transform 0.7s ease;
  transform: translateY(50px);
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-04 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-05 {
    transform: translateY(50px);
  }
}

@media screen and (min-width: 1024px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(250px);
  }

  .fade-up-item-grid-04 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-05 {
    transform: translateY(150px);
  }
}

@media screen and (min-width: 1280px) {
  .fade-up-item-grid-01 {
    transform: translateY(50px);
  }

  .fade-up-item-grid-02 {
    transform: translateY(150px);
  }

  .fade-up-item-grid-03 {
    transform: translateY(250px);
  }

  .fade-up-item-grid-04 {
    transform: translateY(350px);
  }

  .fade-up-item-grid-05 {
    transform: translateY(450px);
  }
}

.is-fade-up {
  transform: translateY(0);
  opacity: 1;
}