/*!
global > color
------------------------------
*/
:root {
  --color-primary: #eb3723;
  --color-accent: #00b9f0;
  --color-font-base: #777777;
  --color-font-primary: #eb3723;
  --color-border: #e5e5e5;
  --color-white: #fff;
  --color-instagram: #999999;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1030rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Kaku Gothic Antique", sans-serif;
  --font-family-en: "Poppins", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

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

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 380;
}
@media screen and (min-width: 768px) {
  :root {
    --base-vw: 1200;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  line-height: 1.75;
  font-size: 18rem;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 20rem;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-pt {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .u-pt {
    padding-top: 70rem;
  }
}

.u-fs {
  font-size: 0.8em;
}

/*!
component > button
------------------------------
*/
.c-button a {
  border-radius: 100vh;
  background-color: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}
.c-button a::after {
  display: inline-block;
  content: "";
  width: 28rem;
  aspect-ratio: 28/22;
  -webkit-mask-image: url(../img/top/icon-arrow-button.svg);
          mask-image: url(../img/top/icon-arrow-button.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-font-base);
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-button a:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
  }
  .c-button a:hover::after {
    background-color: var(--color-accent);
  }
}

.c-button--header {
  width: 115rem;
  white-space: nowrap;
  margin-right: 48rem;
}
@media screen and (min-width: 768px) {
  .c-button--header {
    width: 205rem;
    margin-right: 60rem;
  }
}
.c-button--header a {
  padding: 7rem 11rem;
  background-color: var(--color-accent);
  color: var(--color-font-primary);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 22rem;
  line-height: 1.1;
  border: 3rem solid var(--color-accent);
}
@media screen and (min-width: 768px) {
  .c-button--header a {
    padding: 3rem 17rem 3rem 23rem;
    font-size: 36rem;
  }
}
.c-button--header a::after {
  width: 16rem;
  aspect-ratio: 2773/2119;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-button--header a::after {
    width: 27rem;
  }
}
@media (any-hover: hover) {
  .c-button--header a:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
  }
  .c-button--header a:hover::after {
    background-color: var(--color-font-primary);
  }
}

/*!
component > title
------------------------------
*/
.c-title-wrapper {
  background-image: url("../img/title-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .c-title-wrapper {
    width: 596rem;
  }
}
.c-title-wrapper--costs {
  background-image: url("../img/title-bg-costs.png");
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-title-wrapper--costs {
    width: 636rem;
  }
}

.c-title {
  display: inline-grid;
  grid-template-columns: 12rem auto auto;
  gap: 8rem;
  align-items: center;
  padding: 10rem 0 10rem 20rem;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-title {
    grid-template-columns: 17rem auto auto;
    gap: 18rem;
    align-items: center;
    padding: 10rem 0 10rem 50rem;
  }
}
.c-title::before {
  content: "";
  display: block;
  width: 12rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-accent);
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .c-title::before {
    width: 17rem;
  }
}

.c-title-en {
  white-space: nowrap;
  display: inline-block;
  font-family: var(--font-family-en);
  font-size: 28rem;
  font-weight: 600;
  line-height: 1.175;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 40rem;
  }
}
.c-title-en--costs {
  font-size: 25rem;
}
@media screen and (min-width: 768px) {
  .c-title-en--costs {
    font-size: 40rem;
  }
}

.c-title-ja {
  line-height: 2.8;
  font-size: 14rem;
  font-weight: 500;
  color: var(--color-font-light);
  grid-column: 3/4;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .c-title-ja {
    font-size: 18rem;
    grid-column: 3/4;
    grid-row: 1/2;
  }
}

/*!
component > table
------------------------------
*/
.c-table-list {
  display: grid;
}

.c-table-item {
  display: grid;
}
@media screen and (min-width: 768px) {
  .c-table-item {
    grid-template-columns: 190rem 1fr;
    align-items: center;
  }
}
.c-table-item:not(:first-child) {
  margin-top: 20rem;
}
@media screen and (min-width: 768px) {
  .c-table-item:not(:first-child) {
    margin-top: 30rem;
  }
}

.c-table-term {
  display: flex;
  align-items: center;
  gap: 10rem;
  color: var(--color-font-primary);
  font-size: 22rem;
}
@media screen and (min-width: 768px) {
  .c-table-term {
    font-size: 23rem;
  }
}
.c-table-term::before {
  display: inline-flex;
  content: "";
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  border: 5rem solid var(--color-accent);
}
@media screen and (min-width: 768px) {
  .c-table-term::before {
    width: 36rem;
    height: 36rem;
    border: 6rem solid var(--color-accent);
  }
}
.c-table-term p {
  display: block;
}

.c-table-desc {
  padding-top: 8rem;
  border-top: 3rem solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .c-table-desc {
    padding-top: 0;
    border-top: none;
    border-left: 3rem solid var(--color-border);
    padding-left: 15rem;
  }
}

