@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  text-wrap: initial;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (hover: hover) {
  a:hover {
    filter: brightness(1.1);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

:root {
  --color-white: white;
  --color-black: black;
  --color-navy-dark: #001230;
  --color-mint: #D8F2E5;
  --color-mint-dark: #B4E4C3;
  --color-amber: #A22E00;
  --arrow-r: url('data:image/svg+xml,<svg viewBox="0 0 41 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M40.4141 11.707L28.707 23.4141L27.293 22L37.5859 11.707L27.293 1.41406L28.707 0L40.4141 11.707ZM28.5 12.707H0V10.707H28.5V12.707Z" fill="currentColor"/></svg>');
}

html {
  color: var(--color-black);
  font-family: "A1 Gothic M", sans-serif;
}

body {
  background-color: var(--color-mint);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  --header-height: 3.75rem;
  position: fixed;
  z-index: 5;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease-out;
  color: var(--color-navy-dark);
  font-family: "Midashi Go MB1", sans-serif;
}
.header.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 600px) {
  .header {
    --header-height: 5rem;
  }
}
.header-bar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  padding-left: 1.5rem;
  box-shadow: 0px 0.625rem 1.1875rem 0px rgba(0, 0, 0, 0.08);
  background-color: #E7F3E2;
}
.header-bar svg {
  display: block;
}
.header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 100%;
  color: inherit;
  transition: all 0.1s ease-in-out;
}
.header-toggle::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.3125rem;
  background-color: currentColor;
  mask-image: url('data:image/svg+xml,<svg viewBox="0 0 52 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1H51" stroke="currentColor" stroke-width="2" stroke-linecap="round"/><path d="M1 17H51" stroke="currentColor" stroke-width="2" stroke-linecap="round"/><path d="M1 33H51" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.header-toggle:hover {
  background-color: white;
}
.header:has([aria-expanded=true]) .header-menu {
  transform: translateX(0);
}
.header-menu {
  position: absolute;
  top: var(--header-height);
  right: 0;
  width: min(60%, 20.0625rem);
  background-color: #E7F3E2;
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.header-menu li:not(:last-child) {
  border-bottom: 1px solid #001230;
}
.header-menu a {
  display: block;
  padding: 0.5rem 1.625rem;
  font-size: 0.9375rem;
  line-height: 1.62;
}
@media (min-width: 600px) {
  .header-menu a {
    padding: 1.25rem 1.5rem;
  }
}
.header-menu a:hover {
  opacity: 1;
  background-color: #fff;
}
.header-menu br {
  display: block;
}
@media (min-width: 600px) {
  .header-menu br {
    display: none;
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}
@keyframes fade-scale-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cover {
  position: relative;
  width: 100%;
  aspect-ratio: 375/645;
  overflow: hidden;
  background-color: var(--color-mint);
}
@media (width >= 48rem) {
  .cover {
    aspect-ratio: 1512/782;
  }
}

.cover h1 {
  position: absolute;
  top: 30.0775193798%;
  right: 27.2%;
  width: 41.3333333333%;
  aspect-ratio: 155/340;
  display: flex;
  justify-content: space-between;
}
.cover [class^=a_] {
  height: auto;
}
.cover .a_board {
  width: 61.2903225806%;
}
.cover .a_text {
  width: 21.935483871%;
}
.cover .a_creature,
.cover .a_cloud_l,
.cover .a_cloud_r {
  position: absolute;
}
.cover .a_creature {
  top: -17.0588235294%;
  width: 42.5806451613%;
  aspect-ratio: 93/99;
}
.cover .a_cloud_l {
  top: -26.4705882353%;
  left: -26.4516129032%;
  width: 38.7096774194%;
  aspect-ratio: 60/35;
  transform: rotate(-8.65deg);
}
.cover .a_cloud_r {
  top: -16.7647058824%;
  right: -12.9032258065%;
  width: 42.5806451613%;
  aspect-ratio: 66/43;
}
@media (width >= 48rem) {
  .cover h1 {
    top: 27.1099744246%;
    right: 9.9206349206%;
    width: 14.3518518519%;
    aspect-ratio: 217/477;
  }
  .cover .a_creature {
    top: -16.9811320755%;
    left: 2.7649769585%;
    width: 42.8571428571%;
  }
  .cover .a_cloud_l {
    top: -27.8825995807%;
    left: -15.668202765%;
    width: 38.7096774194%;
    aspect-ratio: 84/49;
  }
  .cover .a_cloud_r {
    top: -21.8029350105%;
    right: -36.866359447%;
    width: 42.8571428571%;
    aspect-ratio: 93/60;
  }
}

.cover .a_creature {
  transform-origin: left bottom;
  animation: creature 5s linear infinite;
}
.cover .a_cloud_l {
  --cloud-deg: -8.65deg;
  animation: cloud 6s linear infinite;
}
.cover .a_cloud_r {
  animation: cloud 5s linear infinite;
}
.cover .b_doubutsu {
  display: none;
}
@media (width >= 48rem) {
  .cover .b_doubutsu {
    display: block;
    animation: b_doubutsu 4s linear infinite;
  }
}

@keyframes cloud {
  0% {
    transform: translateY(0%) rotate(var(--cloud-deg, 0deg));
  }
  25% {
    transform: translateY(10%) rotate(var(--cloud-deg, 0deg));
  }
  75% {
    transform: translateY(-10%) rotate(var(--cloud-deg, 0deg));
  }
}
@keyframes creature {
  5% {
    transform: translateY(0px) rotate(0deg);
  }
  15% {
    transform: translateY(2px) rotate(-5deg);
  }
  45% {
    transform: translateY(2px) rotate(-5deg);
  }
  55% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes b_doubutsu {
  0% {
    transform: translateX(0px) rotate(0deg);
  }
  5% {
    transform: translateX(0px) rotate(0deg);
  }
  7% {
    transform: translateX(3px) rotate(-2deg);
  }
  9% {
    transform: translateX(6px) rotate(0deg);
  }
  11% {
    transform: translateX(9px) rotate(-2deg);
  }
  13% {
    transform: translateX(12px) rotate(0deg);
  }
  80% {
    transform: translateX(12px) rotate(0deg);
  }
  82% {
    transform: translateX(3px) rotate(-2deg);
  }
  84% {
    transform: translateX(0px) rotate(0deg);
  }
}
.cover [class^=c_] {
  position: absolute;
  height: auto;
}
.cover .c_t-shirt-yamane {
  top: 1.3953488372%;
  left: -7.7333333333%;
  width: 46.9333333333%;
  aspect-ratio: 176/161;
  transform: rotate(3.91deg);
}
.cover .c_t-shirt-ikimono {
  top: 5.4263565891%;
  right: -12.8%;
  width: 47.4666666667%;
  aspect-ratio: 178/157;
  transform: rotate(-5.31deg);
}
.cover .c_long-t-shirt {
  bottom: 2.9457364341%;
  right: -12%;
  width: 43.7333333333%;
  aspect-ratio: 164/142;
  transform: rotate(5.85deg);
}
.cover .c_eco-bag {
  top: 35.8139534884%;
  left: -13.6%;
  width: 39.2%;
  aspect-ratio: 147/160;
  transform: rotate(9.3deg);
}
.cover .c_travel-pouch-s {
  bottom: 18.6046511628%;
  left: -2.4%;
  width: 35.7333333333%;
  aspect-ratio: 134/134;
  transform: rotate(3.01deg);
}
.cover .c_travel-pouch-m {
  bottom: 9.3023255814%;
  left: -2.1333333333%;
  width: 35.4666666667%;
  aspect-ratio: 133/133;
  transform: rotate(3.01deg);
}
.cover .c_travel-pouch-l {
  bottom: -1.0852713178%;
  left: -0.8%;
  width: 35.4666666667%;
  aspect-ratio: 133/133;
  transform: rotate(3.01deg);
}
.cover .c_mokudo-180ml {
  top: 45.7364341085%;
  right: -0.8%;
  width: 30.9333333333%;
  aspect-ratio: 116/116;
  transform: rotate(0deg);
}
@media (width >= 48rem) {
  .cover .c_t-shirt-yamane {
    bottom: unset;
    right: unset;
    top: 29.1560102302%;
    left: 33.5978835979%;
    width: 14.4841269841%;
    aspect-ratio: 219/102;
    transform: rotate(0deg);
  }
  .cover .c_t-shirt-ikimono {
    bottom: unset;
    right: unset;
    top: 7.2890025575%;
    left: 16.2037037037%;
    width: 14.6825396825%;
    aspect-ratio: 222/195;
    transform: rotate(0deg);
  }
  .cover .c_long-t-shirt {
    bottom: unset;
    right: unset;
    top: 9.7186700767%;
    left: 53.7037037037%;
    width: 15.2777777778%;
    aspect-ratio: 231/200;
    transform: rotate(0deg);
  }
  .cover .c_eco-bag {
    bottom: unset;
    right: unset;
    top: 54.347826087%;
    left: 18.0555555556%;
    width: 15.0132275132%;
    aspect-ratio: 227/247;
    transform: rotate(0deg);
  }
  .cover .c_travel-pouch-s {
    bottom: unset;
    right: unset;
    top: 43.4782608696%;
    left: 40.873015873%;
    width: 19.4444444444%;
    aspect-ratio: 294/294;
    transform: rotate(0deg);
  }
  .cover .c_travel-pouch-m {
    bottom: unset;
    right: unset;
    top: 63.5549872123%;
    left: 36.4417989418%;
    width: 19.4444444444%;
    aspect-ratio: 294/294;
    transform: rotate(0deg);
  }
  .cover .c_travel-pouch-l {
    bottom: unset;
    right: unset;
    top: 54.2199488491%;
    left: 52.9761904762%;
    width: 19.4444444444%;
    aspect-ratio: 294/294;
    transform: rotate(0deg);
  }
  .cover .c_mokudo-180ml {
    bottom: unset;
    right: unset;
    top: 32.73657289%;
    left: 4.1666666667%;
    width: 14.2195767196%;
    aspect-ratio: 215/215;
    transform: rotate(0deg);
  }
}
.cover .b_doubutsu {
  position: absolute;
  bottom: 3.7084398977%;
  left: -4.2328042328%;
  width: 14.3518518519%;
  height: auto;
  aspect-ratio: 217/239;
}

.cover [class^=c_] {
  opacity: 0;
  animation: fade-in 0.5s var(--a-delay, 0s) ease forwards;
}
.cover.in-view [class^=c_] {
  animation: fade-in 0.5s var(--a-delay, 0s) ease forwards;
}
.cover .c_t-shirt-yamane {
  --a-delay: 0s;
}
.cover .c_t-shirt-ikimono {
  --a-delay: 0.25s;
}
.cover .c_long-t-shirt {
  --a-delay: 0.5s;
}
.cover .c_eco-bag {
  --a-delay: 0.75s;
}
.cover .c_travel-pouch-s {
  --a-delay: 1s;
}
.cover .c_travel-pouch-m {
  --a-delay: 1.25s;
}
.cover .c_travel-pouch-l {
  --a-delay: 1.5s;
}
.cover .c_mokudo-180ml {
  --a-delay: 1.75s;
}

.yodogawa {
  position: relative;
}
.yodogawa-bg {
  position: absolute;
  inset: 0;
}
.yodogawa-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yodogawa .wrapper {
  position: relative;
  width: 100%;
  padding-block: 2.0625rem 3rem;
  display: flex;
  justify-content: center;
}
.yodogawa-body {
  width: min(90.6666666667%, 37.5rem);
  padding: 2.6875rem 1.5rem 1.3125rem 1.625rem;
  background-color: rgb(from var(--color-white) r g b/70%);
  border-radius: 1.875rem;
}
.yodogawa p {
  font-size: 0.9375rem;
  line-height: 1.2666666667;
}
.yodogawa p + p {
  margin-top: 2em;
}
@media (width >= 48rem) {
  .yodogawa .wrapper {
    padding-block: 6.875rem 7.9375rem;
  }
  .yodogawa-body {
    padding: 5.375rem 0 5.25rem;
  }
  .yodogawa p {
    font-size: 1rem;
    line-height: 1.75;
    white-space: pre-line;
    margin-left: 19.3333333333%;
  }
}

.yodogawa-body {
  opacity: 0;
}
.yodogawa-bg {
  overflow: hidden;
  background-color: var(--color-mint-dark);
}
.yodogawa-bg img {
  opacity: 0;
  transform: scale(1.2);
}
.yodogawa.in-view .yodogawa-bg img {
  animation: fade-scale-in 1.5s linear forwards;
}
.yodogawa.in-view .yodogawa-body {
  animation: fade-in 1s 1s ease-out forwards;
}

.heading {
  padding-top: 2.5625rem;
  background-color: var(--color-mint);
  filter: grayscale(1);
  transition: filter 1s ease;
}
.heading.in-view {
  filter: grayscale(0);
}
.heading .container {
  display: flex;
  flex-direction: column;
  gap: 6.75rem 0;
  width: 82.6666666667%;
  margin-left: 12%;
  container: heading/inline-size;
}
.heading h2 {
  display: flex;
  flex-direction: column;
  gap: 1.125rem 0;
  height: fit-content;
  font-size: 1.4620625rem;
}
.heading h2 span {
  display: flex;
  align-items: flex-end;
  gap: 0 0.4375rem;
}
.heading .illust {
  display: flex;
  gap: 0 1rem;
  align-self: end;
  height: 5.09375rem;
  overflow: hidden;
}
@media (width >= 48rem) {
  .heading {
    padding-top: 4.0625rem;
  }
  .heading .container {
    flex-direction: row;
    justify-content: space-between;
    width: 80.9523809524%;
  }
  .heading h2 {
    flex-direction: row;
    align-items: end;
    gap: 0 min(0.408496732cqi, 0.3125rem);
    font-size: min(3.2454248366cqi, 2.48275rem);
  }
  .heading h2 svg {
    width: 29.2483660131cqi;
    height: 4.7385620915cqi;
  }
  .heading h2 span {
    gap: 0 min(1.3071895425cqi, 1rem);
  }
  .heading .illust {
    gap: 0 1.375rem;
    height: fit-content;
  }
  .heading .illust img {
    height: auto;
  }
  .heading .illust img:first-of-type {
    width: min(13.3986928105cqi, 10.25rem);
    aspect-ratio: 164/113;
  }
  .heading .illust img:last-of-type {
    width: min(14.0522875817cqi, 10.75rem);
    aspect-ratio: 172/115;
  }
}
@media (width >= 75rem) {
  .heading .container {
    flex-direction: row;
  }
}

.product {
  display: grid;
  grid-template-areas: "product";
}
.product .stickers,
.product .container {
  grid-area: product;
}
.product .container {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2rem 0;
  padding-bottom: 3rem;
}
@media (width >= 48rem) {
  .product .container {
    gap: 4.5rem 0;
    padding-bottom: 4.5rem;
  }
}

.product-cover {
  display: grid;
  grid-template-areas: "stack";
  container: product-cover/inline-size;
  width: 100%;
}
.product-cover picture {
  overflow: hidden;
  background-color: var(--color-mint-dark);
}
.product-cover img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.1);
}
.product-cover .product-heading {
  opacity: 0;
}
.product-cover.in-view img {
  animation: fade-scale-in 1.6s ease-out forwards;
}
.product-cover.in-view .product-heading {
  animation: fade-in 1.6s 0.75s ease-out forwards;
}
@media (width >= 48rem) {
  .product-cover picture,
  .product-cover .product-heading {
    grid-area: stack;
  }
  .t-shirt .product-cover .product-heading {
    --pd-pad: 5.6216931217cqi 10.4828042328cqi 0 0;
    justify-self: end;
  }
  .long-t-shirt .product-cover .product-heading {
    --pd-pad: 0 9.3915343915cqi 6.8783068783cqi 0;
    align-self: end;
    justify-self: end;
  }
  .travel-pouch .product-cover .product-heading {
    --pd-pad: 0 0 7.1428571429cqi 9.2592592593cqi;
    align-self: end;
  }
  .eco-bag .product-cover .product-heading {
    --pd-pad: 0 0 1.917989418cqi 8.8624338624cqi;
    align-self: end;
  }
  .mokudo-100ml .product-cover .product-heading {
    --pd-pad: 9.7222222222cqi 13.5582010582cqi 0 0;
    justify-self: end;
  }
}

.product-heading {
  position: relative;
  padding: 1.5rem 0 0 var(--pd-pad-left, 8.8%);
  color: var(--color-navy-dark);
}
.product-heading h3 {
  margin-bottom: 1.125rem;
  font-size: 1.5rem;
  line-height: 1.1666666667;
}
.product-heading p {
  font-size: 1.125rem;
  line-height: 1.4444444444;
}
.t-shirt .product-heading {
  --pd-pad-left: 6.6666666667%;
}
@media (width >= 48rem) {
  .product-heading {
    padding: var(--pd-pad, 0);
    color: var(--color-white);
    text-shadow: 0 0 3px rgb(from var(--color-black) r g b/50%);
  }
}
@media (width >= 75rem) {
  .product-heading {
    text-shadow: none;
  }
}

.items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 91.7333333333%;
}
.items > li {
  grid-column-end: span 2;
}
.items:has(li:nth-of-type(odd):last-of-type) li:last-of-type {
  grid-column-start: 2;
}
@media (width >= 48rem) {
  .items {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem min(6.9825436409%, 3.5rem);
    width: min(90%, 50.125rem);
  }
  .items:has(li:nth-of-type(odd):last-of-type) li:last-of-type {
    grid-column-start: unset;
  }
  .items:has(li:first-of-type:last-of-type) li:first-of-type {
    grid-column-start: 3;
  }
  .items:has(li:nth-of-type(2):last-of-type) li:first-of-type {
    grid-column-start: 2;
  }
}

