@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Georgia;
  src: url("./public/fonts/Georgia-Regular.ttf") format("truetype"), url("./public/fonts/Georgia-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: Georgia;
  src: url("./public/fonts/Georgia-Italic.ttf") format("truetype"), url("./public/fonts/Georgia-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Georgia;
  src: url("./public/fonts/Georgia-Bold.ttf") format("truetype"), url("./public/fonts/Georgia-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: Georgia;
  src: url("./public/fonts/Georgia-BoldItalic.ttf") format("truetype"), url("./public/fonts/Georgia-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./public/fonts/HelveticaNeue-Thin.otf") format("opentype"), url("./public/fonts/HelveticaNeue-Thin.woff2") format("woff2");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./public/fonts/HelveticaNeue-Light.otf") format("opentype"), url("./public/fonts/HelveticaNeue-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./public/fonts/HelveticaNeue-Roman.otf") format("opentype"), url("./public/fonts/HelveticaNeue-Roman.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./public/fonts/HelveticaNeue-Medium.otf") format("opentype"), url("./public/fonts/HelveticaNeue-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("./public/fonts/HelveticaNeue-Bold.otf") format("opentype"), url("./public/fonts/HelveticaNeue-Bold.woff2") format("woff2");
  font-weight: 700;
}
html {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #303030;
  scroll-behavior: smooth;
}

picture,
img {
  display: block;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image--100 {
  height: 100%;
}
.image--auto {
  width: auto;
}
.image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.title {
  font: 700 5.6rem "Georgia", serif;
  color: #000;
  line-height: 1.268em;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 15px;
    line-height: 65px;
    letter-spacing: normal;
  }
}
.title--sm {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 55px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .title--sm {
    font-size: 15px;
    line-height: 65px;
  }
}

.link {
  font-size: 2rem;
  line-height: 1.4em;
  letter-spacing: 2px;
  color: #000;
  padding: 0 0 9px 3px;
  width: 323px;
  border-bottom: 3px solid #000;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .link {
    font-size: 14px;
    line-height: 1.3963636364em;
    letter-spacing: 1.37px;
    padding: 0 0 6px 2px;
    width: 222px;
    border-width: 2px;
  }
}
.link::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 10px;
  height: 10px;
  border: 0.5px solid #000;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .link::after {
    right: 9px;
    bottom: 12px;
    width: 7px;
    height: 7px;
    border-width: 0.34px;
  }
}
.link::before {
  content: "";
  width: 100%;
  height: 3px;
  background: #b3c0db;
  position: absolute;
  left: 0;
  bottom: -3px;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .link::before {
    height: 2px;
    bottom: -2px;
  }
}
.link:hover {
  color: #b3c0db;
}
.link:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.link:hover::after {
  border-color: #b3c0db;
  background-color: #b3c0db;
}