.c-table-desc-item {
  margin-top: 10rem;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .c-table-desc-item {
    margin-top: 0;
  }
}
.c-table-desc-item::before {
  display: inline-flex;
  flex-shrink: 0;
  content: "";
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .c-table-desc-item::before {
    width: 18rem;
    height: 18rem;
  }
}

.c-table-desc-item--costs {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-table-desc-item--costs {
    line-height: 1.75;
  }
}

.c-table-desc-item--extra {
  display: grid;
  grid-template-columns: auto auto 1fr 230rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-table-desc-item--extra {
    grid-template-columns: auto auto 1fr 670rem;
  }
}
.c-table-desc-item--extra p {
  display: inline;
}

.c-table-notes {
  margin-top: 15rem;
}

.c-table-note {
  font-weight: 500;
  line-height: 1.67;
  font-size: 16rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .c-table-note {
    font-size: 18rem;
  }
}

.c-table-desc-item-line {
  border-top: 1rem solid var(--color-font-base);
  padding-bottom: 6rem;
}

.c-table-desc-item-text {
  font-size: 16rem;
  font-weight: 500;
  margin-left: 4rem;
}
@media screen and (min-width: 768px) {
  .c-table-desc-item-text {
    font-size: 20rem;
  }
}
.c-table-desc-item-text span {
  display: inline-block;
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

.l-container-l {
  max-width: 1200rem;
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  background-color: var(--color-primary);
  height: 60rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: auto;
  }
}

.l-header-inner {
  height: 100%;
  padding: 14rem 15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14rem;
}
@media screen and (min-width: 768px) {
  .l-header-inner {
    padding: 32rem 50rem 0;
  }
}

.l-header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header-logo img {
  width: 135rem;
  aspect-ratio: 43703/5561;
}
@media screen and (min-width: 768px) {
  .l-header-logo img {
    width: 437rem;
  }
}

.l-header-instagram-link {
  display: grid;
  place-items: center;
  transition: none;
}

