/* Bulma Utilities */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500&display=swap");
.button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Bulma Base */ /*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: inherit;
}

html {
  background-color: #EAE5E0;
  font-size: 14px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
optgroup,
select,
textarea {
  font-family: "Noto Serif JP", sans-serif;
}

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

body {
  color: #222222;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: left;
}

a, .collapse-trigger {
  color: var(--link-color, inherit);
  cursor: pointer;
  text-decoration: none;
  transition: all linear 0.1s;
}
a strong, .collapse-trigger strong {
  color: currentColor;
}

code {
  background-color: hsl(0deg, 0%, 96%);
  color: #da1039;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

hr {
  background-color: #ddd;
  border: none;
  display: block;
  height: 1px;
  margin: 25px 0;
}

img {
  vertical-align: bottom;
}

input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

small {
  font-size: 0.875em;
}

span {
  font-style: inherit;
  font-weight: inherit;
}

strong {
  font-weight: 700;
}

fieldset {
  border: none;
}

pre {
  -webkit-overflow-scrolling: touch;
  background-color: hsl(0deg, 0%, 96%);
  color: hsl(0deg, 0%, 29%);
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}
pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

table td,
table th {
  vertical-align: top;
}
table td:not([align]),
table th:not([align]) {
  text-align: inherit;
}
table th {
  color: hsl(0deg, 0%, 21%);
}

svg {
  fill: currentColor;
}

p {
  line-height: var(--p-line-height, 2);
  font-size: var(--p-font-size, clamp(13px, 9.671px + 0.4329vw, 14px));
}
p + p {
  margin-top: var(--p-margin-top, 2em);
}

:where(h1, h2, h3, h4, h5, h6) {
  color: var(--hd-color, inherit);
  line-height: var(--hd-line-height, 1.5);
  font-size: var(--hd-font-size, inherit);
  letter-spacing: var(--hd-letter-spacing, 0.1em);
  font-weight: var(--hd-font-weight, normal);
}
:where(h1, h2, h3, h4, h5, h6):not(:last-child) {
  margin-bottom: var(--hd-margin-bottom, 0);
}

/* Bulma Elements */
.button {
  background-color: var(--button-background-color, #fff);
  font-weight: var(--button-font-weight, 500);
  font-size: var(--button-font-size, 14px);
  color: var(--button-color, #ffffff);
  cursor: pointer;
  max-width: var(--button-width, 333px);
  width: 100%;
  height: auto;
  min-height: var(--button-min-height, 60px);
  justify-content: center;
  position: relative;
  border-style: var(--button-border-style, solid);
  border-color: var(--button-border-color, #AC9376);
  border-width: var(--button-border-width, 0);
  border-radius: var(--button-border-radius, 0);
  letter-spacing: var(--button-letter-spacing, 0.8px);
  line-height: var(--button-line-height, 1.2);
  text-align: center;
  text-decoration: none !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.button,
.button .icon-arrow {
  transition: linear all 0.1s;
}
.button:hover {
  background-color: var(--button-hover-background-color, #ffffff);
  color: var(--button-hover-color, #ffffff);
}
.button > .icon-arrow:last-child {
  width: 15px;
  height: 28px;
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button > .icon-arrow:last-child::before, .button > .icon-arrow:last-child::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  transition: all linear 0.05s;
}
.button > .icon-arrow:last-child::before {
  --icon-arrow-size: 6px;
  --icon-arrow-top: calc(50% - 2.5px);
  width: var(--icon-arrow-size);
  height: var(--icon-arrow-size);
  border: 1px solid currentColor;
  border-width: 1px 1px 0 0;
  top: var(--icon-arrow-top);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 1px;
}
.button > .icon-arrow:last-child::after {
  background: currentColor;
  height: 1px;
  width: 100%;
  top: 50%;
}

.buttons:not(:first-child) {
  margin-top: 60px;
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
  padding-left: var(--container-offset, 30px);
  padding-right: var(--container-offset, 30px);
  max-width: calc(var(--container-width, 1077px) + var(--container-offset, 30px) * 2);
}
.container .container {
  --container-offset: 0px;
}
.container.is-auto {
  --container-width: 0;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
}
.container.is-medium {
  --container-width: 860px;
}
.container.is-small {
  --container-width: 600px;
}
.container.is-full {
  max-width: none;
}

.title,
.subtitle {
  word-break: break-word;
  display: block;
}
.title em,
.title span,
.subtitle em,
.subtitle span {
  font-weight: inherit;
}
.title sub,
.subtitle sub {
  font-size: 0.75em;
}
.title sup,
.subtitle sup {
  font-size: 0.75em;
}

.title {
  font-weight: var(--title-font-weight, 500);
  font-stretch: normal;
  font-style: normal;
  font-family: var(--title-font-family, Noto Serif JP, sans-serif);
  line-height: var(--title-line-height, 1.2);
  letter-spacing: var(--title-letter-spacing, 0.1em);
  color: var(--title-color, inherit);
  font-size: var(--title-font-size, 18px);
}
.title:not(:last-child) {
  margin-bottom: var(--title-margin-bottom, 20px);
}
.title.is-type-01 {
  --title-font-weight: 500;
  --title-line-height: 2;
  --title-margin-bottom: 0;
  --title-font-size: clamp(13px, 9.671px + 0.4329vw, 14px);
}
.title.is-type-01::after {
  content: " -";
}
.title.is-type-02 {
  --title-font-size: clamp(16px, 2.684px + 1.7316vw, 20px);
}

.title-group {
  text-align: center;
}
.title-group:not(:last-child) {
  margin-bottom: var(--title-margin-bottom, clamp(30px, -36.5801px + 8.658vw, 50px));
}
.title-group.is-top-large .title:nth-child(1) {
  --title-font-size: clamp(18px, -1.974px + 2.5974vw, 24px);
}
.title-group :where(.title) {
  --title-font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
  --title-line-height: 1.45;
  --title-margin-bottom: 15px;
}

.collapse {
  --icon-arrow-size: 10px;
  --icon-arrow-top: calc(50% - 7px);
  text-align: left;
}
.collapse-trigger, .collapse-content {
  position: relative;
  padding-left: 27px;
}
.collapse-trigger::before, .collapse-content::before {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0;
  line-height: 1;
}
.collapse-trigger {
  position: relative;
  cursor: pointer;
}
.collapse-trigger::before {
  content: "Q.";
}
.collapse-trigger::after {
  transition: all 0.08s linear;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  transition: all linear 0.05s;
  width: var(--icon-arrow-size);
  height: var(--icon-arrow-size);
  border: 1px solid currentColor;
  border-width: 1px 1px 0 0;
  top: var(--icon-arrow-top);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: -18px;
}
.collapse-content {
  padding-top: 10px;
}
.collapse-content::before {
  padding-top: 0.8em;
  content: "A.";
}
.collapse.is-active {
  --icon-arrow-top: calc(50%);
}
.collapse.is-active .collapse-trigger::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Bulma Helpers */
.is-hidden {
  display: none !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

/* Bulma Layout */
.section {
  padding: var(--section-padding-top, clamp(67px, 3.7489px + 8.2251vw, 86px)) 0 var(--section-padding-bottom, clamp(73px, 9.7489px + 8.2251vw, 92px));
  background-color: var(--section-background-color, transparent);
}

/* ---------------------------------------------------------------------------
 * common
 * ---------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* link */
.link-more {
  text-align: right;
}
.link-more .arrow {
  margin-left: 5px;
}

/* arrow */
:root {
  --icon-arrow-width: 14px;
  --icon-arrow-height: 8px;
  --icon-arrow-hover-x: 10px;
  --icon-arrow-hover-border-with: 22px;
  --icon-arrow-position: relative;
  --icon-arrow-top: auto;
  --icon-arrow-bottom: auto;
  --icon-arrow-left: auto;
  --icon-arrow-right: auto;
  --icon-arrow-tip-size: 5px;
  --icon-arrow-tip-top: calc(50% - 2px);
}

.arrow {
  display: inline-block;
  width: var(--icon-arrow-width);
  height: var(--icon-arrow-height);
  transition: var(--transition);
  position: var(--icon-arrow-position);
  top: var(--icon-arrow-top);
  bottom: var(--icon-arrow-bottom);
  left: var(--icon-arrow-left);
  right: var(--icon-arrow-right);
}

.arrow:before,
.arrow:after {
  content: "";
  display: block;
  position: absolute;
  transition: var(--transition);
}

.arrow:before {
  transition: var(--transition);
  width: var(--icon-arrow-tip-size);
  height: var(--icon-arrow-tip-size);
  border: 1px solid currentColor;
  border-width: 1px 1px 0 0;
  top: var(--icon-arrow-tip-top);
  right: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.arrow:after {
  background: currentColor;
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
}

/* ---------------------------------------------------------------------------
 * main
 * ---------------------------------------------------------------------------*/
.main {
  text-align: center;
  color: #ffffff;
  position: relative;
  background: #b7b7b5 url(../../images/main-bg-pc.jpg) no-repeat;
  aspect-ratio: 1280/720;
  background-size: cover;
  padding-left: 30px;
  padding-right: 30px;
  --hd-font-size: clamp(32px, -21.2641px + 6.9264vw, 48px);
  --hd-line-height: 1.3;
  --hd-margin-bottom: clamp(18px, -25.2771px + 5.6277vw, 31px);
  --p-font-size: clamp(16px, 2.684px + 1.7316vw, 20px);
  --p-line-height: 1.5;
}
.main-data {
  text-align: left;
}
.main-data h2 {
  margin-top: clamp(16px, -10.632px + 3.4632vw, 24px);
}
.main-sitelogo {
  position: absolute;
  top: clamp(30px, -69.8701px + 12.987vw, 60px);
  left: clamp(30px, -69.8701px + 12.987vw, 60px);
}
.main-sitelogo img {
  width: clamp(54px, -32.5541px + 11.2554vw, 80px);
  height: auto;
}

/* ---------------------------------------------------------------------------
 * lineup
 * ---------------------------------------------------------------------------*/
.lineup-lead {
  text-align: center;
  --p-font-size: clamp(16px, 2.684px + 1.7316vw, 20px);
  --p-line-height: 1.5;
}
.lineup-lead:not(:last-child) {
  margin-bottom: clamp(70px, 3.4199px + 8.658vw, 90px);
}
.lineup-lead .title {
  --title-font-size: clamp(24px, -2.632px + 3.4632vw, 32px);
  --title-margin-bottom: clamp(25px, -1.632px + 3.4632vw, 33px);
  --title-line-height: 1.5;
}
.lineup-lead-inner {
  display: inline-block;
  text-align: left;
}
.lineup-lead .link-more {
  margin-top: 24px;
  font-size: 16px;
}
.lineup-item {
  display: grid;
  gap: clamp(30px, -49.8961px + 10.3896vw, 54px) clamp(30px, -69.8701px + 12.987vw, 60px);
  grid-template-columns: 37.38% 1fr;
  grid-template-areas: "figure data" "param param";
  color: var(--lineup-item-title-color, inherit);
}
.lineup-item p {
  color: var(--lineup-item-text-color, inherit);
}
.lineup-item-figure {
  grid-area: figure;
}
.lineup-item-data {
  grid-area: data;
}
.lineup-item-data-name {
  font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
  margin-bottom: 15px;
}
.lineup-item-data-price {
  font-size: clamp(14px, 7.342px + 0.8658vw, 16px);
  line-height: 2;
  margin-bottom: 11px;
}
.lineup-item-data-price > span {
  font-size: clamp(12px, 8.671px + 0.4329vw, 13px);
}
.lineup-item-data-detail {
  margin-bottom: 23px;
}
.lineup-item-data-button {
  margin-bottom: 26px;
}
.lineup-item-data-param img {
  width: 322px;
}
.lineup-item-param {
  grid-area: param;
  display: grid;
  gap: clamp(23px, -40.2511px + 8.2251vw, 42px) clamp(23px, -66.8831px + 11.6883vw, 50px);
  grid-template-columns: repeat(2, 1fr);
}

/* custom */
.lineup.is-lineup-type-01, .lineup.is-lineup-type-02, .lineup.is-lineup-type-03 {
  color: #fff;
  --section-background-color: #6B7389;
  --button-background-color: #424B64;
  --button-hover-background-color: #192649;
  --lineup-item-text-color: #FFFFFF;
}
.lineup.is-lineup-type-04 {
  --section-background-color: #F3F3F3;
  --button-background-color: #444444;
  --button-hover-background-color: #111111;
}

.lineup.is-lineup-type-02, .lineup.is-lineup-type-03 {
  --section-padding-top: 0;
}

/* ---------------------------------------------------------------------------
 * commit
 * ---------------------------------------------------------------------------*/
.commit {
  --hd-color: #000;
  --title-color: var(--hd-color);
  --section-background-color: #E8E8E8;
}
.commit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
.commit-list-item {
  display: grid;
  gap: clamp(27px, -82.8571px + 14.2857vw, 60px);
  grid-template-columns: 44.56% 1fr;
  grid-template-areas: "figure data";
}
.commit-list-item-figure {
  grid-area: figure;
}
.commit-list-item-data {
  grid-area: data;
  display: grid;
  align-self: center;
  grid-template-columns: 1fr;
  gap: clamp(20px, -3.303px + 3.0303vw, 27px);
}
.commit-list-item-data-title {
  --hd-font-size: clamp(18px, -1.974px + 2.5974vw, 24px);
}

/* ---------------------------------------------------------------------------
 * supervise
 * ---------------------------------------------------------------------------*/
.supervise {
  --section-background-color: #fff;
}
.supervise-data {
  display: grid;
  gap: 22px clamp(27px, -82.8571px + 14.2857vw, 60px);
  grid-template-columns: 44.56% 1fr;
  grid-template-areas: "figure name" "figure detail";
}
.supervise-data-figure {
  grid-area: figure;
}
.supervise-data-name {
  --hd-line-height: 2;
  --hd-font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
  grid-area: name;
}
.supervise-data-name > span {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.supervise-data-detail {
  grid-area: detail;
}
.supervise-data-detail .title {
  margin-top: clamp(23px, -40.2511px + 8.2251vw, 42px);
  --title-margin-bottom: 14px;
}

/* ---------------------------------------------------------------------------
 * pairing
 * ---------------------------------------------------------------------------*/
.pairing {
  --section-background-color: #F4F0EE;
}
.pairing-list {
  display: grid;
  gap: clamp(73px, 49.697px + 3.0303vw, 80px) clamp(20px, -113.1602px + 17.316vw, 60px);
  grid-template-columns: repeat(2, 1fr);
  font-size: 13px;
}
.pairing-list-item {
  margin-bottom: auto;
  --hd-margin-bottom: clamp(24px, 14.013px + 1.2987vw, 27px);
  --hd-font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
}
.pairing-list-item-figure {
  margin-bottom: clamp(27px, 13.684px + 1.7316vw, 31px);
}

/* ---------------------------------------------------------------------------
 * fun
 * ---------------------------------------------------------------------------*/
.fun {
  color: #fff;
  --section-background-color: #0B132C;
  --button-background-color: #101B3E;
  --button-hover-background-color: #182D70;
  --lineup-item-text-color: #C9C9C9;
}
.fun-list {
  display: grid;
  gap: clamp(73px, 49.697px + 3.0303vw, 80px) clamp(20px, -113.1602px + 17.316vw, 60px);
  grid-template-columns: repeat(1, 1fr);
  font-size: 13px;
}
.fun-list-item {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  --hd-margin-bottom: clamp(24px, 14.013px + 1.2987vw, 27px);
  --hd-font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
}
.fun-list-item-data {
  font-size: clamp(12px, 8.671px + 0.4329vw, 13px);
  display: grid;
  gap: clamp(10px, -23.29px + 4.329vw, 20px);
  grid-template-columns: 1fr;
}
.fun-list-item-data dl {
  display: grid;
  grid-template-columns: 106px 1fr;
  align-items: center;
  gap: 10px;
}
.fun-list-item-data dl dt {
  color: #0B132C;
  background-color: #fff;
  line-height: 2;
  text-align: center;
}

/* ---------------------------------------------------------------------------
 * voice
 * ---------------------------------------------------------------------------*/
.voice {
  --section-background-color: #fff;
}
.voice-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  font-size: clamp(13px, 9.671px + 0.4329vw, 14px);
  --p-margin-top: 0;
}
.voice-list-item {
  background-color: #F4F0EE;
  padding: 10px 20px;
}
.voice-list-item-data-name {
  line-height: 2;
  text-align: right;
}

/* ---------------------------------------------------------------------------
 * gift
 * ---------------------------------------------------------------------------*/
.gift {
  --section-background-color: #F4F0EE;
}
.gift-main {
  display: grid;
  gap: clamp(30px, -103.1602px + 17.316vw, 70px);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 60px;
  align-items: center;
  font-size: clamp(13px, 9.671px + 0.4329vw, 14px);
}
.gift-list {
  display: grid;
  gap: clamp(20px, -49.9091px + 9.0909vw, 41px);
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  --hd-font-size: clamp(18px, 11.342px + 0.8658vw, 20px);
}
.gift-list-item-data-figure {
  margin-bottom: clamp(27px, 17.013px + 1.2987vw, 30px);
}

/* ---------------------------------------------------------------------------
 * faq
 * ---------------------------------------------------------------------------*/
.faq {
  --section-background-color: #fff;
  --section-padding-bottom: 100px;
}
.faq-list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  text-align: center;
  font-size: clamp(13px, 9.671px + 0.4329vw, 14px);
}
.faq-list-item {
  background-color: #F4F0EE;
  padding: 10px 38px 10px 20px;
}

/* ---------------------------------------------------------------------------
 * footer
 * ---------------------------------------------------------------------------*/
.footer {
  background: #1b1c1e url(../../images/footer-bg-pc.jpg) no-repeat;
  text-align: center;
  color: #ffffff;
  position: relative;
  height: 640px;
  background-size: cover;
  background-position: 35%;
  padding-left: 30px;
  padding-right: 30px;
}
.footer a, .footer .collapse-trigger {
  color: inherit;
  text-decoration: underline;
}
.footer-text {
  --p-font-size: clamp(16px, 9.342px + 0.8658vw, 18px);
}
.footer-bottom {
  font-size: 12px;
  --p-font-size:inherit;
}
.footer-bottom-nav {
  display: flex;
  gap: 5px 40px;
  justify-content: center;
  margin-bottom: 15px;
}

/* ---------------------------------------------------------------------------
 * mq
 * ---------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  .container.is-auto-mobile {
    --container-width: 0;
    text-align: left;
    display: inline-flex;
    flex-direction: column;
  }
  .is-hidden-mobile {
    display: none !important;
  }
  .main {
    aspect-ratio: 393/578;
    background-image: url(../../images/main-bg-sp.jpg);
    display: grid;
    align-content: end;
    text-align: left;
    padding-bottom: 49px;
  }
  .lineup-lead .title {
    text-align: left;
  }
  .lineup-item {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "data" "param";
  }
  .lineup-item-data-name {
    text-align: center;
  }
  .lineup-item-data-price {
    text-align: center;
  }
  .lineup-item-param {
    grid-template-columns: 1fr;
  }
  .commit-list-item {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "data";
  }
  .commit-list-item-data-title {
    --hd-line-height: 2;
  }
  .supervise-data {
    grid-template-columns: 1fr;
    grid-template-areas: "figure" "name" "detail";
  }
  .supervise-data-name {
    text-align: center;
  }
  .supervise-data-name > span {
    margin-top: 9px;
  }
  .pairing-list {
    grid-template-columns: 1fr;
  }
  .fun-list-item {
    grid-template-columns: 1fr;
  }
  .gift-main {
    grid-template-columns: 1fr;
    margin-bottom: 73px;
  }
  .gift-list {
    gap: 70px;
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px), print {
  .container.is-auto-tablet {
    --container-width: 0;
    text-align: left;
    display: inline-flex;
    flex-direction: column;
  }
  .is-hidden-tablet {
    display: none !important;
  }
  .main-data {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .commit-list-item:nth-child(2n) {
    grid-template-columns: 1fr 44.56%;
    grid-template-areas: "data figure";
  }
}

@media screen and (min-width: 1060px) {
  .container.is-auto-desktop {
    --container-width: 0;
    text-align: left;
    display: inline-flex;
    flex-direction: column;
  }
  .is-hidden-desktop {
    display: none !important;
  }
}

@media screen and (max-width: 500px) {
  .footer {
    aspect-ratio: initial;
    background-image: url(../../images/footer-bg-sp.jpg);
    background-size: 100% auto;
    background-position: center top;
    height: 645px;
    display: grid;
    align-content: end;
    text-align: left;
    padding-bottom: 24px;
  }
  .footer-text {
    margin-bottom: 40px;
  }
  .footer-bottom-nav {
    flex-direction: column;
  }
}

@media screen and (min-width: 499px) {
  .footer-text {
    position: absolute;
    text-align: left;
    left: clamp(200px, -1318.026px + 197.4026vw, 656px);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer-bottom {
    position: absolute;
    left: 0%;
    width: 100%;
    bottom: 30px;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */