@charset "UTF-8";
:root {
  --color-foreground: #000;
  --color-background: #EFEEEA;
  --theme-foreground: var(--color-foreground);
  --theme-background: var(--color-background);
  --color-white: #fff;
  --color-gray1: #424242;
  --color-gray2: #EFEEEA;
  --line-height: 1.4;
  --pc-width: 1366;
  --sp-width: 375;
  --body-space: 16px;
  --body-vw: calc(100vw - var(--scrollbar-width));
  --vw: calc(var(--body-vw) / 100);
  --transition: cubic-bezier(0.83, 0, 0.17, 1);
  --space1: 8px;
  --space2: calc(var(--space1)*2);
  --space3: calc(var(--space1)*3);
  --space4: calc(var(--space1)*4);
  --space5: calc(var(--space1)*5);
  --space6: calc(var(--space1)*6);
  --space7: calc(var(--space1)*7);
  --space8: calc(var(--space1)*8);
  --space13: calc(var(--space1)*13);
  --space21: calc(var(--space1)*21);
}

body, dd, dl, dt, figure, h1, h2, h3, h4, h5, h6, html, ol, p, ul {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: 400;
}

ul, li, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

th, td {
  vertical-align: top;
  text-align: left;
  padding: 0;
  margin: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

address {
  font-style: normal;
}

button {
  appearance: none;
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-wrap: break-word;
  word-break: break-word;
  line-break: strict;
  line-height: var(--line-height);
  font-family: "neue-haas-grotesk-text", source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--theme-foreground);
  background-color: var(--theme-background);
  transition: color 0.8s var(--transition), background-color 0.8s var(--transition), opacity 0.4s var(--transition);
  padding-top: 50px;
  opacity: 0;
}
body.page-home {
  padding-top: 0;
}
body.theme-dark {
  --theme-background: #272727;
  --theme-foreground: #EFEEEA;
  --color-foreground: #EFEEEA;
}
body.page-ready, .no-js body {
  opacity: 1;
}
@media screen and (max-width: 60em) {
  body.menu--open {
    overflow: hidden;
  }
}

a {
  color: var(--color-foreground);
  text-decoration: none;
}

nav a {
  text-decoration: none;
}

figure {
  font-size: 0;
}
figure figcaption {
  font-size: 14px;
  margin-top: 10px;
}

img {
  width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: 100%;
}

iframe {
  width: 100%;
  border: none;
}

em {
  font-style: normal;
}

code {
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.1);
}

i {
  font-style: normal;
}

button {
  background-color: transparent;
  color: currentColor;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  flex-grow: 1;
  height: 1px;
  transition: background-color 0.2s ease;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-foreground);
}

button.swiper-button-next {
  right: 0;
}

button.swiper-button-prev {
  left: 0;
}

button.swiper-button-next,
button.swiper-button-prev {
  position: absolute;
  top: auto;
  bottom: 0;
  width: auto;
  height: auto;
  padding: 20px;
  color: var(--color-foreground);
  opacity: 0.6;
  font-size: 11px;
}
button.swiper-button-next::after,
button.swiper-button-prev::after {
  display: none;
}
button.swiper-button-next.swiper-button-disabled,
button.swiper-button-prev.swiper-button-disabled {
  display: none;
}

.c-button a, .c-button button, .c-button input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 48px;
  font-size: 14px;
  line-height: 48px;
  padding: 10px 30px;
  box-sizing: border-box;
  border: 1px solid var(--color-background);
  background-color: var(--color-gray1);
  color: var(--color-background);
  transition: background-color 0.2s var(--transition), color 0.2s var(--transition), border 0.2s var(--transition);
  cursor: pointer;
}
.c-button.-l a, .c-button.-l button, .c-button.-l input {
  width: 100%;
  height: 64px;
}
.c-button button:disabled,
.c-button button:disabled:hover {
  background-color: #CBCBC7;
  border-color: #CBCBC7;
  color: white;
  cursor: auto;
}
@media screen and (min-width: 60.001em) {
  .c-button.-m a, .c-button.-m button, .c-button.-m input {
    width: 343px;
    height: 75px;
  }
}
@media screen and (max-width: 60em) {
  .c-button.-m a, .c-button.-m button, .c-button.-m input {
    width: 100%;
    height: 75px;
  }
}
.c-button:hover a, .c-button:hover button, .c-button:hover input {
  border: 1px solid var(--color-foreground);
  color: var(--color-foreground);
  background-color: var(--color-gray2);
  transition: 0.2s;
}

a.button-icon-blank, button.button-icon-blank {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
a.button-icon-blank svg, button.button-icon-blank svg {
  width: 6px;
  height: 6px;
  fill: currentColor;
}

.button-underline span {
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.8;
}
.button-underline:hover span {
  text-decoration: none;
}

.button-hover-mono {
  transition: filter 0.2s;
}
.button-hover-mono:hover {
  filter: grayscale(100%);
}

.button-icon-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.button-icon-arrow svg {
  width: 0.75em;
  height: 0.75em;
}

.line-height\:10 {
  --line-height: 1;
  line-height: 1;
}

.line-height\:12 {
  --line-height: 1.2;
  line-height: 1.2;
}

.line-height\:14 {
  --line-height: 1.4;
  line-height: 1.4;
}

.line-height\:15 {
  --line-height: 1.5;
  line-height: 1.5;
}

.line-height\:16 {
  --line-height: 1.6;
  line-height: 1.6;
}

.line-height\:18 {
  --line-height: 1.8;
  line-height: 1.8;
}

.line-height\:20 {
  --line-height: 2;
  line-height: 2;
}

.line-height\:22 {
  --line-height: 2.2;
  line-height: 2.2;
}

.line-height\:25 {
  --line-height: 2.5;
  line-height: 2.5;
}

.c-input-number, select {
  border: 1px solid var(--color-foreground);
  width: 82px;
  height: 48px;
  padding: 0 1em;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  border-radius: 0;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.4 6.1"><path d="m4.7,6.1L0,1.4,1.4,0l3.3,3.3,3.3-3.3,1.4,1.4-4.7,4.7Z" fill="%23000"/></svg>');
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  background-size: 9px 6px;
}

.c-page-header {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 60.001em) {
  .c-page-header {
    padding-top: 150px;
    padding-bottom: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .c-page-header {
    padding-top: var(--space13);
    padding-bottom: var(--space5);
  }
}

.c-page-title {
  padding-right: 18px;
  line-height: 1.2;
  position: relative;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}
.c-page-title sup {
  display: inline-block;
  transform: translate(0, -0.5em);
}
@media screen and (min-width: 60.001em) {
  .c-page-title {
    font-size: 76px;
  }
  .c-page-title sup {
    font-size: 30px;
  }
}
@media screen and (max-width: 60em) {
  .c-page-title {
    font-size: 44px;
  }
  .c-page-title sup {
    font-size: 16px;
  }
}

.c-page-description {
  line-height: 1.6;
}
@media screen and (min-width: 60.001em) {
  .c-page-description {
    margin-top: var(--space5);
    padding-left: var(--space8);
    font-size: 21px;
  }
}
@media screen and (max-width: 60em) {
  .c-page-description {
    margin-top: var(--space3);
    display: flex;
    justify-content: flex-end;
    font-size: 14px;
  }
}

.c-section-title {
  line-height: 1;
  color: var(--theme-foreground);
}
.c-section-title + * {
  margin-top: var(--space2);
}
@media screen and (min-width: 60.001em) {
  .c-section-title {
    font-size: 68px;
  }
}
@media screen and (max-width: 60em) {
  .c-section-title {
    font-size: 44px;
  }
}

.c-contents-nav {
  line-height: 1;
  display: flex;
  gap: var(--space2);
  z-index: 10;
  position: relative;
}

.c-contents-nav-container {
  position: relative;
  background-color: var(--color-background);
  width: fit-content;
  min-width: 8em;
}

.c-contents-nav-title {
  padding: 0 10px;
  width: 100%;
  line-height: 27px;
  border: 1px solid var(--color-foreground);
  border-radius: 27px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space1);
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.c-contents-nav-title svg {
  width: 12px;
  height: 7px;
}
.c-contents-nav-title span, .c-contents-nav-title svg {
  transition: opacity 0.2s;
}
@media (any-hover: hover) {
  .c-contents-nav-title:hover span, .c-contents-nav-title:hover svg {
    opacity: 0.5;
  }
}
.--open .c-contents-nav-title {
  border-radius: 0;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom: none;
}
.--open .c-contents-nav-title svg {
  transform: rotate(180deg);
}
@media screen and (max-width: 60em) {
  .c-contents-nav-title {
    font-size: 13px;
  }
}

.c-contents-nav-list {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-foreground);
  border-bottom-left-radius: 13px;
  border-bottom-right-radius: 13px;
  background-color: var(--color-background);
  display: none;
}
.--open .c-contents-nav-list {
  display: block;
}
.c-contents-nav-list li + li {
  border-top: 1px solid var(--color-foreground);
}
.c-contents-nav-list li a {
  display: block;
  padding-inline: 10px;
  line-height: 50px;
  white-space: nowrap;
}
@media screen and (max-width: 60em) {
  .c-contents-nav-list li a {
    font-size: 14px;
  }
}

.c-link-instagram {
  border-top: 1px solid var(--color-foreground);
  border-bottom: 1px solid var(--color-foreground);
}
.c-link-instagram a {
  position: relative;
}
@media screen and (max-width: 60em) {
  .c-link-instagram {
    padding-inline: var(--space2);
  }
}

.c-modal {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.48);
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 5000;
  display: none;
  opacity: 0;
  transition: opacity 0.1s var(--transition);
}
.modal--open .c-modal {
  opacity: 1;
}
@media screen and (min-width: 60.001em) {
  .c-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 60em) {
  .c-modal {
    padding: var(--space8) var(--space1);
    box-sizing: border-box;
    overflow: scroll;
  }
  .c-modal.show {
    display: block;
  }
}

.c-modal-box {
  max-width: 900px;
  height: auto;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 60.001em) {
  .c-modal-box {
    display: flex;
    gap: var(--space5);
    padding: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .c-modal-box {
    padding: var(--space3);
  }
}

@media screen and (min-width: 60.001em) {
  .c-modal-box-image {
    width: 41.18404118%;
  }
}
.c-modal-box-contents {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 60.001em) {
  .c-modal-box-contents {
    width: 53.41055341%;
    gap: var(--space5);
    justify-content: space-between;
  }
}
@media screen and (max-width: 60em) {
  .c-modal-box-contents {
    margin-top: var(--space3);
    gap: var(--space3);
  }
}

.c-modal-close {
  position: absolute;
  cursor: pointer;
}
.c-modal-close::before, .c-modal-close::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 0;
}
.c-modal-close::before {
  transform: rotate(45deg);
}
.c-modal-close::after {
  transform: rotate(-45deg);
}
@media screen and (min-width: 60.001em) {
  .c-modal-close {
    width: 90px;
    height: 90px;
    top: -90px;
    right: -14px;
  }
}
@media screen and (max-width: 60em) {
  .c-modal-close {
    width: 45px;
    height: 45px;
    top: -45px;
    right: -6px;
  }
}

.c-caption {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.59);
}
.c-caption ol {
  counter-reset: num;
}
.c-caption ol li {
  position: relative;
  padding-left: 2em;
  counter-increment: num;
}
.c-caption ol li::before {
  content: "*" counter(num);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.c-caption ul li {
  position: relative;
  padding-left: 1em;
}
.c-caption ul li::before {
  content: "*";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.6em;
}

.c-contents-snav ul {
  display: flex;
  gap: var(--space3);
}
.c-contents-snav ul li a {
  display: inline-block;
  border-bottom: 1px solid #707070;
}
.c-contents-snav ul li a:hover {
  border-bottom: none;
}
@media screen and (min-width: 60.001em) {
  .c-contents-snav ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 60em) {
  .c-contents-snav ul li a {
    font-size: 13px;
  }
}

.c-link-instagram {
  width: 100%;
  box-sizing: border-box;
  font-size: min(16px, 4vw);
}

.c-modal-addtocart {
  position: fixed;
  width: 100%;
  max-width: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--color-gray1);
  color: #fff;
  z-index: 5001;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s var(--transition), visibility 0.2s var(--transition);
}
.modal--open .c-modal-addtocart.show {
  visibility: visible;
  opacity: 1;
}
.c-modal-addtocart .c-button {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 60.001em) {
  .c-modal-addtocart {
    gap: var(--space3);
    padding: var(--space5) var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .c-modal-addtocart {
    gap: var(--space2);
    padding: var(--space5);
  }
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 50px;
  border-bottom: 1px solid var(--color-foreground);
  background-color: var(--color-background);
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  box-sizing: border-box;
  transition: transform 0.5s var(--transition);
}
.page-home .site-header {
  transform: translateY(-100%);
}
.page-home.is-scrolled .site-header {
  transform: translateY(0);
}
@media screen and (max-width: 60em) {
  .site-header {
    justify-content: flex-end;
  }
  .site-header.wrap {
    padding-right: 0;
  }
}

@media screen and (max-width: 60em) {
  .site-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    z-index: 2000;
    overflow: scroll;
    display: none;
    visibility: hidden;
    transform: translateX(-100%);
    transition: visibility 0.2s var(--transition), transform 0.2s var(--transition);
  }
  .site-header-nav > * {
    position: relative;
    z-index: 1;
  }
  .site-header-nav.show {
    display: block;
    visibility: visible;
  }
  .menu--open .site-header-nav {
    transform: translateX(0);
    transition: visibility 0.6s var(--transition), transform 0.6s var(--transition);
  }
}