.l-header-instagram-icon {
  -webkit-mask-image: url(../img/instagram-icon.svg);
          mask-image: url(../img/instagram-icon.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  display: block;
  width: 28rem;
  aspect-ratio: 1/1;
  transform-origin: center center;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header-instagram-icon {
    padding: 8rem;
    width: 48rem;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-header-instagram-link:hover .l-header-instagram-icon {
    transform: scale(0.95);
  }
}

.l-header-menu {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: var(--z-index-modal);
  overflow: scroll;
}
.l-header-menu::backdrop {
  display: none;
}
.l-header-menu[open] {
  opacity: 1;
  pointer-events: auto;
}

.l-header-menu-nav {
  margin-left: auto;
  width: 100%;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-header-menu-nav {
    width: 60%;
  }
}

.l-header-menu-logo {
  display: block;
  margin: 28rem 15rem 14rem;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 768px) {
  .l-header-menu-logo {
    margin-top: 0;
    margin: 40rem 20rem;
  }
}
.l-header-menu-logo:focus, .l-header-menu-logo:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.l-header-menu-logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4rem;
}
.l-header-menu-logo img {
  width: 135rem;
  aspect-ratio: 43703/5561;
}
@media screen and (min-width: 768px) {
  .l-header-menu-logo img {
    width: 350rem;
  }
}

.l-header-menu-list {
  margin: 50rem 0;
  padding-left: 30rem;
  display: inline-flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .l-header-menu-list {
    margin: 0 0 30rem 0;
  }
}

.l-header-menu-item a {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  color: var(--color-white);
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header-menu-item a:hover {
    color: var(--color-accent);
  }
}

.l-header-menu-item-en {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 28rem;
}
@media screen and (min-width: 768px) {
  .l-header-menu-item-en {
    font-size: 30rem;
  }
}

.l-header-menu-item-ja {
  font-size: 14rem;
  font-weight: 500;
}

.l-header-head {
  z-index: calc(var(--z-index-modal) + 1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.l-header-head-inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header-head-inner {
    gap: 8rem;
  }
}

.l-header-menu-open-button,
.l-header-menu-close-button {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 42rem;
  aspect-ratio: 1;
  border-radius: 50%;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  --button-border-color: var(--color-white);
  --button-bg-color: var(--color-primary);
  border: 3rem solid var(--button-border-color);
  background-color: var(--button-bg-color);
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button,
  .l-header-menu-close-button {
    width: 50rem;
    border-width: 4rem;
  }
}
.l-header-menu-open-button.is-active,
.l-header-menu-close-button.is-active {
  opacity: 1;
  visibility: visible;
}
@media (any-hover: hover) {
  .l-header-menu-open-button:hover,
  .l-header-menu-close-button:hover {
    border-color: var(--color-accent);
    background-color: var(--color-white);
  }
  .l-header-menu-open-button:hover .l-header-menu-open-button-line span,
  .l-header-menu-open-button:hover .l-header-menu-close-button-line span,
  .l-header-menu-close-button:hover .l-header-menu-open-button-line span,
  .l-header-menu-close-button:hover .l-header-menu-close-button-line span {
    background-color: var(--color-primary);
  }
}

@media (any-hover: hover) {
  .l-header-menu-open-button.is-active:hover .l-header-menu-open-button-line span {
    background-color: var(--color-primary);
  }
}

@media (any-hover: hover) {
  .l-header-menu-close-button.is-active:hover .l-header-menu-close-button-line span {
    background-color: var(--color-primary);
  }
}

.l-header-menu-open-button-line {
  display: block;
  width: 27rem;
  height: 10rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button-line {
    width: 28rem;
    height: 14rem;
  }
}
.l-header-menu-open-button-line span {
  display: block;
  width: 100%;
  height: 3rem;
  background-color: var(--color-accent);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header-menu-open-button-line span {
    height: 4rem;
  }
}

.l-header-menu-close-button-line {
  display: block;
  width: 27rem;
  height: 10rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header-menu-close-button-line {
    height: 14rem;
  }
}
.l-header-menu-close-button-line span {
  display: block;
  width: 27rem;
  height: 3rem;
  background-color: var(--color-accent);
  transition: background-color 0.3s ease;
  position: absolute;
  top: 40%;
  transform: translate(0, -50%);
}
.l-header-menu-close-button-line span:nth-child(1) {
  transform: rotate(45deg);
}
.l-header-menu-close-button-line span:nth-child(2) {
  transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .l-header-menu-close-button-line span {
    width: 28rem;
    height: 4rem;
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  border-top: 3rem solid var(--color-border);
}

.l-footer-inner {
  padding: 12rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    padding: 6rem 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.l-footer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15rem;
}
@media screen and (min-width: 768px) {
  .l-footer-link {
    width: auto;
    gap: 20rem;
  }
}

.l-footer-instagram-link {
  display: grid;
  place-items: center;
  transition: none;
}

.l-footer-instagram-icon {
  -webkit-mask-image: url(../img/instagram-icon-gradient.svg);
          mask-image: url(../img/instagram-icon-gradient.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-font-primary);
  display: block;
  width: 29rem;
  aspect-ratio: 1/1;
  transform-origin: center center;
  transition: transform 0.3s;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .l-footer-instagram-icon {
    padding: 6rem;
    width: 40rem;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .l-footer-instagram-link:hover .l-footer-instagram-icon:hover {
    transform: scale(0.95);
  }
}

.l-footer-instagram-image {
  display: grid;
  place-items: center;
  width: 50rem;
  height: 50rem;
}
.l-footer-instagram-image img {
  width: 32rem;
  aspect-ratio: 1/1;
}

.l-footer-link-privacy {
  display: flex;
  align-items: center;
  gap: 12rem;
  font-weight: 500;
  font-size: 15rem;
  line-height: 2.7;
  position: relative;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer-link-privacy:hover {
    color: var(--color-accent);
  }
  .l-footer-link-privacy:hover .l-footer-link-arrow {
    background-color: var(--color-accent);
  }
}
@media screen and (min-width: 768px) {
  .l-footer-link-privacy {
    font-size: 18rem;
  }
}

.l-footer-link-arrow {
  width: 21rem;
  height: 14rem;
  -webkit-mask-image: url(../img/footer-arrow.svg);
          mask-image: url(../img/footer-arrow.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-font-base);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-footer-link-arrow {
    width: 28rem;
    height: 21rem;
  }
}

.l-footer-copyright {
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 13rem;
  line-height: 3.1;
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    font-size: 15rem;
  }
}

/*!
page > kv
------------------------------
*/
.kv {
  background-color: var(--color-primary);
  padding-bottom: 64rem;
}
@media screen and (min-width: 768px) {
  .kv {
    padding-bottom: 172rem;
  }
}

.kv-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv-wrapper {
    padding: 0 40rem;
  }
}
.kv-wrapper::before {
  position: absolute;
  content: "";
  display: block;
  width: 115rem;
  aspect-ratio: 678/763;
  bottom: -140rem;
  right: 0;
  background-image: url("../img/top/fv-sign-deer.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: calc(var(--z-index-modal) - 1);
}
@media screen and (min-width: 768px) {
  .kv-wrapper::before {
    width: 310rem;
    bottom: -410rem;
  }
}

.kv-title-group {
  padding-top: 30rem;
  display: flex;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .kv-title-group {
    padding-top: 85rem;
  }
}

.kv-title-group-p-c {
  margin-top: 15rem;
  padding-left: 15rem;
  width: 50%;
  aspect-ratio: 560/291;
}
@media screen and (min-width: 768px) {
  .kv-title-group-p-c {
    padding-left: 0;
  }
}

.kv-title-group-text {
  color: var(--color-white);
  font-size: 20rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  padding-left: 10rem;
}
@media screen and (min-width: 768px) {
  .kv-title-group-text {
    font-size: 46rem;
    padding-left: 60rem;
  }
}
.kv-title-group-text span {
  display: block;
}

.kv-title-group-border {
  position: absolute;
  width: 180rem;
  aspect-ratio: 589/130;
}
@media screen and (min-width: 768px) {
  .kv-title-group-border {
    width: 589rem;
    top: 268rem;
    right: 0;
  }
}

.kv-info {
  margin-top: 50rem;
  padding-left: 30rem;
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv-info {
    margin-top: 83rem;
    padding-left: 0;
  }
}

.kv-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .kv-info-list {
    gap: 12rem;
    margin-left: 42rem;
  }
}

.kv-info-item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .kv-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20rem;
  }
}

