* {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

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

:root {
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
  line-height: 1.5;
  overflow-wrap: break-word;
  -moz-tab-size: 4;
  tab-size: 4;
}

html,
body {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

ul {
  list-style: none;
}

em {
  font-style: italic;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #444559;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}

.header-inner {
  width: 100%;
  height: 6rem;
  padding-inline: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .header-inner {
    padding-inline: 1.6rem;
    padding-right: 0;
  }
}

.header-right {
  display: flex;
  gap: 1.6rem;
}
@media not screen and (min-width: 768px) {
  .header-right {
    gap: 1.6rem;
  }
}
.header-right a {
  transition: opacity 0.3s;
}
.header-right a:hover {
  opacity: 0.7;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media not screen and (min-width: 768px) {
  .header-nav {
    gap: 1.2rem;
  }
}

.header-lang {
  display: flex;
  gap: 0.8rem;
  letter-spacing: 0.02em;
}

.header-lang .is-active {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
}

.header-sns {
  display: flex;
  gap: 0.8rem;
}

.header-toggle {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: none;
  cursor: pointer;
  background: none;
  appearance: none;
}

.header-toggle__icon {
  position: relative;
  display: block;
  padding: 0;
  width: 28px;
  height: 14px;
}
.header-toggle__icon > span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #444559;
  border-radius: 0;
  transition: all 0.5s ease;
}
.header-toggle__icon > span:nth-child(1) {
  top: 0;
}
.header-toggle__icon > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header-toggle__icon > span:nth-child(3) {
  bottom: 0;
}

body.is-gnav-open .header-toggle__icon > span {
  background-color: #fff;
}
body.is-gnav-open .header-toggle__icon > span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
body.is-gnav-open .header-toggle__icon > span:nth-child(2) {
  opacity: 0;
}
body.is-gnav-open .header-toggle__icon > span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.gnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  height: 100vh;
  height: 100dvh;
  width: 640px;
  background-color: #444559;
  color: #fff;
  transform: translateX(100%);
  transition: ease transform 0.5s;
  overflow-y: auto;
}
@media not screen and (min-width: 768px) {
  .gnav {
    width: 82.0512820513vw;
  }
}
body.is-gnav-open .gnav {
  transform: translateX(0%);
}

.gnav-list {
  padding: 60px 0;
}
@media not screen and (min-width: 768px) {
  .gnav-list {
    padding: 15.3846153846vw 0;
  }
}

.gnav-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gnav-list__link-v1 {
  display: block;
  padding: 20px 32px;
}
@media not screen and (min-width: 768px) {
  .gnav-list__link-v1 {
    padding: 5.1282051282vw 8.2051282051vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav-list__link-v1 {
    transition: opacity 0.3s;
  }
  .gnav-list__link-v1:hover {
    opacity: 0.7;
  }
}

.gnav-list__label {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .gnav-list__label {
    margin: 0 0 2.0512820513vw;
    font-size: 3.8461538462vw;
  }
}
.gnav-list__label::before {
  content: "";
  position: absolute;
  display: block;
  top: 55%;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
}

.gnav-childlist {
  margin-top: -4px;
  padding: 0 32px 20px;
  display: grid;
  grid-template-columns: 100%;
  gap: 8px;
}
@media not screen and (min-width: 768px) {
  .gnav-childlist {
    margin-top: -1.0256410256vw;
    padding: 0 8.2051282051vw 5.1282051282vw;
    gap: 2.0512820513vw;
  }
}
.gnav-childlist > li > a {
  display: block;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  padding: 8px 16px;
}
@media not screen and (min-width: 768px) {
  .gnav-childlist > li > a {
    font-size: 3.5897435897vw;
    padding: 2.0512820513vw 4.1025641026vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gnav-childlist > li > a {
    transition: opacity 0.3s;
  }
  .gnav-childlist > li > a:hover {
    opacity: 0.7;
  }
}

.gnav-list__typo {
  font-family: "Barlow", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .gnav-list__typo {
    font-size: 7.6923076923vw;
  }
}
.gnav-list__typo--instagram:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  width: 20px;
  aspect-ratio: 1;
  background-color: #fff;
  mask-image: url("/wp/wp-content/themes/ovoveil/assets/img/icon/instagram.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  margin-right: 8px;
}

.footer {
  padding-block: 3.2rem 5.6rem;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-block: 3.2rem;
  }
}

.footer-inner {
  max-width: 122.4rem;
  padding-inline: 1.6rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.footer__logo img {
  max-width: 85.559px;
}

.footer__info {
  margin-top: 2.5rem;
}
.footer__info p {
  font-size: 1.8rem;
}
@media not screen and (min-width: 768px) {
  .footer__info p {
    font-size: 4.1025641026vw;
  }
}

@media not screen and (min-width: 768px) {
  .footer-right {
    font-size: 3.0769230769vw;
  }
}
.footer-right small {
  display: inline-block;
}

.l-contents {
  margin-inline: auto;
  padding: 96px 0;
  width: calc(100% - 60px);
  max-width: 1192px;
}
@media not screen and (min-width: 768px) {
  .l-contents {
    width: auto;
    padding: 12.3076923077vw 4.1025641026vw 16.4102564103vw;
  }
}

.c-hero {
  position: relative;
  margin-top: 60px;
}
@media not screen and (min-width: 768px) {
  .c-hero {
    margin-top: 15.3846153846vw;
  }
}
.c-hero--multi {
  margin-bottom: 0 !important;
}

.c-hero__contents {
  position: absolute;
  z-index: 5;
  top: 92px;
  left: 50%;
  width: calc(100% - 60px);
  max-width: 1192px;
  transform: translateX(-50%);
}
@media not screen and (min-width: 768px) {
  .c-hero__contents {
    top: 15.3846153846vw;
    transform: none;
    left: 0;
    width: 100%;
    padding: 0 4.1025641026vw;
  }
}

.c-hero__maintitle {
  position: relative;
  margin: 0 0 32px;
  padding-left: 24px;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
}
@media not screen and (min-width: 768px) {
  .c-hero__maintitle {
    margin: 0 0 4.1025641026vw;
    font-size: 4.6153846154vw;
  }
}
.c-hero__maintitle:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background-color: #444559;
}

.c-hero__subtitle {
  leading-trim: both;
  text-edge: cap;
  font-family: "Barlow", sans-serif;
  font-size: 12rem;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
}
@media not screen and (min-width: 768px) {
  .c-hero__subtitle {
    font-size: 20.5128205128vw;
    font-size: 20vw;
  }
}

.c-hero__bg {
  height: 390px;
  width: 100%;
  object-fit: cover;
}
@media not screen and (min-width: 768px) {
  .c-hero__bg {
    height: 100vw;
  }
}

.c-headline-v1 {
  margin: 0 0 32px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 180%;
}
@media not screen and (min-width: 768px) {
  .c-headline-v1 {
    margin-bottom: 6.1538461538vw;
    font-size: 6.4102564103vw;
  }
}

.c-headline-v2 {
  position: relative;
  margin-top: 100px;
  margin-bottom: 24px;
  padding-left: 22px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media not screen and (min-width: 768px) {
  .c-headline-v2 {
    margin-top: 16.4102564103vw;
    margin-bottom: 6.1538461538vw;
    padding-left: 5.641025641vw;
    padding-bottom: 2.5641025641vw;
    font-size: 5.641025641vw;
  }
}
.c-headline-v2 + * {
  margin-top: 0;
}
.c-headline-v2:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  width: 6px;
  height: calc(100% - 20px);
  background-color: #e8e5bc;
}
.c-headline-v2:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.c-headline-v3 {
  position: relative;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-left: 35px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
}
@media not screen and (min-width: 768px) {
  .c-headline-v3 {
    margin-top: 10.2564102564vw;
    margin-bottom: 6.1538461538vw;
    padding-left: 7.6923076923vw;
    font-size: 5.641025641vw;
  }
}
.c-headline-v3 + * {
  margin-top: 0;
}
.c-headline-v3:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 0;
  width: 23px;
  height: 28px;
  background: url("/wp/wp-content/themes/ovoveil/assets/img/icon/headline04.svg")
    0 0 no-repeat;
  background-size: contain;
}
@media not screen and (min-width: 768px) {
  .c-headline-v3:after {
    top: 2.5641025641vw;
    width: 4.8717948718vw;
    height: 8.4615384615vw;
  }
}

.c-leadtext {
  margin-top: 1em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .c-leadtext {
    font-size: 4.6153846154vw;
    line-height: 180%;
  }
}

.c-paragraph {
  margin-top: 0.8em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .c-paragraph {
    font-size: 4.6153846154vw;
  }
}
.c-paragraph--space {
  line-height: 250%;
}
.c-paragraph--small {
  font-size: 1.8rem;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .c-paragraph--small {
    font-size: 4.1025641026vw;
  }
}

.c-linklist {
  display: grid;
  margin-top: 1em;
  font-size: 2rem;
  font-weight: 400;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .c-linklist {
    font-size: 4.6153846154vw;
  }
}
.c-linklist > li > a {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.c-linklist > li > a:before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #444559;
}
.c-linklist > li > a:after {
  position: relative;
  top: -3px;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border-top: 1px solid #444559;
  border-right: 1px solid #444559;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .c-linklist > li > a:hover:before {
    display: none;
  }
}

.c-news__item {
  display: grid;
  align-items: start;
  grid-template-columns: 274px 1fr;
  gap: 0 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(68, 69, 89, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .c-news__item:hover .c-news__image img {
    transform: scale(1.05);
  }
  .c-news__item:hover .c-news__detail {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 768px) {
  .c-news__item {
    grid-template-columns: 35.8974358974vw 1fr;
    gap: 0 4.1025641026vw;
    margin-inline: -4.1025641026vw;
    padding: 8.2051282051vw 4.1025641026vw;
  }
}
.c-news__item:first-child {
  padding-top: 0;
}

.c-news__image {
  border: 1px solid #e3e3e5;
  overflow: hidden;
}
.c-news__image img {
  transition: transform 0.3s ease;
}

.c-news__detail {
  transition: opacity 0.3s ease;
}

.c-news__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 8px;
}
@media not screen and (min-width: 768px) {
  .c-news__header {
    margin: 0 0 2.0512820513vw;
  }
}

.c-news__category {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .c-news__category {
    padding: 1.7948717949vw 3.0769230769vw;
    font-size: 3.0769230769vw;
  }
}

.c-news__date {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .c-news__date {
    font-size: 3.0769230769vw;
  }
}

.c-news__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .c-news__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    font-size: 4.1025641026vw;
  }
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  position: relative;
  margin: 48px auto 0;
  width: 360px;
}
@media not screen and (min-width: 768px) {
  .c-pagination {
    gap: 0 1.5384615385vw;
    margin: 12.3076923077vw auto 0;
    width: auto;
  }
}