.site-header-nav-list li {
  color: #000;
}
.site-header-nav-list li a, .site-header-nav-list li span {
  color: currentColor;
}
.site-header-nav-list li a {
  display: block;
}
@media (any-hover: hover) {
  .site-header-nav-list li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }
}
@media screen and (min-width: 60.001em) {
  .site-header-nav-list {
    display: flex;
    gap: 30px;
  }
  .site-header-nav-list li a {
    line-height: 50px;
  }
  .site-header-nav-list li.instagram,
  .site-header-nav-list li > ul {
    display: none;
  }
}
@media screen and (max-width: 60em) {
  .site-header-nav-list {
    position: relative;
    z-index: 1;
    margin-right: 48px;
    min-height: 100vh;
    background-color: var(--color-background);
  }
  .site-header-nav-list > li a {
    font-size: 28px;
    padding: 20px;
    line-height: 1;
  }
  .site-header-nav-list > li.instagram a {
    font-size: 20px;
  }
  .site-header-nav-list > li + li {
    border-top: 1px solid #000;
  }
  .site-header-nav-list > li > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-block: 20px;
  }
  .site-header-nav-list > li > ul li {
    padding-inline: 20px;
    font-size: 16px;
  }
  .site-header-nav-list > li > ul li a {
    font-size: 14px;
    padding-block: 10px;
  }
  .site-header-nav-list > li > ul li span {
    display: block;
    padding-block: 10px;
  }
}

.site-header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 15px;
  transform: translate(-50%, -50%);
}
.site-header-logo a {
  display: block;
  font-size: 0;
}
.site-header-logo a svg, .site-header-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header-cart {
  position: relative;
}
.site-header-cart button {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.site-header-cart button span {
  display: block;
  width: 17px;
  height: 17px;
  background-color: var(--color-gray1);
  border-radius: 50%;
  position: absolute;
  right: -6px;
  top: 4px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 17px;
  text-align: center;
}
.site-header-cart svg {
  width: 27px;
  height: 23px;
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
}

.site-header-cart-details {
  width: 360px;
  padding: 20px;
  box-sizing: border-box;
  color: #000;
  background-color: var(--color-white);
  position: absolute;
  right: -32px;
  top: 80px;
  display: none;
}
.site-header-cart-details::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 24px 14px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 28px;
  top: 0;
  transform: translateY(-100%);
}
.--open .site-header-cart-details {
  display: block;
}
@media screen and (max-width: 60em) {
  .site-header-cart-details {
    width: 100vw;
    right: -48px;
    top: 50px;
  }
  .site-header-cart-details::before {
    right: 44px;
    top: 8px;
  }
}

.site-header-cart-details-item {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.site-header-cart-details-item + .site-header-cart-details-item {
  margin-top: 15px;
}

.site-header-cart-details-btn {
  margin-top: 20px;
}

@media screen and (min-width: 60.001em) {
  .site-header-menu {
    display: none;
  }
}
@media screen and (max-width: 60em) {
  .site-header-menu {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
    transition: background-color 0s;
  }
  .site-header-menu::before, .site-header-menu::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background-color: #000;
    z-index: 10;
  }
  .menu--open .site-header-menu {
    z-index: 2001;
    height: 100vh;
    justify-content: flex-start;
    padding-top: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.4s var(--transition);
  }
}

.wrap {
  padding-right: 48px;
  padding-left: 48px;
}
@media screen and (max-width: 60em) {
  .wrap {
    padding-right: var(--body-space);
    padding-left: var(--body-space);
  }
}

.site-footer {
  padding-block: var(--space5);
}

.site-footer-box {
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 60.001em) {
  .site-footer-box {
    height: 564px;
    padding: var(--space5);
    margin-inline: var(--space3);
  }
}
@media screen and (max-width: 60em) {
  .site-footer-box {
    height: 592px;
    padding: var(--space3);
    margin-inline: 16px;
  }
}

.site-footer-nav {
  position: relative;
  z-index: 10;
}
@media (any-hover: hover) {
  .site-footer-nav a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
}

.site-footer-nav-list li a {
  font-size: 36px;
}
.site-footer-nav-list + .site-footer-nav-slist {
  margin-top: 16px;
}
@media screen and (max-width: 60em) {
  .site-footer-nav-list li a {
    font-size: 31px;
  }
}

.site-footer-nav-slist li a {
  padding-block: var(--space1);
  font-size: 13px;
}
.site-footer-nav-slist + .site-footer-nav-slist {
  margin-top: 64px;
}

.site-footer-logo {
  position: absolute;
  right: var(--space5);
  bottom: var(--space5);
  z-index: 10;
}
@media screen and (min-width: 60.001em) {
  .site-footer-logo {
    width: 31.29770992%;
  }
}
@media screen and (max-width: 60em) {
  .site-footer-logo {
    left: var(--space3);
    right: var(--space3);
    bottom: var(--space3);
  }
}