.kv-info-term {
  display: inline-flex;
  align-items: baseline;
  font-size: 14rem;
  font-weight: 500;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .kv-info-term {
    align-items: end;
    font-size: 22rem;
    gap: 10rem;
  }
}
.kv-info-term:before {
  display: inline-flex;
  content: "";
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 4rem solid var(--color-accent);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .kv-info-term:before {
    width: 33rem;
    height: 33rem;
    border: 6rem solid var(--color-accent);
  }
}
.kv-info-term span {
  position: relative;
}
.kv-info-term span:after {
  position: absolute;
  bottom: 1rem;
  left: 0;
  content: "";
  width: 100%;
  height: 1rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .kv-info-term span:after {
    bottom: -1rem;
    height: 3rem;
  }
}

.kv-info-desc {
  display: flex;
  align-items: center;
  gap: 8rem;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .kv-info-desc {
    padding-left: 0;
  }
}
.kv-info-desc img {
  width: 14rem;
  aspect-ratio: 2699/2062;
}
@media screen and (min-width: 768px) {
  .kv-info-desc img {
    width: 27rem;
  }
}

.kv-info-desc-en {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-family: var(--font-family-en);
  font-size: 20rem;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .kv-info-desc-en {
    font-size: 43rem;
  }
}

.kv-info-desc-dow {
  font-size: 13rem;
}
@media screen and (min-width: 768px) {
  .kv-info-desc-dow {
    font-size: 20rem;
  }
}

@media screen and (min-width: 768px) {
  .kv-info-desc-time {
    margin-left: 7rem;
    font-size: 25rem;
  }
}

.kv-info-desc-ja {
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .kv-info-desc-ja {
    font-size: 22rem;
  }
}

.kv-info-attention {
  position: absolute;
  top: -55rem;
  right: 30rem;
  width: 80rem;
  height: 72rem;
}
@media screen and (min-width: 768px) {
  .kv-info-attention {
    top: -72rem;
    right: 70rem;
    width: 230rem;
    height: 207rem;
  }
}

.kv-introduction {
  margin-top: 20rem;
  padding-inline: 20rem;
}
@media screen and (min-width: 768px) {
  .kv-introduction {
    margin-top: 160rem;
    margin-left: 10rem;
    padding-inline: 0;
    display: flex;
    gap: 108rem;
  }
}

.kv-introduction-arrow {
  width: 25rem;
  aspect-ratio: 14335/25000;
}
@media screen and (min-width: 768px) {
  .kv-introduction-arrow {
    margin-top: 54rem;
    width: 143rem;
    height: 250rem;
  }
}

.kv-introduction-text {
  margin-top: 20rem;
  color: var(--color-white);
  font-size: 16rem;
  line-height: 2.17;
}
@media screen and (min-width: 768px) {
  .kv-introduction-text {
    margin-top: 0;
    font-size: 23rem;
  }
  .kv-introduction-text span {
    display: block;
  }
}

/*!
page > overview
------------------------------
*/
.overview {
  padding: 90rem 0 100rem;
}
@media screen and (min-width: 768px) {
  .overview {
    padding: 50rem 0 157rem;
  }
}

.overview-purpose {
  color: var(--color-font-primary);
}
@media screen and (min-width: 768px) {
  .overview-purpose {
    font-size: 25rem;
  }
}

@media screen and (min-width: 768px) {
  .overview-purpose-line {
    display: inline-block;
  }
}

.overview-purpose-end {
  display: block;
  margin-left: 3em;
}
@media screen and (min-width: 768px) {
  .overview-purpose-end {
    display: inline-block;
    margin-left: 0;
  }
}

.overview-list {
  margin-top: 24rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .overview-list {
    margin-top: 16rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45rem;
    border-top: 3rem solid var(--color-border);
  }
}

.overview-item {
  border: 3rem solid var(--color-border);
  border-radius: 15rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .overview-item {
    padding-top: 66rem;
    border: none;
    border-radius: 0;
    border-bottom: 3rem solid var(--color-border);
  }
}