.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: normal;
  transition: opacity 0.3s ease;
}
.c-pagination__item.is-current {
  pointer-events: none;
  background-color: #444559;
  color: #fff;
}
.c-pagination__item.is-prev,
.c-pagination__item.is-next {
  position: absolute;
  z-index: 2;
  border: 1px solid #f1f1f1;
  background: #fff;
}
.c-pagination__item.is-prev:before,
.c-pagination__item.is-next:before {
  position: absolute;
  z-index: 2;
  top: calc(50% - 4px);
  left: 10px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: inline-block;
  transition: ease all 0.3s;
}
.c-pagination__item.is-prev {
  left: 0;
  transform: rotate(180deg);
}
.c-pagination__item.is-next {
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__item:link:hover {
    text-decoration: underline;
    opacity: 0.7;
  }
}

.c-breadcrumb {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  margin: 0 auto -60px;
  height: 60px;
  max-width: 1192px;
  width: calc(100% - 60px);
  overflow-x: hidden;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb {
    margin: 0 0 -60px;
    padding-inline: 4.1025641026vw;
    width: auto;
    overflow-x: auto;
  }
}

.c-breadcrumb-list {
  display: flex;
  align-items: center;
  color: rgba(68, 69, 89, 0.6);
  font-size: 1.2rem;
}
.c-breadcrumb-list > li {
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-width: 40em;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb-list > li {
    max-width: none;
  }
  .c-breadcrumb-list > li:last-child {
    padding-right: 15px;
  }
}
.c-breadcrumb-list > li > * {
  color: rgba(68, 69, 89, 0.6);
}
.c-breadcrumb-list > li > a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb-list > li > a {
    transition: opacity 0.3s ease;
  }
  .c-breadcrumb-list > li > a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.c-breadcrumb-list > li:not(:first-child):before {
  position: relative;
  z-index: 2;
  margin: 0 10px;
  top: -1px;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  border-top: 1px solid rgba(68, 69, 89, 0.6);
  border-right: 1px solid rgba(68, 69, 89, 0.6);
  content: "";
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .c-breadcrumb-list > li:not(:first-child):before {
    margin: 0 10px 0 6px;
    top: -1px;
    width: 6px;
    height: 6px;
  }
}
.c-breadcrumb-list > li:last-of-type > * {
  pointer-events: none;
  color: #444559;
}
.c-breadcrumb-list img {
  vertical-align: bottom;
  display: inline-block;
}

