@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: #152F63;
  --color-navy-dark: #001230;
  --color-blue: #CBF1F4;
  --color-mahogany: #A75710;
  --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-navy);
  font-family: "A1 Gothic M", sans-serif;
}

body:has(dialog:open) {
  overflow-y: hidden;
}

.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;
  }
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-blue);
}

.header.is-show + .main {
  --header-height: 3.75rem;
  margin-top: var(--header-height);
}
@media (min-width: 600px) {
  .header.is-show + .main {
    --header-height: 5rem;
  }
}

.page-title {
  display: flex;
  flex-direction: column;
  gap: 1.125rem 0;
  margin-block: 3.25rem 2.9375rem;
  font-size: 1.625rem;
  line-height: 1.3846153846;
  letter-spacing: 0.07em;
}
.page-title .number {
  margin-right: 0.1189438889em;
  font-size: 2.7808846154em;
  line-height: 0.5432139745;
}
@media (width >= 48rem) {
  .page-title {
    gap: 1.85rem 0;
    width: 86.3756613757%;
    margin-block: 6.3125rem 6.0625rem;
    font-size: 2.5193125rem;
    line-height: 1.375003101;
  }
  .page-title .number {
    margin-right: 0.1202552115em;
    font-size: 2.531270932em;
    line-height: 0.5432066096;
  }
}

.deck {
  --min-col-size: 15rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min-col-size)), 1fr));
  gap: 3rem 5.3571428571%;
  width: min(88.2666666667%, 84rem);
}
@media (width >= 48rem) {
  .deck {
    --min-col-size: 18.75rem;
  }
}

.card {
  display: flex;
  flex-direction: column;
  container: card/inline-size;
}
.card h2 {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  letter-spacing: 0.07em;
  white-space: pre-line;
}
.card p {
  margin-block: 1rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.07em;
  white-space: pre-line;
}
.card button {
  margin-top: auto;
}
@container card (width >= 380px) {
  .card h2 {
    font-size: 1.25rem;
    line-height: 2.2;
    letter-spacing: 0.07em;
  }
  .card:nth-of-type(3) h2 {
    line-height: 1.45;
  }
}
@media (width >= 48rem) {
  .card {
    align-items: center;
  }
}

.fig {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  container: fig/inline-size;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 50%;
}
.fig img {
  display: block;
  height: auto;
}
.fig [data-card=number] {
  position: absolute;
  top: 7.3846153846%;
  left: 4.6153846154%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.5cqi;
  height: 16.5cqi;
  font-size: 10.2501538462cqi;
  letter-spacing: -0.0299882929em;
  white-space: nowrap;
  border: 2.438px solid currentColor;
  background-color: var(--color-white);
  border-radius: 50%;
}
@container fig (width >= 380px) {
  .fig [data-card=number] {
    position: absolute;
    top: 7.5%;
    left: 4.75%;
    width: 16.5cqi;
    height: 16.5cqi;
    font-size: 10.25cqi;
    letter-spacing: -0.03em;
    border-width: 3px;
  }
}

.card:nth-of-type(1) img {
  width: 55.6923076923%;
  aspect-ratio: 62/57;
  margin-block: 19.0769230769% 0.8615384615%;
}

.card:nth-of-type(2) img {
  width: 73.2307692308%;
  aspect-ratio: 102/79;
  margin-block: 15.6923076923% 0%;
}

.card:nth-of-type(3) img {
  width: 75.0769230769%;
  aspect-ratio: 127/75;
  margin-block: 24% 3.6923076923%;
}

.card:nth-of-type(4) img {
  width: 66.7692307692%;
  aspect-ratio: 34/25;
  margin-block: 20.6153846154% 3.0769230769%;
}

.card:nth-of-type(5) img {
  width: 69.5384615385%;
  aspect-ratio: 140/101;
  margin-block: 18.7692307692% 4.3076923077%;
}

.card:nth-of-type(6) img {
  width: 66.1538461538%;
  aspect-ratio: 90/71;
  margin-block: 19.0769230769% 1.4769230769%;
}

.card:nth-of-type(7) img {
  width: 75.3846153846%;
  aspect-ratio: 203/135;
  margin-block: 22.7692307692% 0%;
}

.card:nth-of-type(8) img {
  width: 57.8461538462%;
  aspect-ratio: 142/137;
  margin-block: 15.6923076923% 1.3846153846%;
}

.card:nth-of-type(9) img {
  width: 68.3076923077%;
  aspect-ratio: 23/17;
  margin-block: 24.6153846154% -2.1538461538%;
}

.card:nth-of-type(10) img {
  width: 71.3846153846%;
  aspect-ratio: 115/81;
  margin-block: 20.6153846154% 1.8461538462%;
}

.card:nth-of-type(11) img {
  width: 77.8461538462%;
  aspect-ratio: 39/22;
  margin-block: 28% 3.6923076923%;
}

.card:nth-of-type(12) img {
  width: 72.6153846154%;
  aspect-ratio: 101/73;
  margin-block: 19.3846153846% 2.0923076923%;
}

.card:nth-of-type(13) img {
  width: 63.6923076923%;
  aspect-ratio: 85/74;
  margin-block: 15.3846153846% 4.9230769231%;
}

.card:nth-of-type(14) img {
  width: 58.1538461538%;
  aspect-ratio: 137/149;
  margin-block: 9.8461538462% 4.7692307692%;
}

