@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  min-height: 0vw;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  scrollbar-gutter: stable;
  word-break: break-word;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
  border-style: solid;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/*---------------------------------------------------
	common
---------------------------------------------------*/
body {
  background-color: white;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #595757;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
}

[class*=container] {
  position: relative;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 1400px) {
  [class*=container] {
    padding-inline: 2.25rem;
    max-width: calc(1400px - 4.5rem);
  }
}
@media screen and (max-width: 1399.98px) {
  [class*=container] {
    padding-inline: 1.25rem;
  }
}

.container_s {
  max-width: calc(991.98px - 2.5rem);
}

[class*=rowgap] {
  display: grid;
}

.rowgap-s {
  row-gap: var(--gap-s);
}

.rowgap-m {
  row-gap: var(--gap-m);
}

.rowgap-l {
  row-gap: var(--gap-l);
}

.rowgap-xl {
  row-gap: var(--gap-xl);
}

:where(a,
a:hover) {
  text-decoration: none;
  color: #222222;
}

:where(a:hover:not(.foo):not(.hoge)) {
  color: inherit;
  opacity: 0.65;
  transition: color 0.5s, opacity 0.5s, background-color 0.5s;
}

a[target=_blank]:not(.no-icon)::after {
  display: inline-block;
  margin-left: 0.25rem;
  content: "う";
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);
  color: #009e41;
}

:where(p) {
  font-size: 1rem;
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}

:where(i, em) {
  font-style: normal;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

.text-xl {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.273rem + 0.97vw, 2rem);
}

.text-l {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
}

.text-s {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}

.text-xs {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);
}

@media screen and (min-width: 768px) {
  .br-pc {
    display: block;
  }
}
@media screen and (max-width: 575.98px) {
  .br-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 575.98px) {
  .br-sp {
    display: block;
  }
}

:root {
  --gap-xl: clamp(3.5rem, 2.22rem + 5.46vw, 7rem);
  --gap-l: clamp(2.5rem, 2.134rem + 1.56vw, 3.5rem);
  --gap-m: clamp(2rem, 1.817rem + 0.78vw, 2.5rem);
  --gap-s: clamp(1.5rem, 1.317rem + 0.78vw, 2rem);
  --gap-xs: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
}

/*---------------------------------------------------
	btn
---------------------------------------------------*/
.btn {
  position: relative;
  display: inline-block;
}

.btn-area {
  display: grid;
  row-gap: var(--gap-m);
  padding-top: var(--gap-xl);
}
.btn-area.--center {
  display: grid;
  justify-items: center;
  align-items: center;
}
.btn-area.--horizontal {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .btn-area.--horizontal {
    column-gap: 2.5rem;
  }
}
@media screen and (max-width: 991.98px) {
  .btn-area.--horizontal {
    flex-direction: column;
    column-gap: 1rem;
  }
}