.c-breadcrumb__home:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("/wp/wp-content/themes/ovoveil/assets/img/icon/home.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button-wrap {
  margin-top: 40px;
}

.c-button {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 2rem 4rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  background: #444559;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .c-button {
    font-size: 4.1025641026vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-button {
    font-size: 1.6rem;
    transition: background-color 0.3s;
  }
  .c-button:hover {
    background-color: #7d7c8b;
  }
}

.c-media {
  display: flex;
  gap: 40px;
}
@media not screen and (min-width: 768px) {
  .c-media {
    gap: 8.2051282051vw;
    flex-direction: column;
  }
}
.c-media--right--pc {
  flex-direction: row-reverse;
}
@media not screen and (min-width: 768px) {
  .c-media--top--sp {
    flex-direction: column;
  }
}
@media not screen and (min-width: 768px) {
  .c-media--bottom--sp {
    flex-direction: column-reverse;
  }
}

.c-media__image {
  flex-shrink: 0;
  max-width: calc(var(--width, 400) / 1192 * 100%);
}
@media not screen and (min-width: 768px) {
  .c-media__image {
    max-width: 100%;
  }
}

.c-media__detail {
  flex-grow: 1;
}
.c-media__detail > :first-child {
  margin-top: 0;
}

.c-radiusimage {
  border-radius: 20px;
}
@media not screen and (min-width: 768px) {
  .c-radiusimage {
    border-radius: 5.1282051282vw;
  }
}