.overview-item-number {
  display: none;
}
@media screen and (min-width: 768px) {
  .overview-item-number {
    display: block;
    font-family: var(--font-family-en);
    font-weight: 600;
    font-size: 80rem;
    letter-spacing: -0.05em;
    color: var(--color-font-primary);
    position: relative;
  }
  .overview-item-number::before, .overview-item-number::after {
    position: absolute;
    content: "";
    aspect-ratio: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-48%, -50%);
  }
  .overview-item-number::before {
    width: 162rem;
    border: 23rem solid var(--color-accent);
  }
  .overview-item-number::after {
    width: 180rem;
    border: 3rem solid var(--color-accent);
  }
}

.overview-title-wrapper {
  width: 80%;
  margin-inline: auto;
  border-bottom: 3rem solid var(--color-accent);
}
@media screen and (min-width: 768px) {
  .overview-title-wrapper {
    width: 100%;
    border-bottom: 3rem solid var(--color-border);
  }
}

.overview-item-title {
  margin-top: 10rem;
  display: inline-block;
  font-size: 22rem;
  color: var(--color-font-primary);
  padding-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .overview-item-title {
    margin-top: 32rem;
    padding-bottom: 16rem;
  }
}

.overview-item-text {
  padding: 10rem 0;
  font-size: 20rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .overview-item-text {
    padding: 16rem 0 17rem;
  }
}

.overview-item-text-br {
  display: block;
}

.overview-item-text-number {
  font-family: var(--font-family-en);
  font-size: 40rem;
  font-weight: 600;
  line-height: 1;
  margin-inline: 7rem;
}
@media screen and (min-width: 768px) {
  .overview-item-text-number {
    font-size: 43rem;
  }
}

.overview-item-text-note {
  display: block;
  font-weight: 500;
  font-size: 16rem;
}

/*!
page > kitchen-car
------------------------------
*/
.kitchen-car {
  padding-bottom: 100rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .kitchen-car {
    padding-bottom: 137rem;
  }
}

.kitchen-car-wrapper {
  margin-left: 5%;
  margin-right: 5%;
}
@media screen and (min-width: 768px) {
  .kitchen-car-wrapper {
    margin-left: 7%;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 36%;
    gap: 7.5%;
  }
}

.kitchen-car-content-item:nth-child(2) {
  margin-top: 30rem;
}

.kitchen-car-term-title {
  font-size: 20rem;
  line-height: 2.2;
  color: var(--color-font-primary);
}
@media screen and (min-width: 768px) {
  .kitchen-car-term-title {
    font-size: 23rem;
  }
}

.kitchen-car-term-title-note {
  font-weight: 500;
}

.kitchen-car-desc-list {
  border-top: 3rem solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .kitchen-car-desc-list {
    border-top: none;
    margin-left: 40rem;
  }
}

.kitchen-car-desc-item {
  line-height: 2.25;
  font-size: 17rem;
  border-bottom: 3rem solid var(--color-border);
}
@media screen and (min-width: 768px) {
  .kitchen-car-desc-item {
    font-size: 20rem;
  }
}

.kitchen-car-desc-item-note {
  display: block;
  font-weight: 500;
  font-size: 13rem;
  letter-spacing: -0.05em;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .kitchen-car-desc-item-note {
    display: inline;
    margin-left: 6rem;
    font-size: 16rem;
    line-height: 2.25;
  }
}

@media screen and (min-width: 768px) {
  .kitchen-car-desc-notes {
    margin-left: 40rem;
  }
}

.kitchen-car-desc-note-link {
  cursor: pointer;
  color: var(--color-accent);
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (any-hover: hover) {
  .kitchen-car-desc-note-link:hover {
    text-decoration-color: transparent;
  }
}

.kitchen-car-slider {
  margin-top: 48rem;
}
@media screen and (min-width: 768px) {
  .kitchen-car-slider {
    margin-top: 0;
  }
}

.splide__track {
  width: 100%;
  aspect-ratio: 440/370;
}
@media screen and (min-width: 768px) {
  .splide__track {
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
  }
}

.splide__slide {
  border-radius: 20rem;
}
@media screen and (min-width: 768px) {
  .splide__slide {
    border-radius: 0;
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
  }
}
.splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20rem;
}
@media screen and (min-width: 768px) {
  .splide__slide img {
    border-radius: 0;
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
  }
}

.splide__pagination__page {
  background-color: var(--color-border);
  border-radius: 50%;
  display: inline-block;
  width: 12rem;
  height: 12rem;
  margin: 0 5rem;
  transition: scale 0.3s ease;
}
@media screen and (min-width: 768px) {
  .splide__pagination__page {
    width: 15rem;
    height: 15rem;
  }
}
@media (any-hover: hover) {
  .splide__pagination__page:hover:not(.is-active) {
    transform: scale(1.2);
  }
}

.kitchen-car-slider-control {
  padding: 10rem 0;
}

.splide__arrows--ltr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.splide__arrow img {
  color: var(--color-font-base);
  transition: scale 0.3s ease;
}
@media (any-hover: hover) {
  .splide__arrow img:hover {
    transform: scale(1.2);
  }
}