.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 30px 50px;
}
@media screen and (max-width: 980px) {
  .header__wrapper {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 18px 7%;
  }
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 18px;
  }
}
.header__logo {
  width: 150px;
}
@media screen and (max-width: 980px) {
  .header__logo {
    z-index: 2;
    margin-top: 10px;
  }
}
.header__btns {
  gap: 24px;
}
.header__btns--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 980px) {
  .header__btns--pc {
    display: none;
  }
}
.header__btns--sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__btns--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0 50px;
  }
}
.header__btn {
  position: relative;
  min-width: 203px;
  height: 48px;
  padding: 15px;
  background-color: #b3c0db;
  border: 0.5px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .header__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: 54px;
    padding: 15px 35px;
    background-color: transparent;
  }
}
.header__btn::before {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("./public/img/header/btn-deco.svg") no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 980px) {
  .header__btn::after {
    right: 35px;
  }
}
.header__btn span.btn-text {
  font-family: "Georgia", serif;
  color: #fff;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.header__btn span.btn-text.adjust-left {
  margin-left: -15px;
}
.header__btn:hover {
  background-color: #7f8494;
}
.header__btn:hover::before {
  opacity: 0.5;
}
.header__btn:hover::after {
  width: 16px;
  height: 16px;
  background-image: url("./public/img/icons/arrow-btn.svg");
}
.header__btn--pink {
  background-color: #dbbbd8;
}
.header__menu {
  position: absolute;
  top: 110px;
  right: 50px;
}
@media screen and (max-width: 980px) {
  .header__menu {
    z-index: -1;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media screen and (max-width: 980px) {
  .header__menu.is-open {
    z-index: 1;
    top: 0;
    left: 0;
    right: unset;
    width: 100%;
    padding-top: 120px;
    background-color: #b3c0db;
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .header__menu.is-open {
    padding-top: 100px;
  }
}
.header__menu-deco {
  display: none;
}
@media screen and (max-width: 980px) {
  .header__menu-deco {
    display: block;
    width: 100%;
    margin-top: auto;
  }
}
.header__menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  counter-reset: menu-item;
}
@media screen and (max-width: 980px) {
  .header__menu-content {
    padding: 0 7%;
  }
}
.header__menu-item {
  counter-increment: menu-item;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 980px) {
  .header__menu-item {
    gap: 14px;
  }
}
.header__menu-item span.menu-ctr {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__menu-item span.menu-ctr::before {
  content: "0" counter(menu-item);
  position: relative;
  color: #000;
  font-size: 1rem;
}
@media screen and (max-width: 980px) {
  .header__menu-item span.menu-ctr::before {
    font-size: 16px;
  }
}
.header__menu-item span.menu-label {
  color: #000;
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .header__menu-item span.menu-label {
    font-size: 20px;
  }
}
.header__hamburger {
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .header__hamburger {
    position: relative;
    z-index: 2 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 65px;
    height: 65px;
    background-color: #b3c0db;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__hamburger span {
  width: 34px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 980px) {
  .header__hamburger.is-open {
    margin-top: -10px;
    margin-right: -10px;
    background-color: transparent;
  }
}
.header__hamburger.is-open::before {
  content: none;
}
.header__hamburger.is-open span {
  position: absolute;
  top: 32px;
}
.header__hamburger.is-open span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.is-open span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  z-index: 1;
  min-width: 400px;
  height: 64px;
  padding: 15px;
  background-color: #b3c0db;
  border: 0.5px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    min-width: unset;
  }
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("./public/img/top-upper/texture-bg.png") repeat top/220px 220px;
  mix-blend-mode: soft-light;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("./public/img/header/btn-deco.svg") no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn span.btn-text {
  font-family: "Georgia", serif;
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
}
.btn span.btn-text.adjust-left {
  margin-left: -15px;
}
.btn:hover {
  background-color: #7f8494;
}
.btn:hover::before {
  opacity: 0.5;
}
.btn:hover::after {
  width: 20px;
  height: 20px;
  background-image: url("./public/img/icons/arrow-btn.svg");
}

.container {
  margin-inline: auto;
  padding-inline: 3.82%;
  max-width: calc(1330px + 7.64%);
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline: 6.36%;
    max-width: 100% !important;
  }
}
.container--w1240 {
  padding-inline: 6.95%;
  max-width: calc(1240px + 13.9%);
}
@media screen and (max-width: 767px) {
  .container--w1240 {
    padding-inline: 3.31%;
  }
}
.container--w1146 {
  padding-inline: 10.21%;
  max-width: calc(1146px + 20.42%);
}
@media screen and (max-width: 767px) {
  .container--w1146 {
    padding-inline: 6.87%;
  }
}

.footer__contact {
  padding-block: 101px 130px;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    padding-block: 87px 0;
  }
}
.footer__contact-text {
  padding: 0 0 24px 3px;
  font-family: "Georgia", serif;
  font-size: 6.8rem;
  line-height: 1.1764705882em;
}
@media screen and (max-width: 767px) {
  .footer__contact-text {
    padding: 0 0 60px;
    font-size: 75px;
    line-height: normal;
  }
}
.footer__contact-btn {
  font-size: 2.6rem;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn {
    min-width: 100%;
    height: 53px;
    font-size: 17px;
    padding-left: 35px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__contact-btn::after {
  top: 50%;
  right: 51px;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .footer__contact-btn::after {
    right: 45px;
    width: 10px;
    height: 10px;
  }
}
.footer__wrapper {
  padding-block: 130px 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding-block: 44px 37px;
  }
}
.footer__logo {
  margin-bottom: 27px;
  padding-bottom: 27px;
  border-bottom: 1.5px solid #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    padding-bottom: 21px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    height: 18px;
  }
}
.footer__info {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.1428571429em;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .footer__info {
    font-size: 14px;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 13px;
  width: 275px;
  counter-reset: num;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-block: 47px 54px;
  }
}
.footer__nav-link {
  display: block;
  font-family: "Georgia", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.footer__nav-link:not(:last-child) {
  padding-bottom: 25px;
}
.footer__nav-link::before {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  display: inline-block;
  margin-right: 8px;
}
.footer__material {
  margin-top: 8px;
  min-width: 403px;
}
@media screen and (max-width: 767px) {
  .footer__material {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
    min-width: 100%;
    padding-left: 35px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 53px;
  }
}
.footer__material::after {
  right: 54px;
}
@media screen and (max-width: 767px) {
  .footer__material::after {
    right: 45px;
  }
}
.footer__material-text {
  font-family: "Helvetica Neue", helvetica, sans-serif !important;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .footer__material-text {
    font-size: 17px;
  }
}
.footer__copyright {
  position: relative;
  width: 100%;
  background-color: #fff;
}
.footer__copyright-bg {
  width: 100%;
  height: 36.74%;
}
@media screen and (max-width: 767px) {
  .footer__copyright-bg {
    height: 100%;
  }
}
.footer__copyright-text {
  display: block;
  padding-block: 15.5px;
  font-family: "Georgia", serif;
  font-size: 1.4rem;
  line-height: 1.6428571429em;
  text-align: center;
  color: #b3c0db;
}
@media screen and (max-width: 767px) {
  .footer__copyright-text {
    padding-block: 18px 42px;
    font-size: 10px;
    line-height: 2.3em;
  }
}

.banner {
  margin: 0 55px 85px;
  padding-bottom: 15px;
  border-bottom: 1.5px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .banner {
    margin: 0 0 50px;
    padding: 0 26px;
    border-bottom: none;
  }
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("./public/img/banner/banner-bg.svg") center/contain no-repeat;
  z-index: -1;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .banner::before {
    height: 409px;
    bottom: -55px;
    background: url("./public/img/banner/banner-bg-sp.svg") center/cover no-repeat;
  }
}
.banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 434px;
  padding-top: 161px;
  max-width: 1064px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .banner__container {
    height: 309px;
    padding-top: 140px;
  }
}
@media screen and (max-width: 767px) {
  .banner__title {
    font-size: 32px;
  }
}
.banner__text {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .banner__text {
    font-size: 15px;
  }
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-block: 40px 10px;
    border-bottom: 1.5px solid #fff;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.breadcrumbs__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.1rem;
  font-family: "Georgia", serif;
  gap: 3px;
  margin-left: 3px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 9px;
  }
}
.breadcrumbs__link:not(:first-child)::before {
  content: "/";
}