.contact {
  position: relative;
  z-index: 10;
  padding-block: 6.4rem;
  background: url("/wp/wp-content/themes/ovoveil/assets/img/common/contact_bg.webp")
    no-repeat center center/cover;
  background-size: cover;
  background-position: center center;
}
@media not screen and (min-width: 768px) {
  .contact {
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/common/contact_bg_sp.webp");
  }
}

.contact-inner {
  max-width: 100%;
  padding-inline: 4.5rem;
  margin-inline: auto;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .contact-inner {
    padding-inline: 3.5rem;
  }
}

.contact__icon {
  margin-inline: auto;
}

.contact__title {
  margin-top: 1.6rem;
  font-size: 2.8rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .contact__title {
    font-size: 5.1282051282vw;
  }
}

.contact__desc {
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .contact__desc {
    font-size: 4.6153846154vw;
  }
}

.contact__btn {
  margin-top: 3.2rem;
}
.contact__btn a {
  padding: 2rem 4rem;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  border-radius: 100px;
  background: #444559;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 29.6rem;
}
.contact__btn a:hover {
  opacity: 0.7;
}

.single-wrapper {
  margin: 0 auto;
  max-width: 988px;
}

.single-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 8px;
}
@media not screen and (min-width: 768px) {
  .single-header {
    margin: 0 0 2.0512820513vw;
  }
}

.single-header__category {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .single-header__category {
    padding: 1.7948717949vw 3.0769230769vw;
    font-size: 3.0769230769vw;
  }
}

.single-header__date {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .single-header__date {
    font-size: 3.0769230769vw;
  }
}

.single-pagetitle {
  margin: 0 0 64px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 180%;
}
@media not screen and (min-width: 768px) {
  .single-pagetitle {
    margin: 0 0 8.2051282051vw;
    font-size: 6.4102564103vw;
  }
}

.single-kv {
  margin: 0 0 64px;
}
@media not screen and (min-width: 768px) {
  .single-kv {
    margin: 0 -4.1025641026vw 8.2051282051vw;
  }
}
.single-kv img {
  border: 1px solid #e3e3e5;
  width: 100%;
  height: auto;
}

.single-editor {
  font-size: 20px;
}
@media not screen and (min-width: 768px) {
  .single-editor {
    font-size: 4.6153846154vw;
  }
}
.single-editor > :first-child {
  margin-top: 0 !important;
}
.single-editor h2.wp-block-heading {
  margin-top: 64px;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 36px;
  font-weight: 700;
  line-height: 180%;
}
@media not screen and (min-width: 768px) {
  .single-editor h2.wp-block-heading {
    margin-top: 8.2051282051vw;
    margin-bottom: 8.2051282051vw;
    font-size: 6.4102564103vw;
  }
}
.single-editor h2.wp-block-heading + * {
  margin-top: 0;
}
.single-editor h3.wp-block-heading {
  position: relative;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-left: 22px;
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media not screen and (min-width: 768px) {
  .single-editor h3.wp-block-heading {
    margin-top: 8.2051282051vw;
    margin-bottom: 6.1538461538vw;
    padding-left: 5.641025641vw;
    padding-bottom: 2.5641025641vw;
    font-size: 5.641025641vw;
  }
}
.single-editor h3.wp-block-heading + * {
  margin-top: 0;
}
.single-editor h3.wp-block-heading:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  width: 6px;
  height: calc(100% - 20px);
  background-color: #e8e5bc;
}
.single-editor h3.wp-block-heading:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.single-editor h4.wp-block-heading {
  position: relative;
  margin-top: 64px;
  margin-bottom: 24px;
  padding-left: 35px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
}
@media not screen and (min-width: 768px) {
  .single-editor h4.wp-block-heading {
    margin-top: 8.2051282051vw;
    margin-bottom: 6.1538461538vw;
    padding-left: 8.9743589744vw;
    font-size: 5.641025641vw;
  }
}
.single-editor h4.wp-block-heading + * {
  margin-top: 0;
}
.single-editor h4.wp-block-heading:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 0;
  width: 23px;
  height: 28px;
  background: url("/wp/wp-content/themes/ovoveil/assets/img/icon/headline04.svg")
    0 0 no-repeat;
  background-size: contain;
}
@media not screen and (min-width: 768px) {
  .single-editor h4.wp-block-heading:after {
    top: 1.2820512821vw;
    width: 5.8974358974vw;
    height: 7.1794871795vw;
  }
}
.single-editor h5.wp-block-heading {
  margin-top: 64px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 2.2rem;
}
@media not screen and (min-width: 768px) {
  .single-editor h5.wp-block-heading {
    margin-top: 8.2051282051vw;
    margin-bottom: 6.1538461538vw;
    font-size: 5.1282051282vw;
  }
}
.single-editor h5.wp-block-heading + * {
  margin-top: 0;
}
.single-editor p {
  margin-top: 64px;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .single-editor p {
    margin-top: 8.2051282051vw;
  }
}
.single-editor p a {
  text-decoration: underline;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .single-editor p a:hover {
    text-decoration: none;
  }
}
.single-editor ul.wp-block-list,
.single-editor ol.wp-block-list {
  margin: 64px 0 0;
  list-style: none;
}
@media not screen and (min-width: 768px) {
  .single-editor ul.wp-block-list,
  .single-editor ol.wp-block-list {
    margin-top: 8.2051282051vw;
  }
}
.single-editor ul.wp-block-list > li,
.single-editor ol.wp-block-list > li {
  position: relative;
  padding-left: 1em;
}
.single-editor ul.wp-block-list > li:nth-child(n + 2),
.single-editor ol.wp-block-list > li:nth-child(n + 2) {
  margin-top: 0.5em;
}
.single-editor ul.wp-block-list > li:before,
.single-editor ol.wp-block-list > li:before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  content: "";
  display: block;
  color: #444559;
}
.single-editor .wp-block-image,
.single-editor .wp-block-gallery {
  margin: 64px 0 0;
}
@media not screen and (min-width: 768px) {
  .single-editor .wp-block-image,
  .single-editor .wp-block-gallery {
    margin-top: 8.2051282051vw;
  }
}
.single-editor ul.wp-block-list > li:before {
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #444559;
}
.single-editor ol.wp-block-list {
  counter-reset: number;
}
.single-editor ol.wp-block-list > li {
  padding-left: 1em;
  counter-increment: number;
}
.single-editor ol.wp-block-list > li:before {
  content: counter(number) ".";
  font-weight: 500;
}
.single-editor .wp-block-table table {
  margin: 64px 0 0;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 80%;
}
@media not screen and (min-width: 768px) {
  .single-editor .wp-block-table table {
    margin-top: 8.2051282051vw;
    font-size: 70%;
  }
}
.single-editor .wp-block-table table th {
  font-weight: bold;
}
.single-editor .wp-block-table table th,
.single-editor .wp-block-table table td {
  padding: 10px;
  border: 1px solid #ccc;
}
@media not screen and (min-width: 768px) {
  .single-editor .wp-block-table table th,
  .single-editor .wp-block-table table td {
    padding: 6px;
  }
}
.single-editor .wp-block-buttons {
  margin-top: 64px;
}
@media not screen and (min-width: 768px) {
  .single-editor .wp-block-buttons {
    margin-top: 8.2051282051vw;
  }
}
.single-editor .wp-block-button__link {
  background-color: #444559;
}
.single-editor .wp-block-image figcaption {
  font-size: 70%;
}