@container card (width >= 380px) {
  .card:nth-of-type(1) img {
    width: 55.75%;
    aspect-ratio: 62/57;
    margin-block: 19.25% 2.5%;
  }
  .card:nth-of-type(2) img {
    width: 73.25%;
    aspect-ratio: 111/86;
    margin-block: 15.75% 0.5%;
  }
  .card:nth-of-type(3) img {
    width: 75%;
    aspect-ratio: 100/59;
    margin-block: 27.25% 3.5%;
  }
  .card:nth-of-type(4) img {
    width: 66.5%;
    aspect-ratio: 19/14;
    margin-block: 20.75% 3.25%;
  }
  .card:nth-of-type(5) img {
    width: 69.25%;
    aspect-ratio: 103/74;
    margin-block: 18.75% 4.5%;
  }
  .card:nth-of-type(6) img {
    width: 66.25%;
    aspect-ratio: 71/56;
    margin-block: 19.25% 1.5%;
  }
  .card:nth-of-type(7) img {
    width: 75.5%;
    aspect-ratio: 299/199;
    margin-block: 22.75% 0%;
  }
  .card:nth-of-type(8) img {
    width: 58%;
    aspect-ratio: 103/99;
    margin-block: 15.75% 1.5%;
  }
  .card:nth-of-type(9) img {
    width: 68%;
    aspect-ratio: 137/101;
    margin-block: 24.75% -2.25%;
  }
  .card:nth-of-type(10) img {
    width: 71.5%;
    aspect-ratio: 249/175;
    margin-block: 20.75% 2%;
  }
  .card:nth-of-type(11) img {
    width: 78%;
    aspect-ratio: 39/22;
    margin-block: 28% 1%;
  }
  .card:nth-of-type(12) img {
    width: 72.75%;
    aspect-ratio: 97/70;
    margin-block: 19.5% 1%;
  }
  .card:nth-of-type(13) img {
    width: 63.75%;
    aspect-ratio: 85/74;
    margin-block: 15.25% 2.25%;
  }
  .card:nth-of-type(14) img {
    width: 58.25%;
    aspect-ratio: 233/253;
    margin-block: 9.75% 0%;
  }
}
.button {
  display: flex;
  align-items: center;
  gap: 0 0.6875em;
  width: fit-content;
  padding: 0.25em 1.375em;
  color: var(--color-mahogany);
  font-size: 1rem;
  line-height: 1.75;
  border: 2px solid currentColor;
  border-radius: 2em;
}
.button::after {
  content: "";
  width: 1.875rem;
  height: 1.125rem;
  background-color: currentColor;
  --r: url('data:image/svg+xml,<svg viewBox="0 0 30 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M29.4141 8.70703L20.707 17.4141L19.293 16L26.5859 8.70703L19.293 1.41406L20.707 0L29.4141 8.70703ZM21 9.70703H0V7.70703H21V9.70703Z" fill="currentColor"/></svg>');
  mask: var(--r) center/contain no-repeat;
}

.dialog {
  width: min(95%, 34.6875rem);
  min-height: 90svh;
  padding: 0;
  background-color: var(--color-white);
  border-radius: 1.875rem;
  border: none;
}
.dialog[open] {
  animation: dialog 0.53s ease-out;
}
.dialog[open]::backdrop {
  animation: backdrop 0.7s ease-out forwards;
}
.dialog-l {
  width: min(80%, 22.1875rem);
  margin-inline: auto;
  padding-block: 3.5rem 2.1875rem;
  color: var(--color-navy);
}
.dialog-c {
  display: grid;
  grid-auto-flow: row;
  gap: 1.625rem 0;
}
.dialog .number {
  display: grid;
  align-items: center;
  justify-content: center;
  width: 1.6097560976em;
  height: 1.6097560976em;
  font-size: 2rem;
  letter-spacing: -0.02em;
  border-radius: 50%;
  border: 3px solid currentColor;
}
.dialog img {
  width: min(100%, 22rem);
  height: auto;
}
.dialog h2 {
  font-size: 1.25rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-align: center;
}
.dialog p {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.07em;
}
.dialog button {
  display: grid;
  justify-items: center;
  margin: 2.5rem auto 0 auto;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.75;
}
.dialog button::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: currentColor;
  mask: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.4141 1.41406L13.1211 11.707L23.4141 22L22 23.4141L11.707 13.1211L1.41406 23.4141L0 22L10.293 11.707L0 1.41406L1.41406 0L11.707 10.293L22 0L23.4141 1.41406Z" fill="currentColor"/></svg>') center/contain no-repeat;
}
@media (width >= 75rem) {
  .dialog .number {
    font-size: 2.5625rem;
  }
  .dialog p {
    white-space: pre-line;
  }
}

@keyframes backdrop {
  0% {
    background-color: rgba(21, 47, 99, 0);
  }
  100% {
    background-color: rgba(21, 47, 99, 0.55);
  }
}
@keyframes dialog {
  0% {
    opacity: 0;
    display: none;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
.page-footer {
  padding-block: 3.75rem 8.375rem;
}
.page-footer a {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.01em;
}
@media (width >= 48rem) {
  .page-footer {
    padding-block: 7.25rem 5.875rem;
  }
}

/* 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;
  }
}