.site-footer-copyright {
  font-size: 10px;
  margin-top: var(--space3);
}
@media screen and (min-width: 60.001em) {
  .site-footer-copyright {
    text-align: right;
  }
}
@media screen and (max-width: 60em) {
  .site-footer-copyright {
    text-align: center;
  }
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.site-footer-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-cursor {
  width: 160px;
  height: 160px;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  font-size: 18px;
  pointer-events: none;
  z-index: 1000;
  will-change: transform;
  background-color: rgba(255, 255, 255, 0.01);
  opacity: 0;
  transition: opacity 0.2s var(--transition);
}
.hover-cursor.--show {
  opacity: 1;
}
@media screen and (max-width: 60em) {
  .hover-cursor {
    display: none;
  }
}

.hover-cursor-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* backdrop-filter 非対応ブラウザ用 */
@supports not (backdrop-filter: blur(10px)) {
  .hover-cursor-inner {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.p-home-mv {
  min-height: 500px;
  height: 100vh;
  height: 100svh;
  border-bottom: 1px solid var(--color-foreground);
  box-sizing: border-box;
}

.p-home-mv-inner {
  height: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 60.001em) {
  .p-home-mv-inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 27.23279649% 72.76720351%;
    grid-template-columns: 27.23279649% 72.76720351%;
    -ms-grid-rows: 69.62025316% 30.37974684%;
    grid-template-rows: 69.62025316% 30.37974684%;
    grid-template-areas: "nav mv" "text logo";
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-inner {
    padding: var(--space3) var(--space2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-height: 629px) and (max-width: 60em) {
  .p-home-mv-inner {
    padding-block: var(--space2);
  }
}

@media screen and (max-width: 60em) {
  .p-home-mv-text,
  .p-home-mv-logo {
    width: 48.53333333%;
    font-size: 0;
  }
  .p-home-mv-text img,
  .p-home-mv-logo img {
    object-fit: contain;
  }
}
@media (max-height: 629px) and (max-width: 60em) {
  .p-home-mv-text,
  .p-home-mv-logo {
    width: 38.824%;
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-mv-text {
    grid-area: text;
    padding-left: var(--space5);
    padding-bottom: var(--space5);
    display: flex;
    align-items: flex-end;
    width: 287px;
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-text img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-mv-logo {
    grid-area: logo;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: var(--space5);
    padding-top: 0;
  }
  .p-home-mv-logo img {
    width: 493px;
    height: 100%;
    object-fit: contain;
    object-position: 100% 100%;
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-logo {
    margin-top: var(--space1);
    margin-bottom: var(--space3);
  }
}
@media (max-height: 629px) and (max-width: 60em) {
  .p-home-mv-logo {
    margin-bottom: var(--space2);
  }
}

.p-home-mv-image {
  font-size: 0;
}
@media screen and (min-width: 60.001em) {
  .p-home-mv-image {
    grid-area: mv;
    padding: var(--space3);
    position: relative;
    z-index: 1;
  }
  .p-home-mv-image * {
    height: 100%;
  }
  .p-home-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 100% 0;
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-image {
    margin-top: auto;
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-mv-nav {
    grid-area: nav;
    padding: var(--space3) 0 var(--space5) var(--space5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

@media screen and (min-width: 60.001em){
  .p-home-mv-text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .p-home-mv-logo {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .p-home-mv-image {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-home-mv-nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-nav {
    margin-top: var(--space2);
    display: flex;
    justify-content: flex-end;
  }
}

.p-home-mv-nav-list-item {
  line-height: 1;
}
.p-home-mv-nav-list-item > a {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.p-home-mv-nav-list-item > a::before {
  content: "";
  display: block;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(0, calc(-50% - 1px));
  border-radius: 50%;
  transition: opacity 1s;
}
.p-home-mv-nav-list-item > a span {
  display: inline-block;
  border-bottom: 2px solid var(--color-background);
  white-space: nowrap;
}
@media screen and (min-width: 60.001em) {
  .p-home-mv-nav-list-item > a {
    font-size: 36px;
    padding-block: 10px;
    padding-left: 21px;
  }
  .p-home-mv-nav-list-item > a::before {
    width: 11px;
    height: 11px;
  }
  .p-home-mv-nav-list-item > a:hover span {
    border-bottom: 2px solid var(--color-foreground);
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-nav-list-item > a {
    font-size: 21px;
    padding-block: 5px;
    padding-left: 17px;
  }
  .p-home-mv-nav-list-item > a::before {
    width: 7px;
    height: 7px;
  }
}
@media (max-height: 629px) and (max-width: 60em) {
  .p-home-mv-nav-list-item > a {
    font-size: 17px;
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-mv-nav-list-sub li a {
    display: inline-block;
    font-size: 12px;
    line-height: 1.16;
    padding-block: var(--space1);
    padding-left: 21px;
    text-transform: uppercase;
  }
  .p-home-mv-nav-list-sub li a span {
    display: block;
  }
  .p-home-mv-nav-list-sub li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }
}
@media screen and (max-width: 60em) {
  .p-home-mv-nav-list-sub {
    display: none;
  }
}

.p-home-products {
  border-bottom: 1px solid var(--color-foreground);
}
@media screen and (min-width: 60.001em) {
  .p-home-products {
    padding-top: var(--space21);
    padding-bottom: var(--space2);
  }
}
@media screen and (max-width: 60em) {
  .p-home-products {
    padding: var(--space13) var(--space2) var(--space2);
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-products-title {
    padding-inline: var(--space6);
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-products-list {
    margin-top: var(--space13);
  }
}
@media screen and (max-width: 60em) {
  .p-home-products-list {
    margin-top: var(--space5);
  }
}

.p-home-products-list-item a {
  display: block;
}
@media screen and (min-width: 60.001em) {
  .p-home-products-list-item + .p-home-products-list-item {
    margin-top: var(--space21);
  }
}
@media screen and (max-width: 60em) {
  .p-home-products-list-item + .p-home-products-list-item {
    margin-top: var(--space13);
  }
}

.p-home-products-link {
  text-align: right;
}
@media screen and (min-width: 60.001em) {
  .p-home-products-link {
    margin-top: var(--space21);
    padding-inline: var(--space6);
    font-size: 40px;
  }
  .p-home-products-link span {
    line-height: 1;
    border-bottom: 2px solid var(--color-background);
  }
  .p-home-products-link a:hover span {
    border-bottom: 2px solid var(--color-foreground);
  }
}
@media screen and (max-width: 60em) {
  .p-home-products-link {
    margin-top: var(--space13);
    font-size: 24px;
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-cleanbeauty {
    padding-top: 240px;
  }
}
@media screen and (max-width: 60em) {
  .p-home-cleanbeauty {
    padding-top: var(--space21);
  }
}

@media screen and (min-width: 60.001em) {
  .p-home-cleanbeauty-list {
    margin-top: var(--space13);
  }
}
@media screen and (max-width: 60em) {
  .p-home-cleanbeauty-list {
    margin-top: var(--space8);
  }
}

.p-home-cleanbeauty-list-item {
  border-top: 1px solid var(--color-foreground);
}
.p-home-cleanbeauty-list-item a {
  display: block;
}
@media screen and (max-width: 60em) {
  .p-home-cleanbeauty-list-item {
    padding: var(--space2);
  }
}

@media screen and (min-width: 60.001em) {
  .products-highlights a {
    display: flex;
    align-items: center;
  }
  .products-highlights a:hover .products-highlights-btn svg {
    opacity: 1;
  }
}

.products-highlights-image {
  font-size: 0;
  overflow: hidden;
}
@media screen and (min-width: 60.001em) {
  .products-highlights-image {
    width: 46.85212299%;
  }
}

@media screen and (min-width: 60.001em) {
  .products-highlights-contents {
    width: 53.14787701%;
    box-sizing: border-box;
    padding-inline: var(--space13);
    position: relative;
  }
}
@media screen and (max-width: 60em) {
  .products-highlights-contents {
    margin-top: var(--space8);
    padding-inline: var(--space2);
  }
}

.products-highlights--reverse a {
  flex-direction: row-reverse;
}

@media screen and (min-width: 60.001em) {
  .products-highlights-title {
    margin-top: var(--space13);
  }
  #AdvancedSerum .products-highlights-title {
    max-width: 439px;
  }
  #FacialSoap .products-highlights-title {
    max-width: 338px;
  }
  #TreatmentToner .products-highlights-title {
    max-width: 476px;
  }
}
@media screen and (max-width: 60em) {
  #AdvancedSerum .products-highlights-title {
    max-width: 287px;
  }
  #FacialSoap .products-highlights-title {
    max-width: 237px;
  }
  #TreatmentToner .products-highlights-title {
    max-width: 326px;
  }
}

@media screen and (min-width: 60.001em) {
  .products-highlights-name {
    margin-top: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .products-highlights-name {
    margin-top: var(--space5);
  }
}

.products-highlights-name-en {
  line-height: 1.18;
  text-transform: uppercase;
}
@media screen and (min-width: 60.001em) {
  .products-highlights-name-en {
    font-size: 21px;
  }
}

.products-highlights-name-ja {
  opacity: 0.58;
  line-height: 1.5;
}
@media screen and (min-width: 60.001em) {
  .products-highlights-name-ja {
    margin-top: var(--space3);
    font-size: 13px;
  }
}
@media screen and (max-width: 60em) {
  .products-highlights-name-ja {
    margin-top: var(--space2);
    font-size: 12px;
  }
}

@media screen and (min-width: 60.001em) {
  .products-highlights-btn {
    margin-top: var(--space13);
  }
  .products-highlights-btn svg {
    transition: opacity 0.3s var(--transition);
  }
}
@media screen and (max-width: 60em) {
  .products-highlights-btn {
    margin-top: var(--space8);
  }
}

@media screen and (min-width: 60.001em) {
  .cleanbeauty-highlights a {
    display: flex;
    padding: var(--space2);
    gap: var(--space7);
  }
  .cleanbeauty-highlights a:hover .cleanbeauty-highlights-image {
    opacity: 1;
  }
  .cleanbeauty-highlights a:hover .cleanbeauty-highlights-link svg {
    opacity: 1;
  }
}

.cleanbeauty-highlights-image {
  font-size: 0;
}
@media screen and (min-width: 60.001em) {
  .cleanbeauty-highlights-image {
    width: 50%;
    opacity: 0;
    transition: opacity 0.3s var(--transition);
  }
}

@media screen and (min-width: 60.001em) {
  .cleanbeauty-highlights-content {
    padding-top: var(--space4);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (min-width: 60.001em) {
  #Philosophy .cleanbeauty-highlights-title {
    max-width: 340px;
  }
  #Science .cleanbeauty-highlights-title {
    max-width: 458px;
  }
  #Sustainability .cleanbeauty-highlights-title {
    max-width: 421px;
  }
}
@media screen and (max-width: 60em) {
  .cleanbeauty-highlights-title {
    margin-top: var(--space2);
  }
  #Philosophy .cleanbeauty-highlights-title {
    max-width: 206px;
  }
  #Science .cleanbeauty-highlights-title {
    max-width: 275px;
  }
  #Sustainability .cleanbeauty-highlights-title {
    max-width: 252px;
  }
}

.cleanbeauty-highlights-link {
  text-align: right;
}
@media screen and (min-width: 60.001em) {
  .cleanbeauty-highlights-link {
    padding-right: var(--space2);
  }
  .cleanbeauty-highlights-link svg {
    opacity: 0;
    transition: opacity 0.3s var(--transition);
  }
}
@media screen and (max-width: 60em) {
  .cleanbeauty-highlights-link {
    margin-top: var(--space8);
    font-size: 14px;
  }
}

.p-product-list {
  border-top: 1px solid var(--color-foreground);
}
.p-product-list > li + li {
  border-top: 1px solid var(--color-foreground);
}
@media screen and (min-width: 60.001em) {
  .p-product-list > li {
    padding-block: 100px;
  }
}
@media screen and (max-width: 60em) {
  .p-product-list > li {
    padding-top: var(--space3);
    padding-bottom: var(--space8);
  }
}

.p-product-list-item img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 60.001em) {
  .p-product-list-item {
    display: flex;
    justify-content: space-between;
    gap: 60px;
  }
}

@media screen and (min-width: 60.001em) {
  .p-product-list-item-image {
    width: calc(50% - 30px);
  }
  .p-product-list-item-image > div {
    position: sticky;
    top: calc(50px + var(--space3));
  }
}

@media screen and (min-width: 60.001em) {
  .p-product-list-item-contents {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 60em) {
  .p-product-list-item-contents {
    margin-top: var(--space5);
  }
}

.product-name-ja {
  margin-top: 4px;
}
.product-name-link {
  margin-top: 10px;
}
@media screen and (min-width: 60.001em) {
  .p-product-name {
    margin-top: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .p-product-name {
    margin-top: var(--space5);
  }
}

.p-product-detail {
  border-top: 1px solid var(--color-foreground);
  border-bottom: 1px solid var(--color-foreground);
}
.p-product-detail span {
  padding-left: 4px;
}
.p-product-detail > div + div {
  padding-top: 24px;
  border-top: 1px solid var(--color-foreground);
}

.p-product-description a:not(.button-underline):hover {
  text-decoration: underline;
}
.p-product-description sup {
  display: inline-block;
  transform: translateY(0.2em);
}
.p-product-description sup::before {
  content: "*";
}

.pc\:font-size\:18 sup {
  font-size: 12px;
}

.p-product-all-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 60.001em) {
  .p-product-all-list {
    border-top: 1px solid var(--color-foreground);
  }
}

.p-product-all-list-item {
  box-sizing: border-box;
}
.p-product-all-list-item a {
  display: block;
}
@media (any-hover: hover) {
  .p-product-all-list-item a:hover .p-product-all-list-item-title {
    text-decoration: underline;
  }
}
@media screen and (min-width: 60.001em) {
  .p-product-all-list-item {
    width: 20%;
  }
  .p-product-all-list-item a {
    padding: 64px 40px;
  }
  .p-product-all-list-item + .p-product-all-list-item {
    border-left: 1px solid var(--color-foreground);
  }
}
@media screen and (max-width: 60em) {
  .p-product-all-list {
    border-top: 1px solid var(--color-foreground);
  }
  .p-product-all-list-item {
    width: 50%;
    border-bottom: 1px solid var(--color-foreground);
  }
  .p-product-all-list-item:nth-child(2n-1) {
    border-right: 1px solid var(--color-foreground);
  }
  .p-product-all-list-item:nth-child(5) {
    border-bottom: none;
  }
  .p-product-all-list-item a {
    padding: 50px 32px;
  }
}

.p-product-all-list-title h2 {
  font-size: 42px;
  position: relative;
  display: inline;
}
.p-product-all-list-title span {
  font-size: 20px;
  position: absolute;
  top: -4px;
  right: -17px;
}

.p-product-all {
  border-top: 1px solid var(--color-foreground);
}

.p-cleanbeauty-mv-image {
  border-top: 1px solid var(--color-foreground);
  border-bottom: 1px solid var(--color-foreground);
  font-size: 0;
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-mv-image {
    height: 137.6vw;
  }
  .p-cleanbeauty-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-philosophy {
    padding-top: var(--space21);
    display: flex;
    justify-content: center;
    gap: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-philosophy {
    padding-inline: var(--space5);
    padding-top: var(--space13);
    padding-bottom: var(--space21);
  }
}

@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-philosophy-title {
    width: 186px;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-philosophy-title {
    width: 145px;
  }
}

.p-cleanbeauty-philosophy-contents {
  line-height: 2.06;
}
.p-cleanbeauty-philosophy-contents > * + * {
  margin-top: 2.06em;
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-philosophy-contents {
    margin-top: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-philosophy-contents {
    margin-top: var(--space8);
    font-size: 14px;
  }
}

@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-thatisyou {
    margin-top: var(--space21);
  }
}

.p-cleanbeauty-thatisyou-inner {
  border: 1px solid var(--color-foreground);
  transition: border 0.4s var(--transition);
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-thatisyou-inner {
    display: flex;
    justify-content: space-between;
    padding: var(--space5);
    gap: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-thatisyou-inner {
    padding: var(--space3);
  }
}

.p-cleanbeauty-thatisyou-header h2 {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.p-cleanbeauty-thatisyou-header p {
  margin-top: var(--space1);
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-thatisyou-header h2 {
    font-size: 24px;
  }
  .p-cleanbeauty-thatisyou-header p {
    font-size: 15px;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-thatisyou-header h2 {
    font-size: 17px;
  }
  .p-cleanbeauty-thatisyou-header p {
    font-size: 12px;
  }
}

.p-cleanbeauty-thatisyou-contents {
  line-height: 2.2857142857;
  font-feature-settings: "palt";
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-thatisyou-contents {
    padding-top: var(--space13);
    padding-right: var(--space8);
    font-size: 14px;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-thatisyou-contents {
    padding-top: var(--space8);
    font-size: min(3.1vw, 14px);
  }
}

@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-upcycle {
    padding-top: 480px;
    display: flex;
    justify-content: center;
    gap: var(--space8);
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-upcycle {
    margin-top: 300px;
  }
  .p-cleanbeauty-upcycle.wrap {
    padding-inline: 0;
  }
}

.p-cleanbeauty-upcycle-title {
  line-height: 1.6153846154;
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-upcycle-title {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    font-size: 26px;
  }
  .p-cleanbeauty-upcycle-title span {
    display: block;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-upcycle-title {
    font-size: 21px;
    text-align: center;
  }
}

.p-cleanbeauty-upcycle-contents {
  font-size: 14px;
  line-height: 1.7142857143;
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-upcycle-contents {
    width: 50%;
    padding-top: 120px;
    padding-right: var(--space21);
    box-sizing: border-box;
  }
  .p-cleanbeauty-upcycle-contents > div {
    max-width: 438px;
  }
  .p-cleanbeauty-upcycle-contents > div > * + * {
    margin-top: 1.7142857143em;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-upcycle-contents {
    margin-top: var(--space8);
    padding-inline: var(--space5);
    text-align: justify;
  }
  .p-cleanbeauty-upcycle-contents > div > p {
    display: inline;
  }
}

.p-cleanbeauty-science {
  padding-top: var(--space8);
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-science {
    margin-top: var(--space13);
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-science {
    margin-top: var(--space8);
  }
}

.p-cleanbeauty-sustainability {
  padding-top: var(--space8);
  color: var(--color-foreground);
}
@media screen and (min-width: 60.001em) {
  .p-cleanbeauty-sustainability {
    margin-top: var(--space13);
    margin-bottom: 480px;
  }
}
@media screen and (max-width: 60em) {
  .p-cleanbeauty-sustainability {
    margin-top: var(--space13);
    margin-bottom: 300px;
  }
}

.clnce-highlights {
  transition: color 0.5s, background-color 0.5s;
  color: var(--theme-background);
  background-color: var(--theme-foreground);
}
.clnce-highlights + .clnce-highlights {
  border-top: 1px solid var(--theme-background);
}
.theme-dark .clnce-highlights {
  color: #000;
}
@media screen and (min-width: 60.001em) {
  .clnce-highlights {
    display: flex;
    position: relative;
  }
  .clnce-highlights--reverse {
    flex-direction: row-reverse;
  }
  .clnce-highlights::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--theme-background);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
  }
}

.clnce-highlights-image {
  font-size: 0;
}
@media screen and (min-width: 60.001em) {
  .clnce-highlights-image {
    width: 50%;
  }
}

@media screen and (min-width: 60.001em) {
  .clnce-highlights-contents {
    width: 50%;
    padding: var(--space8) var(--space5) var(--space5) var(--space5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space5);
  }
}
@media screen and (max-width: 60em) {
  .clnce-highlights-contents {
    padding: var(--space3) var(--space3) var(--space5);
    border-top: 1px solid var(--theme-background);
  }
}

.clnce-highlights-title svg {
  fill: currentColor;
}
.clnce-highlights-title img {
  object-fit: contain;
  object-position: 0 0;
}
@media screen and (min-width: 60.001em) {
  #ScienceSkin .clnce-highlights-title {
    max-width: 383px;
    padding-right: 21.1023622%;
  }
  #ScienceTechnology .clnce-highlights-title {
    max-width: 517px;
  }
  #SustainabilityNature .clnce-highlights-title {
    max-width: 514px;
    padding-right: 0.4724409449%;
  }
  #SustainabilityEnvironment .clnce-highlights-title {
    max-width: 475px;
    padding-right: 6.614173228%;
  }
  #SustainabilitySociety .clnce-highlights-title {
    max-width: 362px;
    padding-right: 24.40944882%;
  }
}
@media screen and (max-width: 60em) {
  #ScienceSkin .clnce-highlights-title {
    max-width: 230px;
  }
  #ScienceTechnology .clnce-highlights-title {
    max-width: 310px;
  }
  #SustainabilityNature .clnce-highlights-title {
    max-width: 310px;
  }
  #SustainabilityEnvironment .clnce-highlights-title {
    max-width: 285px;
  }
  #SustainabilitySociety .clnce-highlights-title {
    max-width: 217px;
  }
}

@media screen and (max-width: 60em) {
  .clnce-highlights-texts {
    margin-top: var(--space8);
  }
}

.clnce-highlights-stitle {
  line-height: 1;
}
@media screen and (min-width: 60.001em) {
  .clnce-highlights-stitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 60em) {
  .clnce-highlights-stitle {
    font-size: 18px;
  }
}

.clnce-highlights-description {
  margin-top: var(--space3);
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: justify;
}
.clnce-highlights-description > * + div {
  margin-top: var(--space2);
}
.clnce-highlights-description sup {
  display: inline-block;
  transform: translateY(0.3em);
}
@media screen and (min-width: 60.001em) {
  .clnce-highlights-description {
    max-width: 300px;
  }
}
.align\:center {
  text-align: center;
}

.align\:center-block > * {
  margin-left: auto;
  margin-right: auto;
}

.align\:right {
  text-align: right;
}

.align\:right-block > * {
  margin-left: auto;
}

.align\:left {
  text-align: left;
}

.align\:left-block > * {
  margin-right: auto;
}

@media screen and (min-width: 60.001em) {
  .pc\:align\:center {
    text-align: center;
  }
  .pc\:align\:right {
    text-align: right;
  }
  .pc\:align\:left {
    text-align: left;
  }
  .pc\:align\:center-block > * {
    margin-left: auto;
    margin-right: auto;
  }
  .pc\:align\:right-block > * {
    margin-left: auto;
  }
  .pc\:align\:left-block > * {
    margin-right: auto;
  }
}
@media screen and (max-width: 60em) {
  .sp\:align\:center {
    text-align: center;
  }
  .sp\:align\:right {
    text-align: right;
  }
  .sp\:align\:left {
    text-align: left;
  }
  .sp\:align\:center-block {
    margin-left: auto;
    margin-right: auto;
  }
  .sp\:align\:right-block {
    margin-left: auto;
  }
  .sp\:align\:left-block {
    margin-right: auto;
  }
}
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.item-baseline {
  align-items: baseline;
}

.item-center {
  align-items: center;
}

.item-start {
  align-items: flex-start;
}

.item-end {
  align-items: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-around {
  justify-content: space-around;
}

.direction-column {
  flex-direction: column;
}

.direction-column-reverse {
  flex-direction: column-reverse;
}

.direction-row {
  flex-direction: row;
}

.direction-row-reverse {
  flex-direction: row-reverse;
}

.flex-grow\:0 {
  flex-grow: 0;
}

.flex-grow\:1 {
  flex-grow: 1;
}

.flex-grow\:2 {
  flex-grow: 2;
}

.flex-grow\:3 {
  flex-grow: 3;
}

.order\:1 {
  order: 1;
}

.order\:2 {
  order: 2;
}

.order\:3 {
  order: 3;
}

.order\:4 {
  order: 4;
}

.order\:5 {
  order: 5;
}

@media screen and (min-width: 60.001em) {
  .pc\:flex {
    display: flex;
  }
  .pc\:flex-wrap {
    flex-wrap: wrap;
  }
  .pc\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .pc\:item-baseline {
    align-items: baseline;
  }
  .pc\:item-center {
    align-items: center;
  }
  .pc\:item-start {
    align-items: flex-start;
  }
  .pc\:item-end {
    align-items: flex-end;
  }
  .pc\:justify-start {
    justify-content: flex-start;
  }
  .pc\:justify-center {
    justify-content: center;
  }
  .pc\:justify-end {
    justify-content: flex-end;
  }
  .pc\:justify-between {
    justify-content: space-between;
  }
  .pc\:justify-around {
    justify-content: space-around;
  }
  .pc\:direction-column {
    flex-direction: column;
  }
  .pc\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .pc\:direction-row {
    flex-direction: row;
  }
  .pc\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .pc\:flex-grow\:0 {
    flex-grow: 0;
  }
  .pc\:flex-grow\:1 {
    flex-grow: 1;
  }
  .pc\:flex-grow\:2 {
    flex-grow: 2;
  }
  .pc\:flex-grow\:3 {
    flex-grow: 3;
  }
  .pc\:order\:1 {
    order: 1;
  }
  .pc\:order\:2 {
    order: 2;
  }
  .pc\:order\:3 {
    order: 3;
  }
  .pc\:order\:4 {
    order: 4;
  }
  .pc\:order\:5 {
    order: 5;
  }
}
@media screen and (max-width: 60em) {
  .sp\:flex {
    display: flex;
  }
  .sp\:flex-wrap {
    flex-wrap: wrap;
  }
  .sp\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .sp\:item-baseline {
    align-items: baseline;
  }
  .sp\:item-center {
    align-items: center;
  }
  .sp\:item-start {
    align-items: flex-start;
  }
  .sp\:item-end {
    align-items: flex-end;
  }
  .sp\:justify-start {
    justify-content: flex-start;
  }
  .sp\:justify-center {
    justify-content: center;
  }
  .sp\:justify-end {
    justify-content: flex-end;
  }
  .sp\:justify-between {
    justify-content: space-between;
  }
  .sp\:justify-around {
    justify-content: space-around;
  }
  .sp\:direction-column {
    flex-direction: column;
  }
  .sp\:direction-column-reverse {
    flex-direction: column-reverse;
  }
  .sp\:direction-row {
    flex-direction: row;
  }
  .sp\:direction-row-reverse {
    flex-direction: row-reverse;
  }
  .sp\:flex-grow\:0 {
    flex-grow: 0;
  }
  .sp\:flex-grow\:1 {
    flex-grow: 1;
  }
  .sp\:flex-grow\:2 {
    flex-grow: 2;
  }
  .sp\:flex-grow\:3 {
    flex-grow: 3;
  }
  .sp\:order\:1 {
    order: 1;
  }
  .sp\:order\:2 {
    order: 2;
  }
  .sp\:order\:3 {
    order: 3;
  }
  .sp\:order\:4 {
    order: 4;
  }
  .sp\:order\:5 {
    order: 5;
  }
}
.font-size\:10 {
  font-size: 10px;
}

.font-size\:11 {
  font-size: 11px;
}

.font-size\:12 {
  font-size: 12px;
}

.font-size\:13 {
  font-size: 13px;
}

.font-size\:14 {
  font-size: 14px;
}

.font-size\:15 {
  font-size: 15px;
}

.font-size\:16 {
  font-size: 16px;
}

.font-size\:17 {
  font-size: 17px;
}

.font-size\:18 {
  font-size: 18px;
}

.font-size\:19 {
  font-size: 19px;
}

.font-size\:20 {
  font-size: 20px;
}

.font-size\:21 {
  font-size: 21px;
}

.font-size\:22 {
  font-size: 22px;
}

.font-size\:23 {
  font-size: 23px;
}

.font-size\:24 {
  font-size: 24px;
}

.font-size\:25 {
  font-size: 25px;
}

.font-size\:26 {
  font-size: 26px;
}

.font-size\:27 {
  font-size: 27px;
}

.font-size\:28 {
  font-size: 28px;
}

.font-size\:29 {
  font-size: 29px;
}

.font-size\:30 {
  font-size: 30px;
}

.font-size\:31 {
  font-size: 31px;
}

.font-size\:32 {
  font-size: 32px;
}

.font-size\:33 {
  font-size: 33px;
}

.font-size\:34 {
  font-size: 34px;
}

.font-size\:35 {
  font-size: 35px;
}

.font-size\:36 {
  font-size: 36px;
}

.font-size\:37 {
  font-size: 37px;
}

.font-size\:38 {
  font-size: 38px;
}

.font-size\:39 {
  font-size: 39px;
}

.font-size\:40 {
  font-size: 40px;
}

.font-size\:41 {
  font-size: 41px;
}

.font-size\:42 {
  font-size: 42px;
}

.font-size\:43 {
  font-size: 43px;
}

.font-size\:44 {
  font-size: 44px;
}

.font-size\:45 {
  font-size: 45px;
}

.font-size\:46 {
  font-size: 46px;
}

.font-size\:47 {
  font-size: 47px;
}

.font-size\:48 {
  font-size: 48px;
}

.font-size\:49 {
  font-size: 49px;
}

.font-size\:50 {
  font-size: 50px;
}

.font-size\:51 {
  font-size: 51px;
}

.font-size\:52 {
  font-size: 52px;
}

.font-size\:53 {
  font-size: 53px;
}

.font-size\:54 {
  font-size: 54px;
}

.font-size\:55 {
  font-size: 55px;
}

.font-size\:56 {
  font-size: 56px;
}

.font-size\:57 {
  font-size: 57px;
}

.font-size\:58 {
  font-size: 58px;
}

.font-size\:59 {
  font-size: 59px;
}

.font-size\:60 {
  font-size: 60px;
}

.font-size\:61 {
  font-size: 61px;
}

.font-size\:62 {
  font-size: 62px;
}

.font-size\:63 {
  font-size: 63px;
}

.font-size\:64 {
  font-size: 64px;
}

.font-size\:65 {
  font-size: 65px;
}

.font-size\:66 {
  font-size: 66px;
}

.font-size\:67 {
  font-size: 67px;
}

.font-size\:68 {
  font-size: 68px;
}

.font-size\:69 {
  font-size: 69px;
}

.font-size\:70 {
  font-size: 70px;
}

@media screen and (min-width: 60.001em) {
  .pc\:font-size\:10 {
    font-size: 10px;
  }
  .pc\:font-size\:11 {
    font-size: 11px;
  }
  .pc\:font-size\:12 {
    font-size: 12px;
  }
  .pc\:font-size\:13 {
    font-size: 13px;
  }
  .pc\:font-size\:14 {
    font-size: 14px;
  }
  .pc\:font-size\:15 {
    font-size: 15px;
  }
  .pc\:font-size\:16 {
    font-size: 16px;
  }
  .pc\:font-size\:17 {
    font-size: 17px;
  }
  .pc\:font-size\:18 {
    font-size: 18px;
  }
  .pc\:font-size\:19 {
    font-size: 19px;
  }
  .pc\:font-size\:20 {
    font-size: 20px;
  }
  .pc\:font-size\:21 {
    font-size: 21px;
  }
  .pc\:font-size\:22 {
    font-size: 22px;
  }
  .pc\:font-size\:23 {
    font-size: 23px;
  }
  .pc\:font-size\:24 {
    font-size: 24px;
  }
  .pc\:font-size\:25 {
    font-size: 25px;
  }
  .pc\:font-size\:26 {
    font-size: 26px;
  }
  .pc\:font-size\:27 {
    font-size: 27px;
  }
  .pc\:font-size\:28 {
    font-size: 28px;
  }
  .pc\:font-size\:29 {
    font-size: 29px;
  }
  .pc\:font-size\:30 {
    font-size: 30px;
  }
  .pc\:font-size\:31 {
    font-size: 31px;
  }
  .pc\:font-size\:32 {
    font-size: 32px;
  }
  .pc\:font-size\:33 {
    font-size: 33px;
  }
  .pc\:font-size\:34 {
    font-size: 34px;
  }
  .pc\:font-size\:35 {
    font-size: 35px;
  }
  .pc\:font-size\:36 {
    font-size: 36px;
  }
  .pc\:font-size\:37 {
    font-size: 37px;
  }
  .pc\:font-size\:38 {
    font-size: 38px;
  }
  .pc\:font-size\:39 {
    font-size: 39px;
  }
  .pc\:font-size\:40 {
    font-size: 40px;
  }
  .pc\:font-size\:41 {
    font-size: 41px;
  }
  .pc\:font-size\:42 {
    font-size: 42px;
  }
  .pc\:font-size\:43 {
    font-size: 43px;
  }
  .pc\:font-size\:44 {
    font-size: 44px;
  }
  .pc\:font-size\:45 {
    font-size: 45px;
  }
  .pc\:font-size\:46 {
    font-size: 46px;
  }
  .pc\:font-size\:47 {
    font-size: 47px;
  }
  .pc\:font-size\:48 {
    font-size: 48px;
  }
  .pc\:font-size\:49 {
    font-size: 49px;
  }
  .pc\:font-size\:50 {
    font-size: 50px;
  }
  .pc\:font-size\:51 {
    font-size: 51px;
  }
  .pc\:font-size\:52 {
    font-size: 52px;
  }
  .pc\:font-size\:53 {
    font-size: 53px;
  }
  .pc\:font-size\:54 {
    font-size: 54px;
  }
  .pc\:font-size\:55 {
    font-size: 55px;
  }
  .pc\:font-size\:56 {
    font-size: 56px;
  }
  .pc\:font-size\:57 {
    font-size: 57px;
  }
  .pc\:font-size\:58 {
    font-size: 58px;
  }
  .pc\:font-size\:59 {
    font-size: 59px;
  }
  .pc\:font-size\:60 {
    font-size: 60px;
  }
  .pc\:font-size\:61 {
    font-size: 61px;
  }
  .pc\:font-size\:62 {
    font-size: 62px;
  }
  .pc\:font-size\:63 {
    font-size: 63px;
  }
  .pc\:font-size\:64 {
    font-size: 64px;
  }
  .pc\:font-size\:65 {
    font-size: 65px;
  }
  .pc\:font-size\:66 {
    font-size: 66px;
  }
  .pc\:font-size\:67 {
    font-size: 67px;
  }
  .pc\:font-size\:68 {
    font-size: 68px;
  }
  .pc\:font-size\:69 {
    font-size: 69px;
  }
  .pc\:font-size\:70 {
    font-size: 70px;
  }
}
@media screen and (max-width: 60em) {
  .sp\:font-size\:10 {
    font-size: 10px;
  }
  .sp\:font-size\:11 {
    font-size: 11px;
  }
  .sp\:font-size\:12 {
    font-size: 12px;
  }
  .sp\:font-size\:13 {
    font-size: 13px;
  }
  .sp\:font-size\:14 {
    font-size: 14px;
  }
  .sp\:font-size\:15 {
    font-size: 15px;
  }
  .sp\:font-size\:16 {
    font-size: 16px;
  }
  .sp\:font-size\:17 {
    font-size: 17px;
  }
  .sp\:font-size\:18 {
    font-size: 18px;
  }
  .sp\:font-size\:19 {
    font-size: 19px;
  }
  .sp\:font-size\:20 {
    font-size: 20px;
  }
  .sp\:font-size\:21 {
    font-size: 21px;
  }
  .sp\:font-size\:22 {
    font-size: 22px;
  }
  .sp\:font-size\:23 {
    font-size: 23px;
  }
  .sp\:font-size\:24 {
    font-size: 24px;
  }
  .sp\:font-size\:25 {
    font-size: 25px;
  }
  .sp\:font-size\:26 {
    font-size: 26px;
  }
  .sp\:font-size\:27 {
    font-size: 27px;
  }
  .sp\:font-size\:28 {
    font-size: 28px;
  }
  .sp\:font-size\:29 {
    font-size: 29px;
  }
  .sp\:font-size\:30 {
    font-size: 30px;
  }
  .sp\:font-size\:31 {
    font-size: 31px;
  }
  .sp\:font-size\:32 {
    font-size: 32px;
  }
  .sp\:font-size\:33 {
    font-size: 33px;
  }
  .sp\:font-size\:34 {
    font-size: 34px;
  }
  .sp\:font-size\:35 {
    font-size: 35px;
  }
  .sp\:font-size\:36 {
    font-size: 36px;
  }
  .sp\:font-size\:37 {
    font-size: 37px;
  }
  .sp\:font-size\:38 {
    font-size: 38px;
  }
  .sp\:font-size\:39 {
    font-size: 39px;
  }
  .sp\:font-size\:40 {
    font-size: 40px;
  }
  .sp\:font-size\:41 {
    font-size: 41px;
  }
  .sp\:font-size\:42 {
    font-size: 42px;
  }
  .sp\:font-size\:43 {
    font-size: 43px;
  }
  .sp\:font-size\:44 {
    font-size: 44px;
  }
  .sp\:font-size\:45 {
    font-size: 45px;
  }
  .sp\:font-size\:46 {
    font-size: 46px;
  }
  .sp\:font-size\:47 {
    font-size: 47px;
  }
  .sp\:font-size\:48 {
    font-size: 48px;
  }
  .sp\:font-size\:49 {
    font-size: 49px;
  }
  .sp\:font-size\:50 {
    font-size: 50px;
  }
  .sp\:font-size\:51 {
    font-size: 51px;
  }
  .sp\:font-size\:52 {
    font-size: 52px;
  }
  .sp\:font-size\:53 {
    font-size: 53px;
  }
  .sp\:font-size\:54 {
    font-size: 54px;
  }
  .sp\:font-size\:55 {
    font-size: 55px;
  }
  .sp\:font-size\:56 {
    font-size: 56px;
  }
  .sp\:font-size\:57 {
    font-size: 57px;
  }
  .sp\:font-size\:58 {
    font-size: 58px;
  }
  .sp\:font-size\:59 {
    font-size: 59px;
  }
  .sp\:font-size\:60 {
    font-size: 60px;
  }
  .sp\:font-size\:61 {
    font-size: 61px;
  }
  .sp\:font-size\:62 {
    font-size: 62px;
  }
  .sp\:font-size\:63 {
    font-size: 63px;
  }
  .sp\:font-size\:64 {
    font-size: 64px;
  }
  .sp\:font-size\:65 {
    font-size: 65px;
  }
  .sp\:font-size\:66 {
    font-size: 66px;
  }
  .sp\:font-size\:67 {
    font-size: 67px;
  }
  .sp\:font-size\:68 {
    font-size: 68px;
  }
  .sp\:font-size\:69 {
    font-size: 69px;
  }
  .sp\:font-size\:70 {
    font-size: 70px;
  }
}
.font-family\:ja-r {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-family\:ja-m {
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-family\:en {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-family\:mix {
  font-family: "neue-haas-grotesk-text", source-han-sans-japanese, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gap\:0 {
  gap: 0px;
}

.column-gap\:0 {
  column-gap: 0px;
}

.row-gap\:0 {
  row-gap: 0px;
}

.gap\:5 {
  gap: 5px;
}

.column-gap\:5 {
  column-gap: 5px;
}

.row-gap\:5 {
  row-gap: 5px;
}

.gap\:10 {
  gap: 10px;
}

.column-gap\:10 {
  column-gap: 10px;
}

.row-gap\:10 {
  row-gap: 10px;
}

@media screen and (min-width: 60.001em) {
  .pc\:gap\:0 {
    gap: 0px;
  }
  .pc\:column-gap\:0 {
    column-gap: 0px;
  }
  .pc\:row-gap\:0 {
    row-gap: 0px;
  }
  .pc\:gap\:5 {
    gap: 5px;
  }
  .pc\:column-gap\:5 {
    column-gap: 5px;
  }
  .pc\:row-gap\:5 {
    row-gap: 5px;
  }
  .pc\:gap\:10 {
    gap: 10px;
  }
  .pc\:column-gap\:10 {
    column-gap: 10px;
  }
  .pc\:row-gap\:10 {
    row-gap: 10px;
  }
}
@media screen and (max-width: 60em) {
  .sp\:gap\:0 {
    gap: 0px;
  }
  .sp\:column-gap\:0 {
    column-gap: 0px;
  }
  .sp\:row-gap\:0 {
    row-gap: 0px;
  }
  .sp\:gap\:5 {
    gap: 5px;
  }
  .sp\:column-gap\:5 {
    column-gap: 5px;
  }
  .sp\:row-gap\:5 {
    row-gap: 5px;
  }
  .sp\:gap\:10 {
    gap: 10px;
  }
  .sp\:column-gap\:10 {
    column-gap: 10px;
  }
  .sp\:row-gap\:10 {
    row-gap: 10px;
  }
}
.js-accordion-btn {
  cursor: pointer;
  position: relative;
}

.js-accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.2s var(--transition);
}

.js-fadein-group-elem1,
.js-fadein-group-elem2 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.--scrolled .js-fadein-group-elem1,
.--scrolled .js-fadein-group-elem2 {
  opacity: 1;
}

.js-fadein-group-elem2 {
  transition-delay: 0.4s;
}

.js-home-nav-title-1 {
  position: relative;
}
.js-home-nav-title-1::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  border-radius: 50%;
  border: 1px solid currentColor;
  border-bottom: none;
  box-sizing: border-box;
  transform-origin: 50% 50%;
  animation: loading 0.6s linear infinite;
  opacity: 0;
  transition: opacity 2s;
}
.js-home-nav-title-1.--loading::before {
  opacity: 0;
}
.js-home-nav-title-1.--loading::after {
  opacity: 1;
}
@media screen and (min-width: 60.001em) {
  .js-home-nav-title-1::after {
    width: 11px;
    height: 11px;
    margin-top: -6px;
    border-width: 2px;
  }
}
@media screen and (max-width: 60em) {
  .js-home-nav-title-1::after {
    width: 7px;
    height: 7px;
    margin-top: -5px;
  }
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.line-height\:10 {
  line-height: 1;
}

.line-height\:11 {
  line-height: 1.1;
}

.line-height\:12 {
  line-height: 1.2;
}

.line-height\:13 {
  line-height: 1.3;
}

.line-height\:14 {
  line-height: 1.4;
}

.line-height\:15 {
  line-height: 1.5;
}

.line-height\:16 {
  line-height: 1.6;
}

.line-height\:17 {
  line-height: 1.7;
}

.line-height\:18 {
  line-height: 1.8;
}

.line-height\:19 {
  line-height: 1.9;
}

.line-height\:20 {
  line-height: 2;
}

.line-height\:21 {
  line-height: 2.1;
}

.line-height\:22 {
  line-height: 2.2;
}

.line-height\:23 {
  line-height: 2.3;
}

.line-height\:24 {
  line-height: 2.4;
}

.line-height\:25 {
  line-height: 2.5;
}

.line-height\:26 {
  line-height: 2.6;
}

.line-height\:27 {
  line-height: 2.7;
}

.line-height\:28 {
  line-height: 2.8;
}

.line-height\:29 {
  line-height: 2.9;
}

.line-height\:30 {
  line-height: 3;
}

@media screen and (min-width: 60.001em) {
  .pc\:line-height\:10 {
    line-height: 1;
  }
  .pc\:line-height\:11 {
    line-height: 1.1;
  }
  .pc\:line-height\:12 {
    line-height: 1.2;
  }
  .pc\:line-height\:13 {
    line-height: 1.3;
  }
  .pc\:line-height\:14 {
    line-height: 1.4;
  }
  .pc\:line-height\:15 {
    line-height: 1.5;
  }
  .pc\:line-height\:16 {
    line-height: 1.6;
  }
  .pc\:line-height\:17 {
    line-height: 1.7;
  }
  .pc\:line-height\:18 {
    line-height: 1.8;
  }
  .pc\:line-height\:19 {
    line-height: 1.9;
  }
  .pc\:line-height\:20 {
    line-height: 2;
  }
  .pc\:line-height\:21 {
    line-height: 2.1;
  }
  .pc\:line-height\:22 {
    line-height: 2.2;
  }
  .pc\:line-height\:23 {
    line-height: 2.3;
  }
  .pc\:line-height\:24 {
    line-height: 2.4;
  }
  .pc\:line-height\:25 {
    line-height: 2.5;
  }
  .pc\:line-height\:26 {
    line-height: 2.6;
  }
  .pc\:line-height\:27 {
    line-height: 2.7;
  }
  .pc\:line-height\:28 {
    line-height: 2.8;
  }
  .pc\:line-height\:29 {
    line-height: 2.9;
  }
  .pc\:line-height\:30 {
    line-height: 3;
  }
}
@media screen and (max-width: 60em) {
  .sp\:line-height\:10 {
    line-height: 1;
  }
  .sp\:line-height\:11 {
    line-height: 1.1;
  }
  .sp\:line-height\:12 {
    line-height: 1.2;
  }
  .sp\:line-height\:13 {
    line-height: 1.3;
  }
  .sp\:line-height\:14 {
    line-height: 1.4;
  }
  .sp\:line-height\:15 {
    line-height: 1.5;
  }
  .sp\:line-height\:16 {
    line-height: 1.6;
  }
  .sp\:line-height\:17 {
    line-height: 1.7;
  }
  .sp\:line-height\:18 {
    line-height: 1.8;
  }
  .sp\:line-height\:19 {
    line-height: 1.9;
  }
  .sp\:line-height\:20 {
    line-height: 2;
  }
  .sp\:line-height\:21 {
    line-height: 2.1;
  }
  .sp\:line-height\:22 {
    line-height: 2.2;
  }
  .sp\:line-height\:23 {
    line-height: 2.3;
  }
  .sp\:line-height\:24 {
    line-height: 2.4;
  }
  .sp\:line-height\:25 {
    line-height: 2.5;
  }
  .sp\:line-height\:26 {
    line-height: 2.6;
  }
  .sp\:line-height\:27 {
    line-height: 2.7;
  }
  .sp\:line-height\:28 {
    line-height: 2.8;
  }
  .sp\:line-height\:29 {
    line-height: 2.9;
  }
  .sp\:line-height\:30 {
    line-height: 3;
  }
}
.negative-margin-top {
  margin-top: calc((var(--line-height) - 1) / 2 * -1em);
}

.negative-margin-bottom {
  margin-bottom: calc((var(--line-height) - 1) / 2 * -1em);
}

.padding\:1 {
  padding: var(--space1);
}

.padding\:2 {
  padding: var(--space2);
}

.padding\:3 {
  padding: var(--space3);
}

.padding\:5 {
  padding: var(--space5);
}

.padding\:8 {
  padding: var(--space8);
}

.padding\:13 {
  padding: var(--space13);
}

.marpaddinggin\:21 {
  padding: var(--space21);
}

.no-padding {
  margin: 0;
}

.padding-top\:1 {
  padding-top: var(--space1);
}

.padding-top\:2 {
  padding-top: var(--space2);
}

.padding-top\:3 {
  padding-top: var(--space3);
}

.padding-top\:5 {
  padding-top: var(--space5);
}

.padding-top\:8 {
  padding-top: var(--space8);
}

.padding-top\:13 {
  padding-top: var(--space13);
}

.padding-top\:21 {
  padding-top: var(--space21);
}

.no-padding-top {
  padding-top: 0;
}

.padding-bottom\:1 {
  padding-bottom: var(--space1);
}

.padding-bottom\:2 {
  padding-bottom: var(--space2);
}

.padding-bottom\:3 {
  padding-bottom: var(--space3);
}

.padding-bottom\:5 {
  padding-bottom: var(--space5);
}

.padding-bottom\:8 {
  padding-bottom: var(--space8);
}

.padding-bottom\:13 {
  padding-bottom: var(--space13);
}

.padding-bottom\:21 {
  padding-bottom: var(--space21);
}

.no-padding-bottom {
  padding-bottom: 0;
}

.padding-right\:1 {
  padding-right: var(--space1);
}

.padding-right\:2 {
  padding-right: var(--space2);
}

.padding-right\:3 {
  padding-right: var(--space3);
}

.padding-right\:5 {
  padding-right: var(--space5);
}

.padding-right\:8 {
  padding-right: var(--space8);
}

.padding-right\:13 {
  padding-right: var(--space13);
}

.padding-right\:21 {
  padding-right: var(--space21);
}

.no-padding-right {
  padding-right: 0;
}

.padding-left\:1 {
  padding-left: var(--space1);
}

.padding-left\:2 {
  padding-left: var(--space2);
}

.padding-left\:3 {
  padding-left: var(--space3);
}

.padding-left\:5 {
  padding-left: var(--space5);
}

.padding-left\:8 {
  padding-left: var(--space8);
}

.padding-left\:13 {
  padding-left: var(--space13);
}

.padding-left\:21 {
  padding-left: var(--space21);
}

.no-padding-left {
  padding-left: 0;
}

@media screen and (min-width: 60.001em) {
  .pc\:padding\:1 {
    padding: var(--space1);
  }
  .pc\:padding\:2 {
    padding: var(--space2);
  }
  .pc\:padding\:3 {
    padding: var(--space3);
  }
  .pc\:padding\:5 {
    padding: var(--space5);
  }
  .pc\:padding\:8 {
    padding: var(--space8);
  }
  .pc\:padding\:13 {
    padding: var(--space13);
  }
  .pc\:padding\:21 {
    padding: var(--space21);
  }
  .pc\:no-padding {
    padding: 0;
  }
  .pc\:padding-top\:1 {
    padding-top: var(--space1);
  }
  .pc\:padding-top\:2 {
    padding-top: var(--space2);
  }
  .pc\:padding-top\:3 {
    padding-top: var(--space3);
  }
  .pc\:padding-top\:5 {
    padding-top: var(--space5);
  }
  .pc\:padding-top\:8 {
    padding-top: var(--space8);
  }
  .pc\:padding-top\:13 {
    padding-top: var(--space13);
  }
  .pc\:padding-top\:21 {
    padding-top: var(--space21);
  }
  .pc\:no-padding-top {
    padding-top: 0;
  }
  .pc\:padding-bottom\:1 {
    padding-bottom: var(--space1);
  }
  .pc\:padding-bottom\:2 {
    padding-bottom: var(--space2);
  }
  .pc\:padding-bottom\:3 {
    padding-bottom: var(--space3);
  }
  .pc\:padding-bottom\:5 {
    padding-bottom: var(--space5);
  }
  .pc\:padding-bottom\:8 {
    padding-bottom: var(--space8);
  }
  .pc\:padding-bottom\:13 {
    padding-bottom: var(--space13);
  }
  .pc\:padding-bottom\:21 {
    padding-bottom: var(--space21);
  }
  .pc\:no-padding-bottom {
    padding-bottom: 0;
  }
  .pc\:padding-right\:1 {
    padding-right: var(--space1);
  }
  .pc\:padding-right\:2 {
    padding-right: var(--space2);
  }
  .pc\:padding-right\:3 {
    padding-right: var(--space3);
  }
  .pc\:padding-right\:5 {
    padding-right: var(--space5);
  }
  .pc\:padding-right\:8 {
    padding-right: var(--space8);
  }
  .pc\:padding-right\:13 {
    padding-right: var(--space13);
  }
  .pc\:padding-right\:21 {
    padding-right: var(--space21);
  }
  .pc\:no-padding-right {
    padding-right: 0;
  }
  .pc\:padding-left\:1 {
    padding-left: var(--space1);
  }
  .pc\:padding-left\:2 {
    padding-left: var(--space2);
  }
  .pc\:padding-left\:3 {
    padding-left: var(--space3);
  }
  .pc\:padding-left\:5 {
    padding-left: var(--space5);
  }
  .pc\:padding-left\:8 {
    padding-left: var(--space8);
  }
  .pc\:padding-left\:13 {
    padding-left: var(--space13);
  }
  .pc\:padding-left\:21 {
    padding-left: var(--space21);
  }
  .pc\:no-padding-left {
    padding-left: 0;
  }
}
@media screen and (max-width: 60em) {
  .sp\:padding\:1 {
    padding: var(--space1);
  }
  .sp\:padding\:2 {
    padding: var(--space2);
  }
  .sp\:padding\:3 {
    padding: var(--space3);
  }
  .sp\:padding\:5 {
    padding: var(--space5);
  }
  .sp\:padding\:8 {
    padding: var(--space8);
  }
  .pc\:padding\:13 {
    padding: var(--space13);
  }
  .sp\:padding\:21 {
    padding: var(--space21);
  }
  .sp\:no-padding {
    padding: 0;
  }
  .sp\:padding-top\:1 {
    padding-top: var(--space1);
  }
  .sp\:padding-top\:2 {
    padding-top: var(--space2);
  }
  .sp\:padding-top\:3 {
    padding-top: var(--space3);
  }
  .sp\:padding-top\:5 {
    padding-top: var(--space5);
  }
  .sp\:padding-top\:8 {
    padding-top: var(--space8);
  }
  .sp\:padding-top\:13 {
    padding-top: var(--space13);
  }
  .sp\:padding-top\:21 {
    padding-top: var(--space21);
  }
  .sp\:no-padding-top {
    padding-top: 0;
  }
  .sp\:padding-bottom\:1 {
    padding-bottom: var(--space1);
  }
  .sp\:padding-bottom\:2 {
    padding-bottom: var(--space2);
  }
  .sp\:padding-bottom\:3 {
    padding-bottom: var(--space3);
  }
  .sp\:padding-bottom\:5 {
    padding-bottom: var(--space5);
  }
  .sp\:padding-bottom\:8 {
    padding-bottom: var(--space8);
  }
  .sp\:padding-bottom\:13 {
    padding-bottom: var(--space13);
  }
  .sp\:padding-bottom\:21 {
    padding-bottom: var(--space21);
  }
  .sp\:no-padding-bottom {
    padding-bottom: 0;
  }
  .sp\:padding-right\:1 {
    padding-right: var(--space1);
  }
  .sp\:padding-right\:2 {
    padding-right: var(--space2);
  }
  .sp\:padding-right\:3 {
    padding-right: var(--space3);
  }
  .sp\:padding-right\:5 {
    padding-right: var(--space5);
  }
  .sp\:padding-right\:8 {
    padding-right: var(--space8);
  }
  .sp\:padding-right\:13 {
    padding-right: var(--space13);
  }
  .sp\:padding-right\:21 {
    padding-right: var(--space21);
  }
  .sp\:no-padding-right {
    padding-right: 0;
  }
  .sp\:padding-left\:1 {
    padding-left: var(--space1);
  }
  .sp\:padding-left\:2 {
    padding-left: var(--space2);
  }
  .sp\:padding-left\:3 {
    padding-left: var(--space3);
  }
  .sp\:padding-left\:5 {
    padding-left: var(--space5);
  }
  .sp\:padding-left\:8 {
    padding-left: var(--space8);
  }
  .sp\:padding-left\:13 {
    padding-left: var(--space13);
  }
  .sp\:padding-left\:21 {
    padding-left: var(--space21);
  }
  .sp\:no-padding-left {
    padding-left: 0;
  }
}
.negative-margin-top {
  margin-top: calc((var(--line-height) - 1) / 2 * -1em);
}

.negative-margin-bottom {
  margin-bottom: calc((var(--line-height) - 1) / 2 * -1em);
}

.margin\:1 {
  margin: var(--space1);
}

.margin\:2 {
  margin: var(--space2);
}

.margin\:3 {
  margin: var(--space3);
}

.margin\:5 {
  margin: var(--space5);
}

.margin\:8 {
  margin: var(--space8);
}

.margin\:13 {
  margin: var(--space13);
}

.margin\:21 {
  margin: var(--space21);
}

.no-margin {
  margin: 0;
}

.margin-top\:1 {
  margin-top: var(--space1);
}

.margin-top\:2 {
  margin-top: var(--space2);
}

.margin-top\:3 {
  margin-top: var(--space3);
}

.margin-top\:5 {
  margin-top: var(--space5);
}

.margin-top\:8 {
  margin-top: var(--space8);
}

.margin-top\:13 {
  margin-top: var(--space13);
}

.margin-top\:21 {
  margin-top: var(--space21);
}

.no-margin-top {
  margin-top: 0;
}

.margin-bottom\:1 {
  margin-bottom: var(--space1);
}

.margin-bottom\:2 {
  margin-bottom: var(--space2);
}

.margin-bottom\:3 {
  margin-bottom: var(--space3);
}

.margin-bottom\:5 {
  margin-bottom: var(--space5);
}

.margin-bottom\:8 {
  margin-bottom: var(--space8);
}

.margin-bottom\:13 {
  margin-bottom: var(--space13);
}

.margin-bottom\:21 {
  margin-bottom: var(--space21);
}

.no-margin-bottom {
  margin-bottom: 0;
}

.margin-right\:1 {
  margin-right: var(--space1);
}

.margin-right\:2 {
  margin-right: var(--space2);
}

.margin-right\:3 {
  margin-right: var(--space3);
}

.margin-right\:5 {
  margin-right: var(--space5);
}

.margin-right\:8 {
  margin-right: var(--space8);
}

.margin-right\:13 {
  margin-right: var(--space13);
}

.margin-right\:21 {
  margin-right: var(--space21);
}

.no-margin-right {
  margin-right: 0;
}

.margin-left\:1 {
  margin-left: var(--space1);
}

.margin-left\:2 {
  margin-left: var(--space2);
}

.margin-left\:3 {
  margin-left: var(--space3);
}

.margin-left\:5 {
  margin-left: var(--space5);
}

.margin-left\:8 {
  margin-left: var(--space8);
}

.margin-left\:13 {
  margin-left: var(--space13);
}

.margin-left\:21 {
  margin-left: var(--space21);
}

.no-margin-left {
  margin-left: 0;
}

@media screen and (min-width: 60.001em) {
  .pc\:margin\:1 {
    margin: var(--space1);
  }
  .pc\:margin\:2 {
    margin: var(--space2);
  }
  .pc\:margin\:3 {
    margin: var(--space3);
  }
  .pc\:margin\:5 {
    margin: var(--space5);
  }
  .pc\:margin\:8 {
    margin: var(--space8);
  }
  .pc\:margin\:13 {
    margin: var(--space13);
  }
  .pc\:margin\:21 {
    margin: var(--space21);
  }
  .pc\:no-margin {
    margin: 0;
  }
  .pc\:margin-top\:1 {
    margin-top: var(--space1);
  }
  .pc\:margin-top\:2 {
    margin-top: var(--space2);
  }
  .pc\:margin-top\:3 {
    margin-top: var(--space3);
  }
  .pc\:margin-top\:5 {
    margin-top: var(--space5);
  }
  .pc\:margin-top\:8 {
    margin-top: var(--space8);
  }
  .pc\:margin-top\:13 {
    margin-top: var(--space13);
  }
  .pc\:margin-top\:21 {
    margin-top: var(--space21);
  }
  .pc\:no-margin-top {
    margin-top: 0;
  }
  .pc\:margin-bottom\:1 {
    margin-bottom: var(--space1);
  }
  .pc\:margin-bottom\:2 {
    margin-bottom: var(--space2);
  }
  .pc\:margin-bottom\:3 {
    margin-bottom: var(--space3);
  }
  .pc\:margin-bottom\:5 {
    margin-bottom: var(--space5);
  }
  .pc\:margin-bottom\:8 {
    margin-bottom: var(--space8);
  }
  .pc\:margin-bottom\:13 {
    margin-bottom: var(--space13);
  }
  .pc\:margin-bottom\:21 {
    margin-bottom: var(--space21);
  }
  .pc\:no-margin-bottom {
    margin-bottom: 0;
  }
  .pc\:margin-right\:1 {
    margin-right: var(--space1);
  }
  .pc\:margin-right\:2 {
    margin-right: var(--space2);
  }
  .pc\:margin-right\:3 {
    margin-right: var(--space3);
  }
  .pc\:margin-right\:5 {
    margin-right: var(--space5);
  }
  .pc\:margin-right\:8 {
    margin-right: var(--space8);
  }
  .pc\:margin-right\:13 {
    margin-right: var(--space13);
  }
  .pc\:margin-right\:21 {
    margin-right: var(--space21);
  }
  .pc\:no-margin-right {
    margin-right: 0;
  }
  .pc\:margin-left\:1 {
    margin-left: var(--space1);
  }
  .pc\:margin-left\:2 {
    margin-left: var(--space2);
  }
  .pc\:margin-left\:3 {
    margin-left: var(--space3);
  }
  .pc\:margin-left\:5 {
    margin-left: var(--space5);
  }
  .pc\:margin-left\:8 {
    margin-left: var(--space8);
  }
  .pc\:margin-left\:13 {
    margin-left: var(--space13);
  }
  .pc\:margin-left\:21 {
    margin-left: var(--space21);
  }
  .pc\:no-margin-left {
    margin-left: 0;
  }
}
@media screen and (max-width: 60em) {
  .sp\:margin\:1 {
    margin: var(--space1);
  }
  .sp\:margin\:2 {
    margin: var(--space2);
  }
  .sp\:margin\:3 {
    margin: var(--space3);
  }
  .sp\:margin\:5 {
    margin: var(--space5);
  }
  .sp\:margin\:8 {
    margin: var(--space8);
  }
  .pc\:margin\:13 {
    margin: var(--space13);
  }
  .sp\:margin\:21 {
    margin: var(--space21);
  }
  .sp\:no-margin {
    margin: 0;
  }
  .sp\:margin-top\:1 {
    margin-top: var(--space1);
  }
  .sp\:margin-top\:2 {
    margin-top: var(--space2);
  }
  .sp\:margin-top\:3 {
    margin-top: var(--space3);
  }
  .sp\:margin-top\:5 {
    margin-top: var(--space5);
  }
  .sp\:margin-top\:8 {
    margin-top: var(--space8);
  }
  .sp\:margin-top\:13 {
    margin-top: var(--space13);
  }
  .sp\:margin-top\:21 {
    margin-top: var(--space21);
  }
  .sp\:no-margin-top {
    margin-top: 0;
  }
  .sp\:margin-bottom\:1 {
    margin-bottom: var(--space1);
  }
  .sp\:margin-bottom\:2 {
    margin-bottom: var(--space2);
  }
  .sp\:margin-bottom\:3 {
    margin-bottom: var(--space3);
  }
  .sp\:margin-bottom\:5 {
    margin-bottom: var(--space5);
  }
  .sp\:margin-bottom\:8 {
    margin-bottom: var(--space8);
  }
  .sp\:margin-bottom\:13 {
    margin-bottom: var(--space13);
  }
  .sp\:margin-bottom\:21 {
    margin-bottom: var(--space21);
  }
  .sp\:no-margin-bottom {
    margin-bottom: 0;
  }
  .sp\:margin-right\:1 {
    margin-right: var(--space1);
  }
  .sp\:margin-right\:2 {
    margin-right: var(--space2);
  }
  .sp\:margin-right\:3 {
    margin-right: var(--space3);
  }
  .sp\:margin-right\:5 {
    margin-right: var(--space5);
  }
  .sp\:margin-right\:8 {
    margin-right: var(--space8);
  }
  .sp\:margin-right\:13 {
    margin-right: var(--space13);
  }
  .sp\:margin-right\:21 {
    margin-right: var(--space21);
  }
  .sp\:no-margin-right {
    margin-right: 0;
  }
  .sp\:margin-left\:1 {
    margin-left: var(--space1);
  }
  .sp\:margin-left\:2 {
    margin-left: var(--space2);
  }
  .sp\:margin-left\:3 {
    margin-left: var(--space3);
  }
  .sp\:margin-left\:5 {
    margin-left: var(--space5);
  }
  .sp\:margin-left\:8 {
    margin-left: var(--space8);
  }
  .sp\:margin-left\:13 {
    margin-left: var(--space13);
  }
  .sp\:margin-left\:21 {
    margin-left: var(--space21);
  }
  .sp\:no-margin-left {
    margin-left: 0;
  }
}
.stack\:1 > * + * {
  margin-top: var(--space1);
}

.stack\:2 > * + * {
  margin-top: var(--space2);
}

.stack\:3 > * + * {
  margin-top: var(--space3);
}

.stack\:5 > * + * {
  margin-top: var(--space5);
}

.stack\:8 > * + * {
  margin-top: var(--space8);
}

.stack\:13 > * + * {
  margin-top: var(--space13);
}

.stack\:21 > * + * {
  margin-top: var(--space21);
}

.no-stack {
  margin-top: 0;
}

.pc\:stack\:1 > * + * {
  margin-top: var(--space1);
}

.pc\:stack\:2 > * + * {
  margin-top: var(--space2);
}

.pc\:stack\:3 > * + * {
  margin-top: var(--space3);
}

.pc\:stack\:5 > * + * {
  margin-top: var(--space5);
}

.pc\:stack\:8 > * + * {
  margin-top: var(--space8);
}

.pc\:stack\:13 > * + * {
  margin-top: var(--space13);
}

.pc\:stack\:21 > * + * {
  margin-top: var(--space21);
}

.pc\:no-stack {
  margin-top: 0;
}

@media screen and (max-width: 60em) {
  .sp\:stack\:1 > * + * {
    margin-top: var(--space1);
  }
  .sp\:stack\:2 > * + * {
    margin-top: var(--space2);
  }
  .sp\:stack\:3 > * + * {
    margin-top: var(--space3);
  }
  .sp\:stack\:5 > * + * {
    margin-top: var(--space5);
  }
  .sp\:stack\:8 > * + * {
    margin-top: var(--space8);
  }
  .sp\:stack\:13 > * + * {
    margin-top: var(--space13);
  }
  .sp\:stack\:21 > * + * {
    margin-top: var(--space21);
  }
  .sp\:no-stack {
    margin-top: 0;
  }
}
.stack\:1\:border > * + * {
  padding-top: var(--space1);
  margin-top: var(--space1);
}

.stack\:13\:border > * + * {
  padding-top: var(--space13);
}

.svg-loading path {
  stroke: #000;
  stroke-miterlimit: 4;
  stroke-width: 1px;
}

.pc {
  display: none;
}
@media screen and (min-width: 60.001em) {
  .pc {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 60em) {
  .sp {
    display: block;
  }
}

.en {
  display: none;
}
html[lang=en] .en {
  display: block;
}

.ja {
  display: none;
}
html[lang=ja] .ja, html[lang=auto] .ja {
  display: block;
}

.width\:1 {
  width: 1%;
}

.width\:2 {
  width: 2%;
}

.width\:3 {
  width: 3%;
}

.width\:4 {
  width: 4%;
}

.width\:5 {
  width: 5%;
}

.width\:6 {
  width: 6%;
}

.width\:7 {
  width: 7%;
}

.width\:8 {
  width: 8%;
}

.width\:9 {
  width: 9%;
}

.width\:10 {
  width: 10%;
}

.width\:11 {
  width: 11%;
}

.width\:12 {
  width: 12%;
}

.width\:13 {
  width: 13%;
}

.width\:14 {
  width: 14%;
}

.width\:15 {
  width: 15%;
}

.width\:16 {
  width: 16%;
}

.width\:17 {
  width: 17%;
}

.width\:18 {
  width: 18%;
}

.width\:19 {
  width: 19%;
}

.width\:20 {
  width: 20%;
}

.width\:21 {
  width: 21%;
}

.width\:22 {
  width: 22%;
}

.width\:23 {
  width: 23%;
}

.width\:24 {
  width: 24%;
}

.width\:25 {
  width: 25%;
}

.width\:26 {
  width: 26%;
}

.width\:27 {
  width: 27%;
}

.width\:28 {
  width: 28%;
}

.width\:29 {
  width: 29%;
}

.width\:30 {
  width: 30%;
}

.width\:31 {
  width: 31%;
}

.width\:32 {
  width: 32%;
}

.width\:33 {
  width: 33%;
}

.width\:34 {
  width: 34%;
}

.width\:35 {
  width: 35%;
}

.width\:36 {
  width: 36%;
}

.width\:37 {
  width: 37%;
}

.width\:38 {
  width: 38%;
}

.width\:39 {
  width: 39%;
}

.width\:40 {
  width: 40%;
}

.width\:41 {
  width: 41%;
}

.width\:42 {
  width: 42%;
}

.width\:43 {
  width: 43%;
}

.width\:44 {
  width: 44%;
}

.width\:45 {
  width: 45%;
}

.width\:46 {
  width: 46%;
}

.width\:47 {
  width: 47%;
}

.width\:48 {
  width: 48%;
}

.width\:49 {
  width: 49%;
}

.width\:50 {
  width: 50%;
}

.width\:51 {
  width: 51%;
}

.width\:52 {
  width: 52%;
}

.width\:53 {
  width: 53%;
}

.width\:54 {
  width: 54%;
}

.width\:55 {
  width: 55%;
}

.width\:56 {
  width: 56%;
}

.width\:57 {
  width: 57%;
}

.width\:58 {
  width: 58%;
}

.width\:59 {
  width: 59%;
}

.width\:60 {
  width: 60%;
}

.width\:61 {
  width: 61%;
}

.width\:62 {
  width: 62%;
}

.width\:63 {
  width: 63%;
}

.width\:64 {
  width: 64%;
}

.width\:65 {
  width: 65%;
}

.width\:66 {
  width: 66%;
}

.width\:67 {
  width: 67%;
}

.width\:68 {
  width: 68%;
}

.width\:69 {
  width: 69%;
}

.width\:70 {
  width: 70%;
}

.width\:71 {
  width: 71%;
}

.width\:72 {
  width: 72%;
}

.width\:73 {
  width: 73%;
}

.width\:74 {
  width: 74%;
}

.width\:75 {
  width: 75%;
}

.width\:76 {
  width: 76%;
}

.width\:77 {
  width: 77%;
}

.width\:78 {
  width: 78%;
}

.width\:79 {
  width: 79%;
}

.width\:80 {
  width: 80%;
}

.width\:81 {
  width: 81%;
}

.width\:82 {
  width: 82%;
}

.width\:83 {
  width: 83%;
}

.width\:84 {
  width: 84%;
}

.width\:85 {
  width: 85%;
}

.width\:86 {
  width: 86%;
}

.width\:87 {
  width: 87%;
}

.width\:88 {
  width: 88%;
}

.width\:89 {
  width: 89%;
}

.width\:90 {
  width: 90%;
}

.width\:91 {
  width: 91%;
}

.width\:92 {
  width: 92%;
}

.width\:93 {
  width: 93%;
}

.width\:94 {
  width: 94%;
}

.width\:95 {
  width: 95%;
}

.width\:96 {
  width: 96%;
}

.width\:97 {
  width: 97%;
}

.width\:98 {
  width: 98%;
}

.width\:99 {
  width: 99%;
}

.width\:100 {
  width: 100%;
}

@media screen and (min-width: 60.001em) {
  .pc\:width\:1 {
    width: 1%;
  }
  .pc\:width\:2 {
    width: 2%;
  }
  .pc\:width\:3 {
    width: 3%;
  }
  .pc\:width\:4 {
    width: 4%;
  }
  .pc\:width\:5 {
    width: 5%;
  }
  .pc\:width\:6 {
    width: 6%;
  }
  .pc\:width\:7 {
    width: 7%;
  }
  .pc\:width\:8 {
    width: 8%;
  }
  .pc\:width\:9 {
    width: 9%;
  }
  .pc\:width\:10 {
    width: 10%;
  }
  .pc\:width\:11 {
    width: 11%;
  }
  .pc\:width\:12 {
    width: 12%;
  }
  .pc\:width\:13 {
    width: 13%;
  }
  .pc\:width\:14 {
    width: 14%;
  }
  .pc\:width\:15 {
    width: 15%;
  }
  .pc\:width\:16 {
    width: 16%;
  }
  .pc\:width\:17 {
    width: 17%;
  }
  .pc\:width\:18 {
    width: 18%;
  }
  .pc\:width\:19 {
    width: 19%;
  }
  .pc\:width\:20 {
    width: 20%;
  }
  .pc\:width\:21 {
    width: 21%;
  }
  .pc\:width\:22 {
    width: 22%;
  }
  .pc\:width\:23 {
    width: 23%;
  }
  .pc\:width\:24 {
    width: 24%;
  }
  .pc\:width\:25 {
    width: 25%;
  }
  .pc\:width\:26 {
    width: 26%;
  }
  .pc\:width\:27 {
    width: 27%;
  }
  .pc\:width\:28 {
    width: 28%;
  }
  .pc\:width\:29 {
    width: 29%;
  }
  .pc\:width\:30 {
    width: 30%;
  }
  .pc\:width\:31 {
    width: 31%;
  }
  .pc\:width\:32 {
    width: 32%;
  }
  .pc\:width\:33 {
    width: 33%;
  }
  .pc\:width\:34 {
    width: 34%;
  }
  .pc\:width\:35 {
    width: 35%;
  }
  .pc\:width\:36 {
    width: 36%;
  }
  .pc\:width\:37 {
    width: 37%;
  }
  .pc\:width\:38 {
    width: 38%;
  }
  .pc\:width\:39 {
    width: 39%;
  }
  .pc\:width\:40 {
    width: 40%;
  }
  .pc\:width\:41 {
    width: 41%;
  }
  .pc\:width\:42 {
    width: 42%;
  }
  .pc\:width\:43 {
    width: 43%;
  }
  .pc\:width\:44 {
    width: 44%;
  }
  .pc\:width\:45 {
    width: 45%;
  }
  .pc\:width\:46 {
    width: 46%;
  }
  .pc\:width\:47 {
    width: 47%;
  }
  .pc\:width\:48 {
    width: 48%;
  }
  .pc\:width\:49 {
    width: 49%;
  }
  .pc\:width\:50 {
    width: 50%;
  }
  .pc\:width\:51 {
    width: 51%;
  }
  .pc\:width\:52 {
    width: 52%;
  }
  .pc\:width\:53 {
    width: 53%;
  }
  .pc\:width\:54 {
    width: 54%;
  }
  .pc\:width\:55 {
    width: 55%;
  }
  .pc\:width\:56 {
    width: 56%;
  }
  .pc\:width\:57 {
    width: 57%;
  }
  .pc\:width\:58 {
    width: 58%;
  }
  .pc\:width\:59 {
    width: 59%;
  }
  .pc\:width\:60 {
    width: 60%;
  }
  .pc\:width\:61 {
    width: 61%;
  }
  .pc\:width\:62 {
    width: 62%;
  }
  .pc\:width\:63 {
    width: 63%;
  }
  .pc\:width\:64 {
    width: 64%;
  }
  .pc\:width\:65 {
    width: 65%;
  }
  .pc\:width\:66 {
    width: 66%;
  }
  .pc\:width\:67 {
    width: 67%;
  }
  .pc\:width\:68 {
    width: 68%;
  }
  .pc\:width\:69 {
    width: 69%;
  }
  .pc\:width\:70 {
    width: 70%;
  }
  .pc\:width\:71 {
    width: 71%;
  }
  .pc\:width\:72 {
    width: 72%;
  }
  .pc\:width\:73 {
    width: 73%;
  }
  .pc\:width\:74 {
    width: 74%;
  }
  .pc\:width\:75 {
    width: 75%;
  }
  .pc\:width\:76 {
    width: 76%;
  }
  .pc\:width\:77 {
    width: 77%;
  }
  .pc\:width\:78 {
    width: 78%;
  }
  .pc\:width\:79 {
    width: 79%;
  }
  .pc\:width\:80 {
    width: 80%;
  }
  .pc\:width\:81 {
    width: 81%;
  }
  .pc\:width\:82 {
    width: 82%;
  }
  .pc\:width\:83 {
    width: 83%;
  }
  .pc\:width\:84 {
    width: 84%;
  }
  .pc\:width\:85 {
    width: 85%;
  }
  .pc\:width\:86 {
    width: 86%;
  }
  .pc\:width\:87 {
    width: 87%;
  }
  .pc\:width\:88 {
    width: 88%;
  }
  .pc\:width\:89 {
    width: 89%;
  }
  .pc\:width\:90 {
    width: 90%;
  }
  .pc\:width\:91 {
    width: 91%;
  }
  .pc\:width\:92 {
    width: 92%;
  }
  .pc\:width\:93 {
    width: 93%;
  }
  .pc\:width\:94 {
    width: 94%;
  }
  .pc\:width\:95 {
    width: 95%;
  }
  .pc\:width\:96 {
    width: 96%;
  }
  .pc\:width\:97 {
    width: 97%;
  }
  .pc\:width\:98 {
    width: 98%;
  }
  .pc\:width\:99 {
    width: 99%;
  }
  .pc\:width\:100 {
    width: 100%;
  }
}
@media screen and (max-width: 60em) {
  .sp\:width\:1 {
    width: 1%;
  }
  .sp\:width\:2 {
    width: 2%;
  }
  .sp\:width\:3 {
    width: 3%;
  }
  .sp\:width\:4 {
    width: 4%;
  }
  .sp\:width\:5 {
    width: 5%;
  }
  .sp\:width\:6 {
    width: 6%;
  }
  .sp\:width\:7 {
    width: 7%;
  }
  .sp\:width\:8 {
    width: 8%;
  }
  .sp\:width\:9 {
    width: 9%;
  }
  .sp\:width\:10 {
    width: 10%;
  }
  .sp\:width\:11 {
    width: 11%;
  }
  .sp\:width\:12 {
    width: 12%;
  }
  .sp\:width\:13 {
    width: 13%;
  }
  .sp\:width\:14 {
    width: 14%;
  }
  .sp\:width\:15 {
    width: 15%;
  }
  .sp\:width\:16 {
    width: 16%;
  }
  .sp\:width\:17 {
    width: 17%;
  }
  .sp\:width\:18 {
    width: 18%;
  }
  .sp\:width\:19 {
    width: 19%;
  }
  .sp\:width\:20 {
    width: 20%;
  }
  .sp\:width\:21 {
    width: 21%;
  }
  .sp\:width\:22 {
    width: 22%;
  }
  .sp\:width\:23 {
    width: 23%;
  }
  .sp\:width\:24 {
    width: 24%;
  }
  .sp\:width\:25 {
    width: 25%;
  }
  .sp\:width\:26 {
    width: 26%;
  }
  .sp\:width\:27 {
    width: 27%;
  }
  .sp\:width\:28 {
    width: 28%;
  }
  .sp\:width\:29 {
    width: 29%;
  }
  .sp\:width\:30 {
    width: 30%;
  }
  .sp\:width\:31 {
    width: 31%;
  }
  .sp\:width\:32 {
    width: 32%;
  }
  .sp\:width\:33 {
    width: 33%;
  }
  .sp\:width\:34 {
    width: 34%;
  }
  .sp\:width\:35 {
    width: 35%;
  }
  .sp\:width\:36 {
    width: 36%;
  }
  .sp\:width\:37 {
    width: 37%;
  }
  .sp\:width\:38 {
    width: 38%;
  }
  .sp\:width\:39 {
    width: 39%;
  }
  .sp\:width\:40 {
    width: 40%;
  }
  .sp\:width\:41 {
    width: 41%;
  }
  .sp\:width\:42 {
    width: 42%;
  }
  .sp\:width\:43 {
    width: 43%;
  }
  .sp\:width\:44 {
    width: 44%;
  }
  .sp\:width\:45 {
    width: 45%;
  }
  .sp\:width\:46 {
    width: 46%;
  }
  .sp\:width\:47 {
    width: 47%;
  }
  .sp\:width\:48 {
    width: 48%;
  }
  .sp\:width\:49 {
    width: 49%;
  }
  .sp\:width\:50 {
    width: 50%;
  }
  .sp\:width\:51 {
    width: 51%;
  }
  .sp\:width\:52 {
    width: 52%;
  }
  .sp\:width\:53 {
    width: 53%;
  }
  .sp\:width\:54 {
    width: 54%;
  }
  .sp\:width\:55 {
    width: 55%;
  }
  .sp\:width\:56 {
    width: 56%;
  }
  .sp\:width\:57 {
    width: 57%;
  }
  .sp\:width\:58 {
    width: 58%;
  }
  .sp\:width\:59 {
    width: 59%;
  }
  .sp\:width\:60 {
    width: 60%;
  }
  .sp\:width\:61 {
    width: 61%;
  }
  .sp\:width\:62 {
    width: 62%;
  }
  .sp\:width\:63 {
    width: 63%;
  }
  .sp\:width\:64 {
    width: 64%;
  }
  .sp\:width\:65 {
    width: 65%;
  }
  .sp\:width\:66 {
    width: 66%;
  }
  .sp\:width\:67 {
    width: 67%;
  }
  .sp\:width\:68 {
    width: 68%;
  }
  .sp\:width\:69 {
    width: 69%;
  }
  .sp\:width\:70 {
    width: 70%;
  }
  .sp\:width\:71 {
    width: 71%;
  }
  .sp\:width\:72 {
    width: 72%;
  }
  .sp\:width\:73 {
    width: 73%;
  }
  .sp\:width\:74 {
    width: 74%;
  }
  .sp\:width\:75 {
    width: 75%;
  }
  .sp\:width\:76 {
    width: 76%;
  }
  .sp\:width\:77 {
    width: 77%;
  }
  .sp\:width\:78 {
    width: 78%;
  }
  .sp\:width\:79 {
    width: 79%;
  }
  .sp\:width\:80 {
    width: 80%;
  }
  .sp\:width\:81 {
    width: 81%;
  }
  .sp\:width\:82 {
    width: 82%;
  }
  .sp\:width\:83 {
    width: 83%;
  }
  .sp\:width\:84 {
    width: 84%;
  }
  .sp\:width\:85 {
    width: 85%;
  }
  .sp\:width\:86 {
    width: 86%;
  }
  .sp\:width\:87 {
    width: 87%;
  }
  .sp\:width\:88 {
    width: 88%;
  }
  .sp\:width\:89 {
    width: 89%;
  }
  .sp\:width\:90 {
    width: 90%;
  }
  .sp\:width\:91 {
    width: 91%;
  }
  .sp\:width\:92 {
    width: 92%;
  }
  .sp\:width\:93 {
    width: 93%;
  }
  .sp\:width\:94 {
    width: 94%;
  }
  .sp\:width\:95 {
    width: 95%;
  }
  .sp\:width\:96 {
    width: 96%;
  }
  .sp\:width\:97 {
    width: 97%;
  }
  .sp\:width\:98 {
    width: 98%;
  }
  .sp\:width\:99 {
    width: 99%;
  }
  .sp\:width\:100 {
    width: 100%;
  }
}