.feature-hero {
  position: relative;
}

[data-current="environmentally-friendly"] .feature-hero__image:nth-child(1) {
  opacity: 1;
}
.feature-hero__image:nth-child(2),
.feature-hero__image:nth-child(3) {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
[data-current="smooth-texture"] .feature-hero__image:nth-child(2) {
  opacity: 1;
}
[data-current="environmentally-friendly"] .feature-hero__image:nth-child(3) {
  z-index: 3;
  opacity: 1;
}

.feature-tab {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid #ccc;
}
@media not screen and (min-width: 768px) {
  .feature-tab {
    margin-top: 0;
    padding: 0 4.1025641026vw;
  }
}

.feature-tab__header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid #ccc;
  margin: 0 auto -1px;
  max-width: 1192px;
}

.feature-tab__header__item {
  position: relative;
  padding: 15px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background-color: #444559;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  cursor: pointer;
}
@media not screen and (min-width: 768px) {
  .feature-tab__header__item {
    line-height: 1.5;
    padding: 2.5641025641vw 1.2820512821vw;
    font-size: 3.3333333333vw;
  }
}
.feature-tab__header__item.is-current {
  border-bottom-color: #fff;
  background-color: #fff;
  color: #444559;
  pointer-events: none;
}

.feature-tab__body {
  padding-top: 100px;
}

.feature-tab__panel {
  display: none;
}
.feature-tab__panel.is-current {
  display: block;
}