.splide__pagination__page.is-active {
  background-color: var(--color-accent);
  cursor: default;
}

/*!
page > support
------------------------------
*/
.support {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .support {
    padding-bottom: 157rem;
  }
}

.support-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12rem;
}
@media screen and (min-width: 768px) {
  .support-list {
    grid-template-columns: 1fr 1fr;
    gap: 20rem;
  }
}

.support-item {
  padding: 20rem 0 20rem 20rem;
  border: 3rem solid var(--color-border);
  border-radius: 10rem;
  height: 100rem;
}
@media screen and (min-width: 768px) {
  .support-item {
    padding: 15rem 0 12rem 14rem;
    border-radius: 20rem;
    height: 120rem;
  }
}

.support-item-inner {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.support-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 100%;
  border-radius: 100vh;
  background-color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .support-item-inner:before {
    width: 7rem;
  }
}

.support-text {
  padding-left: 20rem;
  line-height: 1.6;
  font-size: 17rem;
}
@media screen and (min-width: 768px) {
  .support-text {
    padding-left: 40rem;
    font-size: 23rem;
  }
}
.support-text span {
  display: block;
}

.support-note {
  margin-top: 26rem;
  font-weight: 500;
  font-size: 14rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .support-note {
    font-size: 16rem;
  }
}

/*!
page > costs-conditions
------------------------------
*/
.costs-conditions {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .costs-conditions {
    padding-bottom: 156rem;
  }
}

.costs-conditions-list {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .costs-conditions-list {
    padding-top: 62rem;
    gap: 5rem;
  }
}

.costs-conditions-item {
  align-items: baseline;
}
.costs-conditions-item:not(:first-child) {
  margin-top: 20rem;
}
@media screen and (min-width: 768px) {
  .costs-conditions-item:not(:first-child) {
    margin-top: 12rem;
  }
}

.costs-conditions-note {
  margin-top: 26rem;
  font-weight: 500;
  font-size: 14rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .costs-conditions-note {
    font-size: 16rem;
  }
}