.top {
  position: relative;
}
.top__mv {
  padding: 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .top__mv {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 590px) {
  .top__mv {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
.top__mv-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0 7%;
  margin: 0 auto;
  max-width: calc(1200px + 14%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__mv-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-wrapper {
    padding: 0;
  }
}
.top__mv-overflow.svg1 {
  position: relative;
}
.top__mv-overflow.subtext {
  position: relative;
}
.top__mv-overflow.tagline {
  position: absolute;
  top: -20px;
  right: 100px;
  padding: 50px 0;
}
@media screen and (max-width: 980px) {
  .top__mv-overflow.tagline {
    position: relative;
    top: unset;
    right: unset;
    -webkit-transform: none;
            transform: none;
    -ms-flex-item-align: center;
        align-self: center;
    width: 100%;
    margin-bottom: 50px;
    padding-top: 0;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.top__mv-text {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -100px;
}
@media screen and (max-width: 980px) {
  .top__mv-text {
    padding: 0 7%;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-text {
    margin-top: -50px;
  }
}
.top__mv-text-deco {
  position: absolute;
  z-index: -1;
  top: 60%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 270px;
  background: url("./public/img/top-upper/mv-bg-deco.png") no-repeat center/contain;
}
@media screen and (max-width: 980px) {
  .top__mv-text-deco {
    z-index: -2;
    top: -100px;
    left: 50%;
    width: 100vw;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background-image: url("./public/img/top-upper/mv-bg-deco-sp.png");
    background-size: cover;
  }
}
.top__mv-text-svg {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.top__mv-text-svg img {
  max-width: 100%;
  height: auto;
}
.top__mv-text-svg--first {
  position: relative;
  max-width: 48vw;
  margin-bottom: 15px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .top__mv-text-svg--first {
    padding-top: 0;
  }
}
.top__mv-text-svg--second {
  margin-bottom: 30px;
}
.top__mv-svg-deco {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 80px;
  width: 234px;
  height: 234px;
  background: url("./public/img/top-upper/mv-line1-deco.svg") no-repeat center/contain;
}
@media screen and (max-width: 980px) {
  .top__mv-svg-deco {
    display: none;
  }
}
.top__mv-tagline {
  color: #000;
  font-size: 3.6rem;
  line-height: 1.1666666667em;
  letter-spacing: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .top__mv-tagline {
    right: 70px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-tagline {
    font-size: 36px;
    line-height: 1.5em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.top__mv-tagline-deco1 {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 176px;
  height: 176px;
  background: url("./public/img/top-upper/mv-tagline-deco.svg") no-repeat center/contain;
}
@media screen and (min-width: 981px) and (max-width: 1200px) {
  .top__mv-tagline-deco1 {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 980px) {
  .top__mv-tagline-deco1 {
    z-index: 2;
    top: unset;
    left: unset;
    bottom: 0;
    right: -70px;
    -webkit-transform: none;
            transform: none;
    width: 176px;
    height: 176px;
  }
}
@media screen and (max-width: 590px) {
  .top__mv-tagline-deco1 {
    width: 140px;
    height: 140px;
  }
}
.top__mv-tagline-deco2 {
  display: none;
}
@media screen and (max-width: 980px) {
  .top__mv-tagline-deco2 {
    position: absolute;
    z-index: -1;
    top: -50px;
    right: 80%;
    display: block;
    width: 260px;
    height: 260px;
    background: url("./public/img/top-upper/mv-line1-deco.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 590px) {
  .top__mv-tagline-deco2 {
    width: 200px;
    height: 200px;
  }
}
.top__mv-subtext {
  position: absolute;
  z-index: 1;
  top: 0;
  margin-top: 45px;
  font-size: 2rem;
  line-height: 2em;
  letter-spacing: 2px;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .top__mv-subtext {
    padding: 0 7% 30px;
  }
}
@media screen and (max-width: 590px) {
  .top__mv-subtext {
    font-size: 14px;
  }
}
.top__mv-subtext-deco {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 85%;
  height: 162px;
  background: url("./public/img/top-upper/mv-subtext-deco.png") no-repeat center/contain;
}
@media screen and (max-width: 980px) {
  .top__mv-subtext-deco {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top__mv-subtext-deco {
    width: 100%;
    height: 35vw;
    margin-top: -30px;
    background: url("./public/img/top-upper/mv-subtext-deco-sp.png") no-repeat center/cover;
  }
}
@media screen and (max-width: 590px) {
  .top__mv-subtext-deco {
    margin-top: 0;
  }
}
.top__about {
  overflow: hidden;
}
.top__about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: url("./public/img/top-upper/about-mask.png") no-repeat center/cover;
  mix-blend-mode: lighten;
}
@media screen and (max-width: 980px) {
  .top__about::after {
    width: 120%;
    height: 50%;
  }
}
.top__about-wrapper {
  border-top: 1px solid #fff;
  padding: 0 7%;
  margin: 0 auto;
  max-width: calc(1200px + 14%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__about-wrapper {
    max-width: 100%;
  }
}
.top__about-section-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 30px;
  color: #fff;
  font-size: 3.2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .top__about-section-label {
    font-size: 15px;
  }
}
.top__about-logo-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 15px;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .top__about-logo-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 50px;
  }
}
.top__about-logo-deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 216px;
  height: 216px;
  background: url("./public/img/top-upper/about-logo-deco.svg") no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__about-logo-deco {
    width: 100px;
    height: 100px;
  }
}
.top__about-logo-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("./public/img/top-upper/texture-bg.png") repeat top/220px 220px;
  mix-blend-mode: soft-light;
  -webkit-mask-image: url("./public/img/top-upper/about-logo-deco.svg");
          mask-image: url("./public/img/top-upper/about-logo-deco.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.top__about-logo {
  width: 30vw;
  max-width: 420px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top__about-logo {
    width: 50%;
    max-width: unset;
  }
}
.top__about-logo-subtext {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 40vw;
}
@media screen and (max-width: 767px) {
  .top__about-logo-subtext {
    max-width: 70%;
  }
}
.top__about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 75px 0;
}
@media screen and (max-width: 980px) {
  .top__about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top__about-content-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
@media screen and (max-width: 980px) {
  .top__about-content-col {
    width: 100%;
  }
}
.top__about-content-col--title {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 980px) {
  .top__about-content-col--title {
    min-height: 70vw;
  }
}
@media screen and (max-width: 590px) {
  .top__about-content-col--title {
    min-height: 80svw;
  }
}
.top__about-content-col--title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 100%;
  height: 715px;
  background: url("./public/img/top-upper/about-col-bg.png") no-repeat top/100%;
}
@media screen and (max-width: 980px) {
  .top__about-content-col--title::before {
    bottom: 40px;
    left: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 70%;
    height: 100%;
    background-image: url("./public/img/top-upper/about-col-bg-sp.png");
  }
}
@media screen and (max-width: 590px) {
  .top__about-content-col--title::before {
    width: 80%;
  }
}
.top__about-content-col--text {
  max-width: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .top__about-content-col--text {
    max-width: unset;
  }
}
.top__about-content-title {
  color: #fff;
  font-size: 7rem;
  line-height: 1.1571428571em;
  letter-spacing: 5px;
}
@media screen and (max-width: 980px) {
  .top__about-content-title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 590px) {
  .top__about-content-title {
    font-size: 36px;
  }
}
.top__about-content-heading {
  margin-bottom: 40px;
  color: #000;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .top__about-content-heading {
    font-size: 20px;
  }
}
.top__about-content-p {
  margin-bottom: 70px;
  color: #000;
  font-size: 2rem;
  line-height: 1.8em;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .top__about-content-p {
    font-size: 16px;
  }
}
.top__role-figures {
  position: relative;
  padding: 150px 0 120px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .top__role-figures {
    padding: 80px 0;
  }
}
.top__role-figure-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 7%;
  margin: 0 auto;
  max-width: calc(1200px + 14%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__role-figure-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .top__role-figure-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}
.top__role-figure {
  position: relative;
  z-index: -3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__role-figure--fig2 .top__role-fig-image::before, .top__role-figure--fig3 .top__role-fig-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 49%;
  left: -29%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 57%;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .top__role-figure--fig1 .top__role-fig-image::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 70%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 57%;
    height: 1px;
    background-color: #fff;
  }
}
.top__role-figure--fig1 .top__role-fig-image::after {
  content: "";
  position: absolute;
  top: 47%;
  right: -7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 126%;
  height: 107%;
  background: url("./public/img/top-upper/role-fig1.png") no-repeat center/contain;
}
@media screen and (max-width: 980px) {
  .top__role-figure--fig2 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 980px) {
  .top__role-figure--fig2 .top__role-fig-image::before {
    content: none;
  }
}
.top__role-figure--fig2 .top__role-fig-image::after {
  content: "";
  position: absolute;
  top: 39%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 83%;
  height: 125%;
  background: url("./public/img/top-upper/role-fig2.png") no-repeat center/contain;
}
@media screen and (max-width: 980px) {
  .top__role-figure--fig3 .top__role-fig-image::before {
    left: unset;
    right: 70%;
  }
}
.top__role-figure--fig3 .top__role-fig-image::after {
  content: "";
  position: absolute;
  top: 49%;
  left: -1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 112%;
  height: 111%;
  background: url("./public/img/top-upper/role-fig3.png") no-repeat center/contain;
}
.top__role-fig-image {
  position: relative;
  width: 371px;
  height: 371px;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
}
@media screen and (max-width: 1280px) {
  .top__role-fig-image {
    width: 280px;
    height: 280px;
  }
}
.top__role-fig-label {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (max-width: 980px) {
  .top__role-fig-label {
    font-size: 18px;
  }
}
.top__role-fig-textwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.top__role-fig-text {
  margin: 40px auto 0;
  color: #000;
  font-size: 2rem;
}
@media screen and (max-width: 980px) {
  .top__role-fig-text {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
  }
}
.top__brand-content {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  background: url("./public/img/top-upper/brand-main-bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .top__brand-content {
    background-image: url("./public/img/top-upper/brand-main-bg-sp.jpg");
  }
}
.top__brand-content.grain-effect::before {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .top__brand-content.grain-effect::before {
    opacity: 0.7;
  }
}
.top__brand-inner {
  padding: 0 7%;
  margin: 0 auto;
  max-width: calc(1200px + 14%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__brand-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-inner {
    padding: 0;
  }
}
.top__brand-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .top__brand-head {
    padding: 60px 7% 0;
    gap: 20px;
  }
}
.top__brand-title {
  color: #fff;
  font-size: 9.6rem;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top__brand-title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-title {
    font-size: 42px;
  }
}
.top__brand-subtitle {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .top__brand-subtitle {
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
}
.top__brand-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
}
@media screen and (max-width: 1200px) {
  .top__brand-list {
    gap: 60px;
  }
}
.top__brand-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__brand-row--protect {
  margin-left: 10%;
}
@media screen and (max-width: 1200px) {
  .top__brand-row--protect {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-row--offense {
    padding-right: 7%;
  }
}
.top__brand-label {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8em;
  letter-spacing: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .top__brand-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-label span.black-sp {
    color: #000;
  }
}
.top__brand-label--protect {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .top__brand-label--protect {
    position: absolute;
    bottom: 0;
    left: -45px;
    margin-right: 0;
  }
}
.top__brand-label--offense {
  margin-top: -20%;
  margin-left: 60px;
  margin-right: -60px;
}
@media screen and (max-width: 1200px) {
  .top__brand-label--offense {
    margin-top: 0;
    margin-left: 120px;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-label--offense {
    margin-left: 15%;
  }
}
.top__brand-card {
  position: relative;
}
.top__brand-card::before, .top__brand-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top__brand-card--protect {
  padding: 50px 60px 120px;
}
@media screen and (max-width: 1200px) {
  .top__brand-card--protect {
    margin-right: 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-card--protect {
    margin-left: 7%;
    margin-right: 0;
    padding: 30px 20px 40px 40px;
  }
}
.top__brand-card--protect::before {
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
}
.top__brand-card--protect::after {
  z-index: -2;
  background: url("./public/img/top-upper/brand-card1.png") no-repeat bottom left/cover;
  opacity: 0.8;
}
.top__brand-card--protect .top__brand-card-ul {
  margin-left: 40px;
}
.top__brand-card--offense {
  --tri-size: 200px;
  margin-top: -65px;
  margin-left: 45%;
  padding: 50px 0 50px 50px;
}
@media screen and (max-width: 1200px) {
  .top__brand-card--offense {
    margin-top: 0;
    margin-left: 10%;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-card--offense {
    --tri-size: 147.5px;
    --tri-cut: 120px;
    margin-left: 0;
    padding: 30px 0 30px 50px;
  }
}
.top__brand-card--offense::before {
  width: calc(100% + var(--tri-size));
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  clip-path: polygon(0 0, calc(100% - var(--tri-size)) 0, 100% 50%, calc(100% - var(--tri-size)) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .top__brand-card--offense::before {
    width: calc(100% + var(--tri-cut));
    clip-path: polygon(0 0, calc(100% - var(--tri-cut)) 0, 100% 50%, calc(100% - var(--tri-cut)) 100%, 0 100%);
  }
}
.top__brand-card--offense::after {
  width: calc(100% + var(--tri-size));
  background: url("./public/img/top-upper/brand-card2.png") no-repeat bottom left/cover;
  mix-blend-mode: screen;
  opacity: 0.8;
  clip-path: polygon(0 0, calc(100% - var(--tri-size)) 0, 100% 50%, calc(100% - var(--tri-size)) 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .top__brand-card--offense::after {
    width: calc(100% + var(--tri-cut));
    clip-path: polygon(0 0, calc(100% - var(--tri-cut)) 0, 100% 50%, calc(100% - var(--tri-cut)) 100%, 0 100%);
  }
}
.top__brand-card--offense .top__brand-card-ul {
  margin-left: 90px;
}
@media screen and (max-width: 1200px) {
  .top__brand-card--offense .top__brand-card-ul {
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top__brand-card--offense .top__brand-card-ul {
    margin-left: 30px;
  }
}
.top__brand-card-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__brand-card-title {
  font-size: 5rem;
  line-height: 1.2em;
}
@media screen and (max-width: 767px) {
  .top__brand-card-title {
    font-size: 30px;
  }
}
.top__brand-card-subtitle {
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top__brand-card-subtitle {
    font-size: 30px;
  }
}
.top__brand-card-ul {
  margin-top: 20px;
}
.top__brand-card-ul li {
  position: relative;
  padding-left: 20px;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875em;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top__brand-card-ul li {
    font-size: 12px;
    letter-spacing: 2px;
  }
}
.top__brand-card-ul li::before {
  content: "● ";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
}
.top__brand-footnote {
  margin-top: 75px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__brand-footnote {
    font-size: 16px;
  }
}
.top__service {
  padding: 80px 0;
}
.top__service-inner {
  padding: 0 7%;
  margin: 0 auto;
  max-width: calc(1200px + 14%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .top__service-inner {
    max-width: 100%;
  }
}
.top__service-title {
  font-size: 5.6rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .top__service-title {
    font-size: 15px;
  }
}
.top__service-grid {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 20px;
}
@media screen and (max-width: 767px) {
  .top__service-grid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.top__service-item {
  position: relative;
  width: calc(33.33% - 20px);
  padding-top: 70px;
  padding-left: 40px;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .top__service-item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .top__service-item {
    width: 100%;
    height: auto;
  }
}
.top__service-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -12px;
  width: 106px;
  height: 136px;
  background: url("./public/img/top-upper/service-col-deco.svg") no-repeat center/contain;
}
.top__service-item--about::before {
  content: none;
}
.top__service-item--bg1 .top__service-item-content::after {
  background-image: url("./public/img/top-upper/service-bg1.png");
}
.top__service-item--bg2 .top__service-item-content::after {
  background-image: url("./public/img/top-upper/service-bg2.png");
}
.top__service-item--bg3 .top__service-item-content::after {
  background-image: url("./public/img/top-upper/service-bg3.png");
}
.top__service-item--bg4 .top__service-item-content::after {
  background-image: url("./public/img/top-upper/service-bg4.png");
}
.top__service-item--bg5 .top__service-item-content::after {
  background-image: url("./public/img/top-upper/service-bg5.png");
}
.top__service-item-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 40px;
  background-color: #bfc1c5;
}
@media screen and (max-width: 1200px) {
  .top__service-item-content {
    min-height: 487px;
  }
}
@media screen and (max-width: 767px) {
  .top__service-item-content {
    min-height: auto;
  }
}
@media screen and (max-width: 590px) {
  .top__service-item-content {
    padding: 30px;
  }
}
.top__service-item-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: lighten;
}
.top__service-arrows {
  position: absolute;
  z-index: 1;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.top__service-arrow {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  width: 66px !important;
  height: 66px !important;
  background-color: #000 !important;
  opacity: 1 !important;
}
.top__service-arrow:disabled {
  opacity: 0.5 !important;
}
.top__service-arrow svg {
  fill: none !important;
  width: 26px !important;
  height: 26px !important;
}
.top__service-arrow--next svg {
  margin-left: 5px;
}
.top__service-arrow--prev svg {
  margin-right: 5px;
}
.top__service-about {
  padding: 75px 0;
  font-size: 2rem;
  line-height: 2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top__service-about {
    margin: 30px 0;
    padding: 0;
    font-size: 15px;
  }
}
.top__service-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  font-size: 3rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top__service-heading {
    font-size: 40px;
  }
}
.top__service-subheading {
  font-family: "Abhaya Libre", sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top__service-subheading {
    font-size: 20px;
  }
}
.top__service-ul {
  margin-top: 20px;
}
.top__service-ul li {
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875em;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .top__service-ul li {
    font-size: 15px;
  }
}
.top__service-ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
}

.top__block {
  position: relative;
}
.top__block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f1f1ea;
  border: 25px solid #b3c0db;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
}
@media screen and (max-width: 767px) {
  .top__block::after {
    border-width: 18px 0;
    width: 100%;
    height: calc(100% - 36px);
  }
}
.top__values {
  padding-block: 96px 97.5px;
}
@media screen and (max-width: 767px) {
  .top__values {
    padding-block: 66px 38px;
  }
}
.top__values-wrapper {
  margin: 77px 0 0 2.97%;
}
@media screen and (max-width: 767px) {
  .top__values-wrapper {
    margin: 25px 0 0;
  }
}
.top__values-inner {
  width: 100%;
  padding: 3.6% 0 3.6% 3.7%;
}
@media screen and (min-width: 1024px) {
  .top__values-inner {
    background: url("./public/img/top/diamond-pc.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .top__values-inner {
    padding: 13px 0;
  }
}
.top__values-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(53.27vw, 767px);
  height: min(31.25vw, 450px);
}
@media screen and (max-width: 1023px) {
  .top__values-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .top__values-item {
    width: min(18.34vw, 264px);
    height: min(18.51vw, 266px);
    border-radius: 35px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
  }
}
.top__values-item--1 {
  top: 0;
  left: 1.6%;
}
.top__values-item--2 {
  bottom: 0;
  left: 26%;
}
.top__values-item--3 {
  top: 0;
  left: 50%;
}
.top__values-item--4 {
  bottom: 0;
  left: 74%;
}
.top__values-item--5 {
  top: 0;
  left: 98%;
}
.top__values-item-content {
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .top__values-item-content {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (max-width: 1023px) {
  .top__values-item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
    padding-left: 8px;
  }
}
.top__values-num {
  margin: 0 0 28px -15px;
}
@media screen and (max-width: 1024px) {
  .top__values-num {
    margin: 0 0 18px -5px;
    height: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .top__values-num {
    margin: 0;
    height: 27px;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.top__values-title {
  font: 500 2.4rem "Abhaya Libre", sans-serif;
  line-height: 1.0833333333em;
  letter-spacing: 1px;
}
@media screen and (max-width: 1366px) {
  .top__values-title {
    font-size: clamp(1.3rem, 0.146rem + 1.503vw, 2.4rem);
  }
}
@media screen and (max-width: 1023px) {
  .top__values-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 13px;
    width: 92px;
    height: 92px;
    border-radius: 18px;
    border: 1px solid #bcbcbc;
    margin-left: 19px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1023px) {
  .top__values-title-inner {
    display: inline-block;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    line-height: 1.3846153846em;
  }
}
.top__values-desc {
  padding-top: 10px;
  font-size: 1.4rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1366px) {
  .top__values-desc {
    font-size: clamp(1rem, 0.58rem + 0.546vw, 1.4rem);
  }
}
@media screen and (max-width: 1023px) {
  .top__values-desc {
    padding: 0 0 0 23px;
    font-size: 10px;
    line-height: 1.8em;
    letter-spacing: 2px;
    text-align: left;
  }
}
.top__works {
  padding-block: 97.5px 131px;
  gap: 4.84%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .top__works {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 29px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .top__works {
    padding-block: 38px 87px;
  }
}
.top__works-wrapper {
  position: relative;
  margin-left: 3.26%;
  width: 65.65%;
}
@media screen and (max-width: 1023px) {
  .top__works-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top__works-wrapper {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}
.top__works-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 217px;
  height: 217px;
  background: url("./public/img/top/works-corner.svg") no-repeat top right/contain;
}
@media screen and (max-width: 767px) {
  .top__works-wrapper::after {
    top: 30px;
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .top__works-title {
    padding-left: 6.87%;
  }
}
.top__works-content {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8em;
  letter-spacing: 5px;
  color: #000;
  text-align: center;
  margin: -42px 52px 0 auto;
  width: 75.46%;
  background: url("./public/img/top/works-bg.jpg") no-repeat center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top__works-content {
    margin: 0 3.56%;
    width: 92.88%;
    font-size: 12px;
    line-height: 1.6666666667em;
    letter-spacing: 3px;
  }
}
.top__works-content::after {
  content: "";
  display: block;
  padding-top: 46.74%;
}
.top__blog {
  padding-block: 64px 90px;
}
@media screen and (max-width: 767px) {
  .top__blog {
    padding-block: 10px 66px;
  }
}
.top__blog-title {
  margin-left: 3.79%;
}
@media screen and (max-width: 767px) {
  .top__blog-title {
    margin-left: 14px;
  }
}
.top__blog-link {
  margin-left: auto;
}
.top__blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-left: 0.81%;
  padding-block: 32px 56px;
}
@media screen and (max-width: 1023px) {
  .top__blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .top__blog-list {
    grid-template-columns: 100%;
    padding: 11px 13px 25px;
  }
}
.top__blog-item {
  padding: 20px 21.5px 14px;
  background: #959595;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__blog-item {
    padding: 17px 18px 12px;
  }
}
.top__blog-item:hover .top__blog-card-img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top__blog-card-cover {
  overflow: hidden;
  aspect-ratio: 361/245;
}
.top__blog-card-img {
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.top__blog-card-title {
  padding: 13px 29px 28px 2px;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1.2608695652em;
}
@media screen and (max-width: 767px) {
  .top__blog-card-title {
    padding: 11px 25px 25px 2px;
    font-size: 19px;
    line-height: 1.2609366958em;
  }
}
.top__blog-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top__blog-card-date {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  line-height: 1.0666666667em;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .top__blog-card-date {
    font-size: 13px;
  }
}
.top__blog-card-tags {
  padding: 6.5px 15.73px;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__blog-card-tags {
    padding: 3.5px 11.5px;
    font-size: 9px;
  }
}
.top__member-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #eaeaea;
  mix-blend-mode: multiply;
}
.top__member-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: exclusion;
}
.top__member-container {
  padding-block: 7px 110px;
}
@media screen and (max-width: 767px) {
  .top__member-container {
    padding-block: 5px 27px;
  }
}
.top__member-title {
  line-height: 100px;
}
@media screen and (max-width: 767px) {
  .top__member-title {
    font-size: 36px;
    line-height: 65px;
    margin-bottom: -11px;
  }
}
.top__member-desc {
  font-weight: 500;
  font-size: 2rem;
  line-height: 29px;
  letter-spacing: 5px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top__member-desc {
    font-size: 10px;
    line-height: 15px;
  }
}
.top__member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-left: auto;
  padding: 10px 3.66% 0 0;
  max-width: 875px;
}
@media screen and (max-width: 1024px) {
  .top__member-list {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__member-list {
    gap: 2px;
    padding-top: 31px;
  }
}
.top__member-item {
  background: #000;
  height: 100%;
}
.top__member-item-body {
  padding: 14px 14px 29px;
  color: #cdcdcd;
}
@media screen and (max-width: 767px) {
  .top__member-item-body {
    padding: 8px 9px 9px;
  }
}
.top__meber-media {
  aspect-ratio: 288/348;
}
.top__member-role {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top__member-role {
    font-size: 6px;
  }
}
.top__member-name {
  padding-top: 13px;
  font: 700 2rem "Georgia", serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .top__member-name {
    padding-top: 5px;
    font-size: 8px;
  }
}
.top__company {
  padding-block: 71px 98px;
}
@media screen and (max-width: 767px) {
  .top__company {
    padding-block: 27px 70px;
  }
}
.top__company-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-left: 9.32%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top__company-subtitle {
    gap: 6px;
    padding-left: 0;
  }
}
.top__company-subtitle img {
  height: auto;
}
.top__company-subtitle-img1 {
  width: 31.2%;
  max-width: 415px;
}
@media screen and (max-width: 767px) {
  .top__company-subtitle-img1 {
    width: 38.48%;
  }
}
.top__company-subtitle-img2 {
  width: 20.38%;
  max-width: 271px;
}
@media screen and (max-width: 767px) {
  .top__company-subtitle-img2 {
    width: 25.07%;
  }
}
.top__company-subtitle-img3 {
  width: 26.77%;
  max-width: 356;
}
@media screen and (max-width: 767px) {
  .top__company-subtitle-img3 {
    width: 32.95%;
  }
}
.top__company-title {
  padding-left: 6.92%;
  margin-top: 67px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .top__company-title {
    margin-top: 16px;
    padding: 6px 0 0;
  }
}
.top__company-list {
  margin: 89px 3.16% 0 auto;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .top__company-list {
    margin: 16px 0 0;
    max-width: 100%;
  }
}
.top__company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 35px;
  border-bottom: 1px solid #000;
  letter-spacing: 5px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .top__company-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 0 37px;
    border-bottom: none;
  }
}
.top__company-item--profile .top__company-label {
  word-break: keep-all;
}
.top__company-item--profile .top__company-desc {
  padding-top: 50px;
  letter-spacing: 0.08em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .top__company-item--profile .top__company-desc {
    padding-top: 9px;
  }
}
.top__company-item--location {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 0;
  border-bottom: 0;
}
.top__company-label {
  font-weight: 500;
  padding-left: 10px;
  width: 167px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top__company-label {
    padding-left: 0;
    width: 100%;
    font-size: 14px;
  }
}
.top__company-desc {
  padding-right: 22px;
  font-size: 1.7rem;
  line-height: 1.7647058824em;
}
@media screen and (max-width: 767px) {
  .top__company-desc {
    padding: 9px 0 0;
    font-size: 13px;
    line-height: 1.5384615385em;
  }
}
.top__company-figure {
  margin: 32px 0 0 9px;
  width: 100%;
  background: #c0c0c0;
  height: 324px;
}
@media screen and (max-width: 767px) {
  .top__company-figure {
    margin: 22px 0 0;
    height: 164px;
  }
}

.contact {
  padding-bottom: 118px;
}
.contact__container {
  max-width: calc(988px + 8%);
  padding-inline: 4%;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact__progress {
  margin-bottom: 70px;
  gap: 121px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__progress {
    gap: 94px;
    margin-bottom: 55px;
  }
}
.contact__progress-item {
  width: 65px;
  height: 65px;
  background-color: #aaa;
  border-radius: 65px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__progress-item {
    width: 50px;
    height: 50px;
    font-size: 12.45px;
  }
}
.contact__progress-item:not(:last-of-type) {
  position: relative;
}
.contact__progress-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: -104px;
  top: 50%;
  width: 88px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__progress-item:not(:last-of-type)::after {
    width: 68px;
    right: -81px;
  }
}
.contact__progress-item.active {
  background-color: #b3c0db;
  color: #fff;
}
.contact__form {
  background-color: #fff;
  border-radius: 40px;
  padding: 84px 52px 90px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    border-radius: 20px;
    padding: 29px 16px 40px;
  }
}
.contact__form-wrap {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap {
    padding-bottom: 25px;
    margin: 0 16px 40px;
  }
}
.contact__form-wrap--checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap--checkboxes {
    gap: 45px;
  }
}
.contact__form-wrap--texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap--texts {
    gap: 20px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .contact__form-wrap--texts .contact__form-item {
    padding-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
  }
}
.contact__form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .contact__form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.contact__form-label {
  max-width: 150px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2em;
  color: #000;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    max-width: 140px;
    font-size: 13.81px;
  }
}
.contact__form-label--start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.contact__form-label .required {
  display: block;
  padding: 1px 5px 0;
  font-weight: 500;
  font-size: 10px;
  line-height: 2em;
  text-align: center;
  background-color: #000;
  color: #fff;
}
.contact__form-label .required--not {
  background-color: #828282;
}
.contact__form-input-wrap {
  width: 100%;
  max-width: 607px;
  margin-right: 50px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .contact__form-input-wrap {
    margin-right: 0;
  }
}
.contact__form-input-wrap--radio {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 5px;
}
.contact__form-radio-wrap label input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.contact__form-radio-wrap label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__form-radio-wrap label::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-right: 18px;
  border-radius: 50%;
  background-color: #e3e3e3;
  border: 1px solid #e3e3e3;
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap label::before {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 8px;
  }
}
.contact__form-radio-wrap label input[type=radio]:checked + span::after {
  content: "";
  width: 7.2px;
  height: 7.2px;
  min-width: 7.2px;
  border-radius: 50%;
  background-color: #b3c0db;
  position: absolute;
  left: 7.5px;
  top: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap label input[type=radio]:checked + span::after {
    left: 5.5px;
    top: 9px;
  }
}
.contact__form-radio-wrap label input[type=radio]:checked + span::before {
  content: "";
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 1px;
  top: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap label input[type=radio]:checked + span::before {
    width: 16px;
    height: 16px;
    min-width: 16px;
    top: 9px;
  }
}
.contact__form-radio-wrap .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap .wpcf7-radio {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.contact__form-radio-wrap .wpcf7-list-item {
  min-height: 35px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6666666667em;
  letter-spacing: 1px;
  color: #000;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap .wpcf7-list-item {
    min-height: 25px;
    font-size: 10.62px;
  }
}
.contact__form-radio-wrap .wpcf7-list-item-label {
  margin-top: 2px;
  white-space: pre-line;
}
.contact__form-radio-wrap--pref .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap--pref .wpcf7-radio {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact__form-radio-wrap--pref .wpcf7-list-item {
    font-size: 10px;
  }
}
.contact__form-checkbox-wrap {
  padding: 18px 28px 31px;
  background-color: #f3f3f3;
}
.contact__form-checkbox-text {
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #000;
  display: block;
}
.contact__form-checkbox label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin-right: 0;
}
.contact__form-checkbox label {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact__form-checkbox label::before {
  content: "";
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-right: 21px;
  border-radius: 1px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
}
.contact__form-checkbox label input[type=checkbox]:checked + span::after {
  content: "";
  width: 15px;
  height: 15px;
  min-width: 15px;
  background: url("./public/img/icons/checkbox.svg") center/contain no-repeat;
  position: absolute;
  left: 2px;
  top: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__form-checkbox label span {
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox label span {
    margin-top: 0;
  }
}
.contact__form-checkbox .wpcf7-list-item {
  margin-left: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox .wpcf7-list-item {
    font-size: 10.62px;
  }
}
.contact__form-checkbox .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox .wpcf7-checkbox {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.contact__form-input textarea,
.contact__form-input input[type=text],
.contact__form-input input[type=tel],
.contact__form-input input[type=email] {
  font: 400 1.3rem "Noto Sans JP", sans-serif;
  line-height: 1.6923076923em;
  padding: 4px 30px;
  width: 100%;
  border: 0.5px solid #d7d7d7;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__form-input textarea,
  .contact__form-input input[type=text],
  .contact__form-input input[type=tel],
  .contact__form-input input[type=email] {
    font-size: 12px;
    padding: 10px 25px;
  }
}
.contact__form-input textarea {
  padding-block: 24px;
  height: 144px;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-input textarea {
    padding: 20px 17px;
  }
}
.contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  padding-inline: 16px;
}
.contact__privacy-wrap {
  padding: 6px 0 0 18px;
  width: 607px;
  height: 114px;
  border: 0.5px solid #d7d7d7;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__privacy-wrap {
    width: 100%;
    padding-left: 14px;
  }
}
.contact__privacy-content {
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  overflow-y: scroll;
}
.contact__privacy-content::-webkit-scrollbar {
  background-color: #fff;
  width: 12px;
}
.contact__privacy-content::-webkit-scrollbar-thumb {
  background-color: #adadad;
  border-radius: 12px;
  border: 3px solid #fff;
}
.contact__privacy-heading {
  font-size: 1.3rem;
  line-height: 2.7692307692em;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__privacy-heading {
    font-size: 9.83px;
  }
}
.contact__privacy-item {
  margin: 0 auto 20px;
  max-width: 468px;
}
@media screen and (max-width: 767px) {
  .contact__privacy-item {
    padding-inline: 29px 20px;
    max-width: 100%;
  }
}
.contact__privacy-item-heading {
  font-size: 11.1px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  padding-bottom: 5px;
  margin-bottom: 8px;
  border-bottom: 0.43px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  .contact__privacy-item-heading {
    font-size: 8.39px;
  }
}
.contact__privacy-item-heading--no-border {
  margin-bottom: 0;
  border-bottom: none;
}
.contact__privacy-item-text {
  font-size: 10.24px;
  line-height: 1.6669921875em;
  letter-spacing: 1px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__privacy-item-text {
    font-size: 7.74px;
  }
}
.contact__privacy-item-text ul {
  list-style-type: disc;
  padding-left: 18px;
}
.contact__privacy-text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6em;
  text-align: center;
  color: #000;
}
.contact__privacy-checkbox .wpcf7-checkbox {
  grid-template-columns: 1fr;
}
.contact__form-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact__form-btn {
  margin: 21px auto 0;
  position: relative;
  max-width: 403px;
  width: 100%;
  height: 64px;
  padding: 15px;
  background-color: #b3c0db;
  border: 0.5px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__form-btn {
    max-width: 100%;
    width: 100%;
  }
}
.contact__form-btn::before {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact__form-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 54px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("./public/img/header/btn-deco.svg") no-repeat center/contain;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__form-btn::after {
    right: 45px;
    width: 8px;
    height: 8px;
  }
}
.contact__form-btn span.btn-text {
  font-family: "Georgia", serif;
  color: #fff;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.contact__form-btn span.btn-text.adjust-left {
  margin-left: -15px;
}
.contact__form-btn:hover {
  background-color: #7f8494;
}
.contact__form-btn:hover::before {
  opacity: 0.5;
}
.contact__form-btn:hover::after {
  width: 16px;
  height: 16px;
  background-image: url("./public/img/icons/arrow-btn.svg");
}
.contact__form-btn--return {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.contact__form-submit {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding-left: 42px;
  color: #fff;
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    letter-spacing: 0;
  }
}
.contact__form-submit--return {
  color: #000;
}
.contact__form-btn-text {
  padding: 10px 42px;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Georgia", serif;
  color: #fff;
}
.contact__complete {
  font-size: 2rem;
  line-height: 2em;
  text-align: center;
  margin-bottom: 60px;
}
.contact--confirm .contact__form-wrap {
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc-flex {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-flex {
    display: block;
  }
}

@media screen and (min-width: 1023px) {
  .mini-sp {
    display: none;
  }
}

.white {
  color: #fff;
}

.z1 {
  position: relative;
  z-index: 1;
}

.bg-beige {
  background-color: #e0e0e0;
}

.ff-georgia {
  font-family: "Georgia", serif;
}

.grain-effect {
  position: relative;
  isolation: isolate;
  z-index: 1;
}
.grain-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("./public/img/top-upper/texture-bg.png") repeat top/220px 220px;
  mix-blend-mode: soft-light;
}
.grain-effect--beforeZ1::before {
  z-index: 1;
}

.sky-bg {
  background: #b3c0db;
}

.gray-bg {
  background: #d9d9d9;
}

.relative {
  position: relative;
}

.parallax {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}

[data-aos=mv-text-deco] {
  -webkit-transform: translate(-50%, -50%) scale(0.6);
          transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
@media screen and (max-width: 980px) {
  [data-aos=mv-text-deco] {
    -webkit-transform: translate(-50%, 0) scale(0.6);
            transform: translate(-50%, 0) scale(0.6);
  }
}
[data-aos=mv-text-deco].aos-animate {
  -webkit-transform: translateZ(0) translate(-50%, -50%) scale(1);
          transform: translateZ(0) translate(-50%, -50%) scale(1);
  opacity: 1;
}
@media screen and (max-width: 980px) {
  [data-aos=mv-text-deco].aos-animate {
    -webkit-transform: translateZ(0) translate(-50%, 0) scale(1);
            transform: translateZ(0) translate(-50%, 0) scale(1);
  }
}

[data-aos=mv-tagline-deco1] {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  opacity: 0;
}
@media screen and (max-width: 980px) {
  [data-aos=mv-tagline-deco1] {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.6);
            transform: translate3d(100%, 0, 0) scale(0.6);
  }
}
[data-aos=mv-tagline-deco1].aos-animate {
  -webkit-transform: translateZ(0) translate3d(-50%, -50%, 0);
          transform: translateZ(0) translate3d(-50%, -50%, 0);
  opacity: 1;
}
@media screen and (max-width: 980px) {
  [data-aos=mv-tagline-deco1].aos-animate {
    -webkit-transform: translateZ(0) translate3d(0, 0, 0) scale(1);
            transform: translateZ(0) translate3d(0, 0, 0) scale(1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.5);
            transform: translateY(-50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.5);
            transform: translateY(-50%) scale(1.5);
    opacity: 0;
  }
}