.feature-material {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media not screen and (min-width: 768px) {
  .feature-material {
    grid-template-columns: repeat(2, 1fr);
    gap: 6.1538461538vw 4.1025641026vw;
  }
}

.feature-material__desc {
  margin-top: 8px;
}
@media not screen and (min-width: 768px) {
  .feature-material__desc {
    margin-top: 1.0256410256vw;
  }
}
.feature-material__desc dt {
  font-size: 2rem;
  font-weight: 500;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .feature-material__desc dt {
    font-size: 5.1282051282vw;
  }
}
.feature-material__desc dd {
  margin-top: 4px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
}
@media not screen and (min-width: 768px) {
  .feature-material__desc dd {
    margin-top: 1.0256410256vw;
    font-size: 4.1025641026vw;
  }
}

.feature-singleimage {
  margin-top: 40px;
}
@media not screen and (min-width: 768px) {
  .feature-singleimage {
    margin-top: 8.2051282051vw;
  }
}

.feature-awards {
  display: grid;
  align-items: center;
  grid-template-columns: 75px 1fr;
  gap: 24px;
  margin-top: 32px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 16px;
  font-size: 1.6rem;
  max-width: 470px;
}
@media not screen and (min-width: 768px) {
  .feature-awards {
    grid-template-columns: 20.5128205128vw 1fr;
    margin-top: 8.2051282051vw;
    gap: 6.1538461538vw;
    padding: 4.1025641026vw;
    font-size: 4.1025641026vw;
  }
}

.feature-awards__detail {
  font-weight: 500;
}

.feature-desc {
  display: grid;
  grid-template-columns: 6em 1fr;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .feature-desc {
    padding: 2.5641025641vw 0;
    font-size: 4.6153846154vw;
  }
}
.feature-desc + .feature-desc {
  border-top: none;
}
.feature-desc dt {
  font-weight: 500;
}

.about-intro-layout {
  display: flex;
  gap: 0 40px;
  margin-right: -126px;
  margin-bottom: 40px;
}
@media not screen and (min-width: 768px) {
  .about-intro-layout {
    flex-direction: column;
    margin: 0;
    margin-bottom: 16.4102564103vw;
  }
}

.about-intro-layout__detail {
  flex-grow: 1;
}

.about-intro-layout__image {
  position: relative;
  flex-shrink: 0;
  width: 44.596651446%;
  margin-bottom: -90px;
}
@media not screen and (min-width: 768px) {
  .about-intro-layout__image {
    margin-top: 12.3076923077vw;
    margin-left: -4.1025641026vw;
    margin-bottom: 0;
    width: auto;
  }
}
.about-intro-layout__image img:nth-child(1) {
  width: 78.4982935154%;
}
@media not screen and (min-width: 768px) {
  .about-intro-layout__image img:nth-child(1) {
    width: 66.6666666667vw;
  }
}
.about-intro-layout__image img:nth-child(2) {
  position: relative;
  z-index: 5;
  margin-top: -18%;
  margin-left: auto;
  width: 47.7815699659%;
}
@media not screen and (min-width: 768px) {
  .about-intro-layout__image img:nth-child(2) {
    width: 37.9487179487vw;
  }
}

.about-thought {
  padding: 40px 0 56px;
  background: rgba(243, 241, 211, 0.6);
}
@media not screen and (min-width: 768px) {
  .about-thought {
    padding-top: 8.2051282051vw;
    padding-bottom: 12.3076923077vw;
  }
}

.about-aside {
  margin-top: 100px;
}
@media not screen and (min-width: 768px) {
  .about-aside {
    margin-top: 16.4102564103vw;
  }
}

.top-section {
  width: 100%;
  height: 100vh;
}

.top-mv {
  position: relative;
  display: grid;
  align-items: center;
}

.top-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 2000ms cubic-bezier(0.74, 0.24, 0.695, 0.63);
}
.top-mv__bg.is-active {
  opacity: 1;
}

.top-mv__bg01 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/mv_bg01.webp");
}

.top-mv__bg02 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/mv_bg02.webp");
}

.top-mv__bg03 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/mv_bg03.webp");
}

.top-mv__bg04 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/mv_bg04.webp");
}

.top-mv__inner {
  width: 100%;
  height: 100vh;
}