.card {
  opacity: 0;
  transform: translateY(10px);
}
.card:nth-of-type(2) {
  --a-delay: 0.5s;
}
.card.in-view {
  animation: fade-in 1s var(--a-delay, 0s) ease forwards;
}
.card.in-view figure img {
  animation: fade-in 1.2s calc(0.5s + var(--a-delay, 0s)) ease forwards;
}
.card figure {
  background-color: var(--color-mint-dark);
}
.card figure img {
  opacity: 0;
}
.card h4 {
  margin-block: 1rem;
  font-size: 1.25rem;
  line-height: 1.4;
}
.card h4 .label {
  display: block;
  font-size: 0.7em;
}
.card h4 small {
  display: inline-block;
  font-size: 0.8em;
}
.card .price-tag {
  font-size: 1.25rem;
  line-height: 1.4;
}
.card .price-tag .tax-inc {
  font-size: 0.7em;
}
@media (width >= 48rem) {
  .card:nth-of-type(3) {
    --a-delay: 1s;
  }
  .card h4 {
    margin-block: 2rem 1rem;
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
  .card h4 .label {
    font-size: 0.6666666667em;
  }
  .card h4 small {
    font-size: 0.8333333333em;
  }
  .card h4 .s-only {
    display: none;
  }
  .long-t-shirt .card h4 {
    white-space: nowrap;
  }
  .card .price-tag {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
  .card .price-tag .tax-inc {
    font-size: 0.5833333333em;
  }
}

.button {
  display: flex;
  align-items: end;
  gap: 0 0.3043478261em;
  padding: 0.4347826087em 0.9130434783em 0.5217391304em 1.0869565217em;
  font-family: "A1 Gothic M", sans-serif;
  color: var(--color-white);
  font-size: 1.4375rem;
  line-height: 1.4347826087;
  background-color: var(--color-amber);
  border-radius: 1.5217391304em;
}
.button::after {
  content: "";
  display: block;
  width: 1.8260869565em;
  height: 1.652173913em;
  background: url("../img/illust/dragonfly.webp") center/contain no-repeat;
}

.stickers {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  container: stickers/inline-size;
}
.stickers::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 375/430;
}
.stickers .wrap {
  position: relative;
  flex: auto;
  overflow: hidden;
}
.stickers .sticker {
  position: absolute;
  display: block;
  max-width: unset;
  height: auto;
  opacity: 0;
  transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.stickers .sticker.in-view {
  opacity: 1;
}
@media (width >= 48rem) {
  .stickers::before {
    aspect-ratio: 1512/640;
  }
}

.t-shirt .s0102 {
  top: 2.1875rem;
  margin-left: 24.8%;
  width: 84.8%;
  aspect-ratio: 318/172;
}

.t-shirt .s0101 {
  bottom: 0.75rem;
  margin-left: 6.1333333333%;
  width: 46.4%;
  aspect-ratio: 174/200;
}

.long-t-shirt .s02 {
  top: 2.125rem;
  margin-left: 3.2%;
  width: 129.8666666667%;
  aspect-ratio: 487/297;
}

.travel-pouch .s03 {
  top: 2.75rem;
  margin-left: -25.0666666667%;
  width: 116.2666666667%;
  aspect-ratio: 436/188;
}

.eco-bag .s0401 {
  bottom: 4.5rem;
  margin-left: 4.5333333333%;
  width: 39.4666666667%;
  aspect-ratio: 148/269;
}

.eco-bag .s0402 {
  top: 2.25rem;
  margin-left: 59.4666666667%;
  width: 43.4666666667%;
  aspect-ratio: 163/127;
}

.mokudo-100ml .s05 {
  top: 2.8125rem;
  margin-left: 12%;
  width: 105.6%;
  aspect-ratio: 396/241;
}

@media (width >= 48rem) {
  .t-shirt .s0102 {
    inset-block: unset;
    top: 3.0625rem;
    margin-left: 56.2169312169%;
    width: 45.171957672%;
    aspect-ratio: 683/369;
  }
  .t-shirt .s0101 {
    inset-block: unset;
    bottom: -2.1875rem;
    margin-left: 6.746031746%;
    width: 21.7592592593%;
    aspect-ratio: 329/379;
  }
  .long-t-shirt .s02 {
    inset-block: unset;
    top: 2.25rem;
    margin-left: 2.1164021164%;
    width: 79.1005291005%;
    aspect-ratio: 1196/729;
  }
  .travel-pouch .s03 {
    inset-block: unset;
    bottom: 2rem;
    margin-left: 50.462962963%;
    width: 45.9656084656%;
    aspect-ratio: 695/301;
  }
  .eco-bag .s0401 {
    inset-block: unset;
    bottom: 27.625rem;
    margin-left: 7.6058201058%;
    width: 18.5846560847%;
    aspect-ratio: 281/511;
  }
  .eco-bag .s0402 {
    inset-block: unset;
    bottom: 27.8125rem;
    margin-left: 25.9920634921%;
    width: 20.5026455026%;
    aspect-ratio: 310/241;
  }
  .mokudo-100ml .s05 {
    inset-block: unset;
    bottom: 0rem;
    margin-left: 25.0661375661%;
    width: 67.1296296296%;
    aspect-ratio: 1015/619;
  }
}
.to-mokudo {
  display: block;
  width: min(86.6666666667%, 20.3125rem);
  margin-inline: auto;
}
@media (width >= 48rem) {
  .to-mokudo {
    width: min(80%, 48.125rem);
  }
}

.afterword {
  position: relative;
}
.afterword-bg {
  position: absolute;
  inset: 0;
}
.afterword-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.afterword .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(77.0666666667%, 28.8125rem);
  margin-inline: auto;
  padding-block: 5.75rem 5.6875rem;
  color: var(--color-white);
}
.afterword h2 {
  width: min(84.4290657439%, 20.75rem);
  margin-bottom: 1.9375rem;
}
.afterword h2 img {
  width: 100%;
  height: auto;
}
.afterword p {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.afterword .l-only {
  display: none;
}
@media (width >= 48rem) {
  .afterword {
    padding-block: 5.4375rem 5.375rem;
  }
  .afterword h2 {
    margin-bottom: 4.0625rem;
  }
  .afterword p {
    font-size: 1.125rem;
    line-height: 2;
  }
  .afterword .l-only {
    display: block;
  }
}

.nav {
  padding-block: 2.5rem 2.5625rem;
  color: var(--color-navy-dark);
}
.nav ul {
  display: grid;
  justify-items: center;
  gap: 0.5rem 0;
}
.nav a {
  font-family: "Midashi Go MB1", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.01em;
}
.nav svg {
  display: block;
  aspect-ratio: 223/65;
  height: auto;
}
@media (width >= 48rem) {
  .nav {
    padding-block: 6.5rem 5.4375rem;
  }
  .nav ul {
    gap: 0.75rem 0;
  }
  .nav a {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
  .nav svg {
    width: 13.9375rem;
  }
}

/* footer */
.footer {
  position: relative;
  color: var(--color-navy-dark);
  font-family: "Midashi Go MB1", sans-serif;
  background-color: #E7F3E2;
}
.footer .wrapper {
  display: grid;
  grid-template-areas: "share" "hobo" "store" "copy";
  width: min(74.9333333333%, 79.5rem);
  margin-left: 16.5333333333%;
  padding-block: 3.4375rem;
}
.footer-share {
  grid-area: share;
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.footer-share svg {
  display: block;
}
.footer-share h3 svg {
  width: 3.9375rem;
  height: 2.3125rem;
}
.footer-share ul {
  display: flex;
  gap: 0 1.5rem;
}
.footer-share [data-platform=twitter] svg {
  width: 2.25rem;
  height: 2.3125rem;
}
.footer-share [data-platform=facebook] svg {
  width: 2.25rem;
  height: 2.25rem;
}
.footer-share [data-platform=line] svg {
  width: 2.375rem;
  height: 2.25rem;
}
.footer-hobo {
  grid-area: hobo;
  display: grid;
  gap: 0.375rem 0;
  margin-block: 2rem;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.footer-store {
  display: flex;
  flex-wrap: wrap;
  grid-area: store;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.01em;
}
.footer-store li:not(:last-of-type)::after {
  content: "/";
  display: inline-block;
  padding: 0 0.5em 0 0.2em;
}
.footer-copy {
  margin-top: 1rem;
  grid-area: copy;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (width >= 75rem) {
  .footer .wrapper {
    margin-inline: auto;
    padding: 4.6875rem 0 6.0625rem;
    grid-template-areas: "share hobo ." "store hobo copy";
    grid-template-columns: 1fr auto auto;
  }
  .footer-share {
    gap: 2.5625rem;
  }
  .footer-share ul {
    gap: 1.25rem;
  }
  .footer-store {
    margin-block: 1.5rem 0;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.01em;
  }
  .footer-hobo {
    align-self: end;
    margin: 0 4rem 0 0;
  }
  .footer-copy {
    margin-top: 0;
    align-self: end;
  }
}