.costs-conditions-note-link {
  cursor: pointer;
  color: var(--color-accent);
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (any-hover: hover) {
  .costs-conditions-note-link:hover {
    text-decoration-color: transparent;
  }
}

/*!
page > schedule
------------------------------
*/
.schedule {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .schedule {
    padding-bottom: 150rem;
  }
}

.schedule-inner {
  position: relative;
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .schedule-inner {
    padding-top: 38rem;
    padding-left: 190rem;
  }
}
.schedule-inner:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .schedule-inner:before {
    display: block;
    position: absolute;
    top: 54rem;
    left: 10rem;
    content: "";
    width: 90rem;
    height: 595rem;
    background-image: url("../img/top/schedule-border.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 33rem;
}

.schedule-item {
  padding: 10rem 10rem 0 10rem;
  display: flex;
  flex-direction: column;
  border: 3rem solid var(--color-border);
  border-radius: 10rem;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule-item {
    padding: 10rem;
    max-width: 750rem;
    display: grid;
    grid-template-columns: 318rem 1fr;
    gap: 24rem;
    border-radius: 20rem;
  }
}
.schedule-item:not(:last-child):after {
  position: absolute;
  content: "";
  width: 20rem;
  aspect-ratio: 31/23;
  background-image: url("../img/top/schedule-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -27rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .schedule-item:not(:last-child):after {
    width: 28rem;
    bottom: -31rem;
    left: 22%;
  }
}

.schedule-item-date {
  font-size: 20rem;
  line-height: 2;
  letter-spacing: -0.05em;
  color: var(--color-white);
  width: 100%;
  background-image: url("../img/top/schedule-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-top-right-radius: 20rem;
  border-bottom-right-radius: 20rem;
}
@media screen and (min-width: 768px) {
  .schedule-item-date {
    font-size: 23rem;
  }
}

.schedule-item-title {
  font-size: 19rem;
}
@media screen and (min-width: 768px) {
  .schedule-item-title {
    text-align: left;
    font-size: 23rem;
  }
}

.schedule-note {
  margin-top: 19rem;
  font-weight: 500;
  font-size: 14rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .schedule-note {
    font-size: 16rem;
  }
}

/*!
page > guideline
------------------------------
*/
.guideline {
  padding-bottom: 150rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .guideline {
    padding-bottom: 124rem;
  }
}

.guideline-wrapper {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .guideline-wrapper {
    padding-top: 39rem;
  }
}

.guideline-text {
  font-size: 20rem;
}
@media screen and (min-width: 768px) {
  .guideline-text {
    font-size: 23rem;
  }
}

.guideline-br {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .guideline-br {
    text-indent: 0;
    padding-left: 0;
    display: inline;
  }
}

.guideline-link {
  cursor: pointer;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8rem;
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (any-hover: hover) {
  .guideline-link:hover {
    text-decoration-color: transparent;
  }
  .guideline-link:hover::after {
    background-color: var(--color-primary);
  }
}
.guideline-link:after {
  content: "";
  width: 27rem;
  height: 22rem;
  -webkit-mask-image: url("../img/top/guideline-arrow.svg");
          mask-image: url("../img/top/guideline-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-accent);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .guideline-link:after {
    width: 27rem;
  }
}

.guideline-note {
  margin-top: 10rem;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14rem;
  max-width: 250rem;
}
@media screen and (min-width: 768px) {
  .guideline-note {
    font-size: 16rem;
    max-width: 100%;
  }
}

.guideline-note-link {
  cursor: pointer;
  color: var(--color-accent);
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (any-hover: hover) {
  .guideline-note-link:hover {
    text-decoration-color: transparent;
  }
}

.guideline-pic {
  position: absolute;
  top: 180rem;
  right: 5%;
  width: 60rem;
  aspect-ratio: 216/709;
}
@media screen and (min-width: 768px) {
  .guideline-pic {
    width: 144rem;
    top: -88rem;
    right: 92rem;
  }
}

/*!
page > faq
------------------------------
*/
.faq {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-bottom: 147rem;
  }
}

.faq-wrapper {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .faq-wrapper {
    padding-top: 62rem;
  }
}

.faq-accordion-details {
  border-bottom: 3rem solid var(--color-border);
}

.faq-accordion-details.is-open {
  border-bottom: none;
}

.faq-accordion-summary {
  cursor: pointer;
  display: block;
  padding: 32rem 22rem 16rem 0;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-accordion-summary {
    padding: 33rem 0 9rem;
    font-size: 23rem;
    line-height: 1.9;
  }
}

.faq-accordion-summary::-webkit-details-marker {
  display: none;
}

@media screen and (min-width: 768px) {
  .faq-accordion-label-q {
    align-items: center;
  }
}

.faq-accordion-label-q,
.faq-accordion-label-a {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 9rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q,
  .faq-accordion-label-a {
    grid-template-columns: 62rem 1fr;
    gap: 9rem;
  }
}
.faq-accordion-label-q::before,
.faq-accordion-label-a::before {
  display: grid;
  place-items: center;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  left: -20rem;
  font-family: var(--font-family-en);
  font-size: 18rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q::before,
  .faq-accordion-label-a::before {
    width: 55rem;
    height: 55rem;
    font-size: 35rem;
  }
}
.faq-accordion-label-q br,
.faq-accordion-label-a br {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-q br,
  .faq-accordion-label-a br {
    display: block;
  }
}

.faq-accordion-label-q::before {
  content: "Q";
  background-color: var(--color-accent);
  color: var(--color-white);
}

.faq-accordion-label-a::before {
  content: "A";
  color: var(--color-font-primary);
  border: 4rem solid var(--color-primary);
}
@media screen and (min-width: 768px) {
  .faq-accordion-label-a::before {
    border: 6rem solid var(--color-primary);
  }
}

.faq-accordion-icon {
  position: absolute;
  right: 5rem;
  top: 48rem;
  transform: translateY(-50%);
  width: 22rem;
  height: 22rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-icon {
    top: 60%;
    right: 15rem;
    width: 25rem;
    height: 25rem;
  }
}
.faq-accordion-icon span {
  content: "";
  display: block;
  background-color: var(--color-accent);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion-icon span:nth-child(1) {
  width: 60%;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-icon span:nth-child(1) {
    width: 100%;
    height: 4rem;
  }
}
.faq-accordion-icon span:nth-child(2) {
  width: 3rem;
  height: 60%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-accordion-icon span:nth-child(2) {
    width: 4rem;
    height: 100%;
  }
}

.faq-accordion-details.is-open .faq-accordion-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion-contents {
  overflow: hidden;
}

.faq-accordion-contents-inner {
  display: block;
  padding: 28rem 0;
  font-weight: bold;
  border-top: 3rem solid var(--color-border);
  font-size: 16rem;
}
@media screen and (min-width: 768px) {
  .faq-accordion-contents-inner {
    padding: 22rem 0 15rem;
    font-size: 20rem;
    line-height: 1.9;
  }
}

/*!
page > access
------------------------------
*/
.access {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .access {
    padding-bottom: 132rem;
  }
}

.access-wrapper {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .access-wrapper {
    padding-top: 88rem;
  }
}

.access-map {
  padding: 10rem;
  border: 3rem solid var(--color-border);
  border-radius: 10rem;
}
@media screen and (min-width: 768px) {
  .access-map {
    margin-inline: auto;
    width: 750rem;
    border-radius: 20rem;
  }
}
.access-map iframe {
  aspect-ratio: 280/180;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 10rem;
}
@media screen and (min-width: 768px) {
  .access-map iframe {
    aspect-ratio: 730/460;
  }
}

.access-footer {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12rem;
}
@media screen and (min-width: 768px) {
  .access-footer {
    margin-top: 16rem;
    flex-direction: row;
    align-items: baseline;
    gap: 19rem;
  }
}

.access-address {
  margin-top: 10rem;
  text-align: center;
  font-size: 16rem;
}
@media screen and (min-width: 768px) {
  .access-address {
    font-size: 22rem;
  }
}

.access-button a {
  padding: 6rem 23rem;
  display: inline-block;
  border-radius: 100vh;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-family-en);
  font-weight: 400;
  font-size: 16rem;
  transition: background-color 0.3s;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .access-button a {
    padding: 4rem 23rem;
    position: relative;
  }
}
@media (any-hover: hover) {
  .access-button a:hover {
    background-color: var(--color-primary);
  }
}

/*!
page > partner
------------------------------
*/
.partner {
  padding-bottom: 100rem;
}
@media screen and (min-width: 768px) {
  .partner {
    padding-bottom: 120rem;
  }
}

.partner-wrapper {
  padding-top: 48rem;
}
@media screen and (min-width: 768px) {
  .partner-wrapper {
    padding-top: 62rem;
  }
}

.partner-item {
  align-items: baseline;
}
.partner-item:not(:first-child) {
  margin-top: 15rem;
}

.partner-item-note {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .partner-item-note {
    max-width: 750rem;
    font-size: 16rem;
  }
}

/*!
page > cta
------------------------------
*/
.cta {
  background-color: var(--color-primary);
  padding: 100rem 0;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 100rem 0 78rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}

.cta-border {
  width: 342rem;
  aspect-ratio: 666/130;
}
@media screen and (min-width: 768px) {
  .cta-border {
    width: 666rem;
    grid-column: 1/8;
    grid-row: 1/2;
  }
}

.cta-logo {
  margin-top: 48rem;
  width: 280rem;
  aspect-ratio: 400/345;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-logo {
    margin-left: 36rem;
    margin-top: 0;
    width: 400rem;
    grid-column: 8/12;
    grid-row: 1/3;
  }
}

.cta-button-group {
  margin-top: 16rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cta-button-group {
    margin-top: 58rem;
    grid-column: 2/6;
    grid-row: 2/3;
    text-align: left;
    display: inline-block;
    margin-left: -15rem;
  }
}

.cta-button-group-text {
  margin-top: 16rem;
  color: var(--color-white);
  font-size: 18rem;
}
@media screen and (min-width: 768px) {
  .cta-button-group-text {
    font-size: 20rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .cta-button-group-text:nth-of-type(2) {
    margin-top: 20rem;
  }
}

.cta-button {
  margin-top: 13rem;
  width: 300rem;
  white-space: nowrap;
}
.cta-button a {
  padding: 12rem 31rem 12rem 36rem;
  background-color: var(--color-white);
  font-size: 28rem;
  line-height: 1.5;
}
.cta-button a::after {
  width: 47rem;
  aspect-ratio: 47/36;
  background-color: var(--color-accent);
}
@media (any-hover: hover) {
  .cta-button a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
  }
  .cta-button a:hover::after {
    background-color: var(--color-primary);
  }
}
@media screen and (min-width: 768px) {
  .cta-button {
    width: 380rem;
  }
  .cta-button a {
    padding: 16rem 31rem 21rem 36rem;
    font-size: 33rem;
  }
}

.cta-notes {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-notes {
    width: 100%;
    margin-top: 40rem;
    margin-left: -15rem;
    grid-column: 2/10;
    grid-row: 4/5;
  }
}

.cta-note {
  margin-top: 48rem;
  color: var(--color-white);
  font-size: 16rem;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .cta-note {
    font-size: 14rem;
    max-width: 670rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .cta-note span {
    display: block;
  }
}

/*!
page > contact
------------------------------
*/
.contact {
  padding: 48rem 0 100rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 69rem 0 97rem;
  }
}

.contact-inner {
  padding-left: 10rem;
}
@media screen and (min-width: 768px) {
  .contact-inner {
    padding-left: 0;
    display: flex;
    flex-direction: row-reverse;
  }
}

.contact-email {
  margin-top: 32rem;
}
@media screen and (min-width: 768px) {
  .contact-email {
    margin-top: -33rem;
  }
}
.contact-email a {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 36rem;
  line-height: 1.1;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .contact-email a {
    font-size: 44rem;
  }
}
@media (any-hover: hover) {
  .contact-email a:hover {
    color: var(--color-accent);
  }
}

.contact-company {
  font-size: 16rem;
  font-weight: 500;
  margin-top: 12rem;
}
@media screen and (min-width: 768px) {
  .contact-company {
    font-size: 18rem;
    margin-top: 4rem;
  }
}

.contact-arrow {
  width: 106rem;
  aspect-ratio: 106/85;
  transform: rotate(270deg);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-arrow {
    margin-top: -120rem;
    margin-left: 270rem;
    width: 250rem;
    height: 193rem;
    transform: rotate(0);
  }
}/*# sourceMappingURL=style.css.map */