.top-mv__blur {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.top-mv-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top-mv-top {
  text-align: center;
  color: #fff;
  height: 100%;
  display: grid;
  place-content: center;
  width: calc(100% - 6.4rem);
  padding-top: 60px;
  margin-inline: auto;
}
.top-mv-top img {
  margin-inline: auto;
}

.top-mv-top__inner {
  position: relative;
}

.top-mv-top__desc {
  margin-top: 4rem;
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .top-mv-top__desc {
    margin-top: 3.2rem;
  }
}

.top-mv-top__scroll {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: clamp(3.2rem, -12.831rem + 24.034vh, 8.8rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
}
.top-mv-top__scroll:hover {
  opacity: 0.7;
}
.top-mv-top__scroll span {
  position: relative;
  color: #444559;
  width: 10.4rem;
  height: 10.4rem;
  line-height: 10.4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
}
.top-mv-bottom {
  position: relative;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top-mv-bottom img {
  margin-inline: auto;
  width: 100%;
  max-width: 144rem;
  opacity: 0;
}

.top-mv-bottom__text-wrap {
  opacity: 0;
  padding-inline: 3.2rem;
}
@media not screen and (min-width: 768px) {
  .top-mv-bottom__text-wrap {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
  }
}

.top-mv-bottom__title {
  font-size: 4rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .top-mv-bottom__title {
    font-size: 6.1538461538vw;
  }
}

.top-mv-bottom__desc {
  margin-top: 3.6rem;
  font-size: 2rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .top-mv-bottom__desc {
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }
}

.top-mv-bottom__note {
  margin-top: 3.6rem;
  font-size: 1.5rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .top-mv-bottom__note {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
}

.top-flow {
  overflow: hidden;
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .top-flow {
    padding-inline: min(4rem, 3.90625vw);
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/flow_bg.webp");
    background-size: cover;
    background-position: center center;
  }
}
@media screen and (min-width: 1440px) {
  .top-flow {
    padding-inline: min(12.4rem, 8.6111111111vw);
  }
}

.top-flow-inner {
  max-width: 119rem;
  margin-inline: auto;
  height: 100%;
  position: relative;
}

.top-flow-left {
  padding-block: 11vh 7vh;
  width: 100%;
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .top-flow-left {
    justify-content: flex-start;
    padding-block: 0;
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/flow_bg.webp");
    background-size: cover;
    background-position: center center;
  }
}

@media not screen and (min-width: 768px) {
  .top-flow__text-wrap {
    padding-block: 7.6rem 3.4rem;
    padding-inline: 3.2rem;
  }
}

.top-flow__title {
  font-size: 3.6rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .top-flow__title {
    font-size: 6.1538461538vw;
  }
}

.top-flow__desc {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .top-flow__desc {
    font-size: 1.8rem;
  }
}

.top-flow__button {
  margin-top: 25px;
  width: fit-content;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  filter: drop-shadow(4px 4px 25px rgba(0, 0, 0, 0.06));
  aspect-ratio: 375/212;
}
@media not screen and (min-width: 768px) {
  .top-flow__button {
    margin-top: 0;
    padding-bottom: 7.6923076923vw;
    border-radius: 0;
  }
}

.top-flow__button button {
  position: relative;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .top-flow__button button:hover {
    opacity: 0.7;
  }
}
.top-flow__button button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 75px;
  height: 75px;
  background: url("/wp/wp-content/themes/ovoveil/assets/img/icon/play.svg")
    no-repeat center center/contain;
}
.top-flow__button button img {
  width: 100%;
  max-width: 37.5rem;
}
@media not screen and (min-width: 768px) {
  .top-flow__button button img {
    max-width: 100%;
  }
}

.top-flow-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.top-flow-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.top-flow-modal__inner {
  position: relative;
  width: 100%;
  max-width: 85.4rem;
  max-height: 60rem;
  border-radius: 10px;
  padding: 4rem 3.5rem;
}
@media not screen and (min-width: 768px) {
  .top-flow-modal__inner {
    padding: 0;
  }
}

.top-flow-modal__close {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
}
@media not screen and (min-width: 768px) {
  .top-flow-modal__close {
    bottom: 98%;
    top: auto;
    max-width: 6rem;
  }
}
.top-flow-modal__close:hover {
  opacity: 0.7;
}

.top-flow-modal__video {
  width: 100%;
  filter: drop-shadow(4px 4px 25px rgba(0, 0, 0, 0.06));
}
.top-flow-modal__video video {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.top-flow-right {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(90%);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(30px);
}
@media not screen and (min-width: 768px) {
  .top-flow-right {
    left: 0;
    transform: translateY(120%);
  }
}

.top-flow-steps {
  padding: 4rem 3.2rem;
  width: fit-content;
  margin: 0 auto;
}

.top-flow-step {
  display: flex;
  gap: 2.2rem;
}
.top-flow-step:not(:last-child) {
  margin-bottom: 3.2rem;
}
.top-flow-step:not(:last-child) .top-flow-step__label::after {
  content: "";
  margin-top: 2.4rem;
  width: 1px;
  flex-grow: 1;
  background-color: #000;
}

.top-flow-step__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Barlow", sans-serif;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  flex-grow: 1;
}
.top-flow-step__label span:first-child {
  font-size: 1.3rem;
  font-weight: 500;
}
.top-flow-step__label span:last-child {
  font-size: 4.5rem;
  font-weight: 300;
}

.top-flow-step__content {
  text-align: center;
  padding-bottom: 0.4rem;
}
.top-flow-step__content img {
  max-width: 21.6rem;
  border-radius: 16px;
}
.top-flow-step__content p {
  margin-top: 0.8rem;
  line-height: 1.4;
}

.top-feature {
  background-size: cover;
  background-position: center center;
  display: grid;
  place-items: center;
}

.top-feature01 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature01_bg.webp");
}
@media not screen and (min-width: 768px) {
  .top-feature01 {
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature01_bg_sp.webp");
  }
}

.top-feature02 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature02_bg.webp");
}
@media not screen and (min-width: 768px) {
  .top-feature02 {
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature02_bg_sp.webp");
  }
}

.top-feature03 {
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature03_bg.webp");
}
@media not screen and (min-width: 768px) {
  .top-feature03 {
    background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature03_bg_sp.webp");
  }
}

.top-feature-inner {
  padding-block: 4rem;
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: 6rem;
  transform: translateY(30%);
}

.top-feature-content__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 58rem;
  aspect-ratio: 580/680;
  background-image: url("/wp/wp-content/themes/ovoveil/assets/img/feature_content.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: drop-shadow(4px 4px 25px rgba(0, 0, 0, 0.06));
}
@media not screen and (min-width: 768px) {
  .top-feature-content__bg {
    width: calc(100% + 9rem);
    aspect-ratio: 480/562;
  }
}

.top-feature-content {
  position: relative;
  text-align: center;
  padding-inline: 3.2rem;
  max-width: 58rem;
}

.top-feature__label {
  color: #8aa67c;
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.top-feature__label::before {
  content: "";
  position: absolute;
  display: block;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 1px;
  background-color: currentColor;
}

.top-feature__title {
  margin-top: 1.6rem;
  font-size: 3.6rem;
  font-weight: 500;
}
@media not screen and (min-width: 768px) {
  .top-feature__title {
    font-size: 2.4rem;
  }
}

.top-feature__desc {
  margin-top: 3.6rem;
  font-size: 2rem;
  line-height: 2;
}
@media not screen and (min-width: 768px) {
  .top-feature__desc {
    font-size: 1.8rem;
  }
}

.top-feature-award {
  margin-top: 5.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media not screen and (min-width: 768px) {
  .top-feature-award {
    margin-top: 1.6rem;
  }
}

.top-feature-award__logo {
  max-width: 10.9rem;
}

.top-feature-award__desc {
  margin-top: 2.1rem;
}

.top-button-wrap {
  margin-top: 20px;
  display: flex;
}
@media not screen and (min-width: 768px) {
  .top-button-wrap {
    margin-top: 4.1025641026vw;
  }
}
.top-button-wrap--feature {
  margin-top: 36px;
  justify-content: center;
}
@media not screen and (min-width: 768px) {
  .top-button-wrap--feature {
    margin-top: 4.1025641026vw;
  }
}
.top-button-wrap--news {
  position: absolute;
  z-index: 5;
  top: 15px;
  right: 0;
  margin: 0;
}
@media not screen and (min-width: 768px) {
  .top-button-wrap--news {
    position: static;
    margin-top: 8.2051282051vw;
  }
}

.top-news {
  margin-top: 100vh;
  padding: 64px 0 160px;
}
@media not screen and (min-width: 768px) {
  .top-news {
    padding: 16.4102564103vw 0;
  }
}

.top-news-inner {
  position: relative;
  width: calc(100% - 30px);
  max-width: 119rem;
  margin-inline: auto;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .top-news-inner {
    width: auto;
    padding-inline: 4.1025641026vw;
  }
}

.top-news-headline {
  margin-bottom: 40px;
}
@media not screen and (min-width: 768px) {
  .top-news-headline {
    margin-bottom: 8.2051282051vw;
  }
}

.top-news-headline__main {
  color: #444559;
  font-family: "Barlow", sans-serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .top-news-headline__main {
    font-size: 8.2051282051vw;
  }
}

.top-news-headline__sub {
  position: relative;
  margin: 16px 0 0;
  padding-left: 18px;
  color: #444559;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .top-news-headline__sub {
    margin: 4.1025641026vw 0 0;
    font-size: 4.1025641026vw;
  }
}
.top-news-headline__sub::before {
  content: "";
  position: absolute;
  display: block;
  top: 55%;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #444559;
}

.top-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media not screen and (min-width: 768px) {
  .top-news-list {
    grid-template-columns: 100%;
    gap: 8.2051282051vw;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-news-list__item:hover .top-news-list__thumbnail img {
    transform: scale(1.05);
  }
  .top-news-list__item:hover .top-news-list__detail {
    opacity: 0.7;
  }
}

.top-news-list__thumbnail {
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid #e3e3e5;
}
.top-news-list__thumbnail img {
  transition: transform 0.3s ease;
}

.top-news-list__detail {
  transition: opacity 0.3s ease;
}

.top-news-list__util {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 8px;
}
@media not screen and (min-width: 768px) {
  .top-news-list__util {
    margin: 0 0 2.0512820513vw;
  }
}

.top-news-list__category {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .top-news-list__category {
    padding: 1.7948717949vw 3.0769230769vw;
    font-size: 3.5897435897vw;
  }
}

.top-news-list__item__date {
  font-family: "Barlow", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 100%;
}
@media not screen and (min-width: 768px) {
  .top-news-list__item__date {
    font-size: 3.5897435897vw;
  }
}

.top-news-list__title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 200%;
}
@media not screen and (min-width: 768px) {
  .top-news-list__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    font-size: 4.6153846154vw;
  }
}

.is-hidden {
  display: none;
}

@media not screen and (min-width: 768px) {
  .u-is-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-is-hidden-pc {
    display: none;
  }
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-bold {
  font-weight: 700;
}

.u-color-orange {
  color: #e06626;
}

.u-fullpage {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .u-fullpage {
    margin-inline: -30px;
    padding-inline: 30px;
  }
}