/*---------------------------------------------------
	parts
---------------------------------------------------*/
/*---------------------------------------------------
	typography
---------------------------------------------------*/
.cont-tit {
  display: grid;
  justify-content: center;
  border-bottom: 1px solid #595757;
}
.cont-tit div {
  display: inline-block;
  width: clamp(15rem, 4.773rem + 43.64vw, 37.5rem);
  padding-block: 0.75rem;
  color: white;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  text-align: center;
  background: linear-gradient(to right, #92D4F5 ,#009C8D, #005FAE);
  border-radius: 0.75rem 0.75rem 0 0;
}

/*---------------------------------------------------
	content
---------------------------------------------------*/
.mv {
  width: 100%;
  max-width: 1620px;
  margin-inline: auto;
  margin-block-end: var(--gap-xl);
}

.summary {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.summary__inner {
  padding-block: var(--gap-xl);
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .summary {
    /*background: url(../images/summary-bg.webp) center center/contain no-repeat;*/
  }
  .summary__inner--sp {
    display: none;
    height: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 991.98px) {
  .summary__inner--sp {
    width: 100%;
    max-width: 576px;
    margin-inline: auto;
  }
}

.sdgs__logo {
  width: 100%;
  max-width: 576px;
  margin-inline: auto;
}
.sdgs ul {
  display: inline-block;
  margin-inline: auto;
}
.sdgs ul li {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  padding-bottom: 0.25rem;
}
.sdgs ul li::before {
  content: "●";
  color: #009e41;
  margin-right: 0.5rem;
}

.limitedtime {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
.limitedtime__inner {
  padding-inline: 1.5rem;
  display: grid;
  row-gap: var(--gap-m);
}
@media screen and (min-width: 992px) {
  .limitedtime {
    background: url(../images/limitedtime-bg.webp) top center/contain no-repeat;
  }
  .limitedtime__inner {
    padding-block-start: clamp(4rem, 2.977rem + 4.36vw, 6.25rem);
    max-width: 580px;
    margin-inline: auto;
  }
  .limitedtime__inner--tit {
    width: 80%;
    margin-inline: auto;
  }
  .limitedtime__inner--sp {
    display: none;
    height: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 991.98px) {
  .limitedtime__inner {
    padding-block-start: var(--gap-xl);
  }
  .limitedtime__inner--tit {
    width: 75%;
    margin-inline: auto;
  }
  .limitedtime__inner--sp {
    width: 100%;
    max-width: 576px;
    margin-inline: auto;
  }
}

.collab__inner,
.items__inner,
.faminchu-tv__inner {
  display: grid;
}
@media screen and (min-width: 1400px) {
  .collab__inner,
  .items__inner,
  .faminchu-tv__inner {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--gap-xl);
    row-gap: var(--gap-xl);
  }
}
@media screen and (min-width: 768px) and (max-width: 1399.98px) {
  .collab__inner,
  .items__inner,
  .faminchu-tv__inner {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--gap-l);
    row-gap: var(--gap-l);
  }
}
@media screen and (max-width: 767.98px) {
  .collab__inner,
  .items__inner,
  .faminchu-tv__inner {
    row-gap: var(--gap-l);
  }
}
.collab__inner .col .picture,
.items__inner .col .picture,
.faminchu-tv__inner .col .picture {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  --dotsize: .5rem;
  background-color: white;
  background-image: radial-gradient(#b4b4b5 15%, transparent 15%);
  background-size: var(--dotsize) var(--dotsize);
}
.collab__inner .col h2,
.items__inner .col h2,
.faminchu-tv__inner .col h2 {
  padding: 0.5rem var(--gap-s);
  font-size: 1rem;
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
  text-align: center;
  border: 1px solid #595757;
}
.collab__inner .col .cont .heading,
.items__inner .col .cont .heading,
.faminchu-tv__inner .col .cont .heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}
.collab__inner .col .cont .heading h3,
.items__inner .col .cont .heading h3,
.faminchu-tv__inner .col .cont .heading h3 {
  flex-shrink: 1;
}
.collab__inner .col .cont .heading .price,
.items__inner .col .cont .heading .price,
.faminchu-tv__inner .col .cont .heading .price {
  font-size: 1rem;
  font-size: clamp(1rem, 0.943rem + 0.24vw, 1.125rem);
}
@media screen and (min-width: 992px) {
  .collab__inner .col .cont .heading h3,
  .items__inner .col .cont .heading h3,
  .faminchu-tv__inner .col .cont .heading h3 {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 1.273rem + 0.97vw, 2rem);
  }
}
@media screen and (max-width: 991.98px) {
  .collab__inner .col .cont .heading h3,
  .items__inner .col .cont .heading h3,
  .faminchu-tv__inner .col .cont .heading h3 {
    font-size: 1.25rem;
    font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  }
}

.collab {
  padding-block: var(--gap-xl);
  background-image: linear-gradient(to right, #595757 6px, transparent 6px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.collab__inner {
  align-items: start;
}
.collab__inner .col {
  display: grid;
  row-gap: var(--gap-s);
}
.items__inner .col .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(6rem, 4.182rem + 7.76vw, 10rem);
}
.collab__inner .col .cont {
  display: grid;
  grid-template-columns: 25% 1fr;
  align-items: start;
}
@media screen and (min-width: 992px) {
  .collab__inner .col .cont {
    column-gap: var(--gap-m);
  }
}
@media screen and (max-width: 991.98px) {
  .collab__inner .col .cont {
    column-gap: var(--gap-xs);
  }
}
.collab__inner .col .cont .owner {
  display: grid;
  row-gap: 0.75rem;
  justify-items: center;
  text-align: center;
}
.collab__inner .col .cont .owner img {
  border-radius: 0.5rem;
}
.collab__inner .col .cont .owner p {
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);
}
.collab__inner .col .cont .details {
  display: grid;
  row-gap: 0.75rem;
}

.items {
  padding-block-end: var(--gap-l);
  border-bottom: 1px solid #595757;
}
.items__inner {
  align-items: start;
}
.items__inner .col {
  display: grid;
  justify-items: start;
  row-gap: var(--gap-s);
}
.items__inner .col .stop {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: clamp(2rem, 1.773rem + 0.97vw, 2.5rem);
}
.items__inner .col .cont {
  display: grid;
  row-gap: 0.75rem;
}

.faminchu-tv__heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.faminchu-tv__heading h2 {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  text-align: center;
}
.faminchu-tv__heading img {
  width: var(--gap-l);
}
.faminchu-tv__logo {
  display: grid;
  justify-items: center;
  padding-block: var(--gap-l);
}
.faminchu-tv__logo img {
  width: min(75%, 250px);
}
.faminchu-tv__inner .col {
  display: grid;
  row-gap: var(--gap-m);
}
.faminchu-tv__inner .col .heading {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr var(--gap-l);
  padding-bottom: 0.5rem;
  border-bottom: solid 3px #595757;
}
.faminchu-tv__inner .col .heading::before {
  position: absolute;
  content: "";
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid white;
  z-index: 2;
}
.faminchu-tv__inner .col .heading::after {
  position: absolute;
  content: "";
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #595757;
  z-index: 1;
}
.faminchu-tv__inner .col .heading h3 {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9の比率 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------------------------------------------------
	footer
---------------------------------------------------*/
footer {
  padding-block-start: var(--gap-xl);
  padding-block-end: var(--gap-s);
  border-bottom: var(--gap-m) solid #009e41;
}
footer .copyright {
  text-align: center;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem);
}