@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
/* prettier-ignore */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
/* prettier-ignore */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

select,
video {
  outline: 0;
}

* {
  box-sizing: border-box;
  outline: 0;
}

input[type=submit],
input[type=button], button {
  box-sizing: content-box;
  box-sizing: border-box;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  border-radius: 0;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration, button::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus, button:focus {
  outline-offset: -2px;
}

.top-menu {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 100;
  display: flex;
  width: 100%;
  padding: 30rem 30rem 0 72rem;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top-menu {
    display: none;
  }
}
.top-menu .logo {
  width: 93rem;
}
.top-menu .menu-links {
  display: flex;
  align-self: self-start;
  flex: 1;
  justify-content: center;
}
.top-menu .parent {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15rem;
  font-weight: 500;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  border-radius: 100px;
  position: relative;
  letter-spacing: 1rem;
  padding: 12rem 42rem 12rem 18rem;
  transition: all 0.4s ease;
}
.top-menu .parent .arrow {
  position: absolute;
  top: 50%;
  right: 18rem;
  width: 12rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
}
.top-menu .link-group {
  position: relative;
  padding-bottom: 60rem;
}
.top-menu .link-group.parent1 {
  z-index: 4;
}
.top-menu .link-group.parent2 {
  z-index: 3;
}
.top-menu .link-group.parent3 {
  z-index: 2;
}
.top-menu .link-group.parent4 {
  z-index: 1;
}
.top-menu .link-group:hover .child-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top-menu .link-group:hover .parent {
  background: #FF9000;
}
.top-menu .link-group:hover .parent .arrow {
  opacity: 1;
}
.top-menu .child-links {
  position: absolute;
  bottom: 0rem;
  left: 0;
  display: flex;
  gap: 36rem;
  width: -moz-max-content;
  width: max-content;
  background: #FF9000;
  padding: 18rem 36rem;
  opacity: 0;
  border-radius: 100px;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
}
.top-menu .child-link {
  color: #fff;
  font-size: 15rem;
  font-weight: 700;
}
.top-menu .buttons {
  display: flex;
  gap: 12rem;
}
.top-menu .buttons .button {
  width: 195rem;
  height: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13rem;
  border-radius: 100px;
  background: #FF9000;
  gap: 12rem;
  padding-top: 2rem;
}
.top-menu .buttons .icon {
  width: 18rem;
}
.top-menu .instagram-link {
  width: 24rem;
  color: #fff;
  margin-top: 6rem;
  margin-left: 24rem;
}
.top-menu.alternate-color .instagram-link {
  color: #FF9000;
}
.top-menu.alternate-color .parent {
  color: #000;
}
.top-menu.alternate-color .parent:hover {
  color: #fff;
}

.fixed-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  padding: 13rem 25rem;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  overflow: visible;
  transform: translateY(-100%);
  opacity: 0;
  transition: 500ms ease;
}
@media (max-width: 768px) {
  .fixed-menu {
    display: none;
  }
}
.fixed-menu.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fixed-menu .logo {
  width: 48rem;
}
.fixed-menu .menu-links {
  display: flex;
  align-self: center;
  flex: 1;
  justify-content: center;
}
.fixed-menu .parent {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 15rem;
  font-weight: 500;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  border-radius: 100px;
  position: relative;
  letter-spacing: 1rem;
  padding: 12rem 42rem 12rem 18rem;
  transition: all 0.4s ease;
}
.fixed-menu .parent .arrow {
  position: absolute;
  top: 50%;
  right: 18rem;
  width: 12rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
}
.fixed-menu .link-group {
  position: relative;
  padding-bottom: 25rem;
  margin-bottom: -25rem;
}
.fixed-menu .link-group.parent1 {
  z-index: 4;
}
.fixed-menu .link-group.parent2 {
  z-index: 3;
}
.fixed-menu .link-group.parent3 {
  z-index: 2;
}
.fixed-menu .link-group.parent4 {
  z-index: 1;
}
.fixed-menu .link-group:hover .child-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fixed-menu .link-group:hover .parent {
  color: #fff;
  background: #FF9000;
}
.fixed-menu .link-group:hover .parent .arrow {
  opacity: 1;
}
.fixed-menu .child-links {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  display: flex;
  gap: 36rem;
  width: -moz-max-content;
  width: max-content;
  background: #FF9000;
  padding: 16rem 36rem 14rem;
  opacity: 0;
  border-radius: 100px;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
}
.fixed-menu .child-link {
  color: #fff;
  font-size: 15rem;
  font-weight: 700;
}
.fixed-menu .buttons {
  display: flex;
  gap: 12rem;
  align-items: center;
}
.fixed-menu .buttons .button {
  width: 195rem;
  height: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13rem;
  border-radius: 100px;
  background: #FF9000;
  gap: 12rem;
  padding-top: 2rem;
}
.fixed-menu .buttons .icon {
  width: 18rem;
}
.fixed-menu .instagram-link {
  width: 24rem;
  color: #FF9000;
  margin-top: 14rem;
  margin-left: 24rem;
}

.sp-menu {
  width: 100%;
  height: 72rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24rem;
  display: none;
}
@media (max-width: 768px) {
  .sp-menu {
    display: flex;
  }
}
.sp-menu .logo {
  width: 36rem;
}
.sp-menu .instagram-link {
  width: 24rem;
  color: #FF9000;
}
.sp-menu .menu-button {
  width: 24rem;
}

.global-menu {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 33rem 24rem 20rem 48rem;
  transform: translateX(-50%);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .global-menu {
    padding: 20rem 24rem;
    background: #FF9000;
  }
}
.global-menu__title {
  position: relative;
  z-index: 1;
  width: 121rem;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .global-menu__title {
    width: 187rem;
  }
}
.global-menu__title-logo--normal {
  display: block;
}
@media (max-width: 768px) {
  .global-menu__title-logo--normal {
    display: none;
  }
}
.global-menu__title-logo--no-nep {
  display: none;
}
@media (max-width: 768px) {
  .global-menu__title-logo--no-nep {
    display: flex;
  }
}
.global-menu__nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .global-menu__nav {
    display: none;
  }
}
.global-menu__nav-list {
  display: flex;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-menu__nav-link {
  display: flex;
  align-items: center;
  gap: 10rem;
  padding: 10rem 25.5rem;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-menu__nav-link:hover {
  opacity: 0.75;
}
.global-menu__nav-link-en {
  font-size: 15rem;
  font-weight: 500;
}
.global-menu__nav-link-ja {
  padding-top: 1rem;
  font-size: 10rem;
  font-weight: 500;
  white-space: nowrap;
}
.global-menu__nav-item {
  position: relative;
}
.global-menu__nav-item--has-dropdown .global-menu__nav-link {
  cursor: pointer;
}
.global-menu__nav-item--has-dropdown span.global-menu__nav-link {
  cursor: default;
}
.global-menu__nav-item--has-dropdown:hover .global-menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(27rem) translateY(0);
}
.global-menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  padding: 14rem 0;
  opacity: 0;
  transform: translateX(27rem) translateY(10rem);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  visibility: hidden;
  pointer-events: none;
}
.global-menu__dropdown-inner {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.global-menu__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 18rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-menu__dropdown-item {
  margin: 0;
  padding: 0;
}
.global-menu__dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 16rem;
  padding: 0 12rem;
  color: #fff;
  line-height: 1;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  border-left: 2px solid #fff;
}
.global-menu__dropdown-link:hover {
  opacity: 0.75;
}
.global-menu__dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.global-menu__dropdown-title-en {
  font-size: 15rem;
  font-weight: 500;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-menu__dropdown-title-ja {
  font-size: 10rem;
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-menu__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
}
.global-menu__contact--mobile-left {
  display: none;
}
@media (max-width: 768px) {
  .global-menu__contact--mobile-left {
    display: flex;
  }
}
.global-menu__contact--mobile-left .global-menu__contact-link {
  padding: 0;
  background: transparent;
  border: none;
}
.global-menu__contact--mobile-left .global-menu__contact-link-icon {
  width: 24rem;
  height: 18rem;
}
@media (max-width: 768px) {
  .global-menu__contact--desktop-right {
    display: none;
  }
}
.global-menu__contact-link, .global-menu__language-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35rem;
  color: #FF9000;
  border: 1px solid #FF9000;
  border-radius: 100px;
  transition: 300ms;
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .global-menu__contact-link, .global-menu__language-link {
    margin-right: -11rem;
    padding: 8rem 15rem 7rem;
  }
}
.global-menu__contact-link:hover, .global-menu__language-link:hover {
  background: #FF9000;
  color: #fff;
}
.global-menu__contact-link:hover .global-menu__contact-link-icon path, .global-menu__contact-link:hover .global-menu__language-link-icon path, .global-menu__language-link:hover .global-menu__contact-link-icon path, .global-menu__language-link:hover .global-menu__language-link-icon path {
  fill: #fff;
}
.global-menu__contact-link {
  gap: 11rem;
  padding: 10rem 20rem 9rem;
}
@media (max-width: 768px) {
  .global-menu__contact-link {
    padding: 8rem 15rem 7rem;
  }
}
.global-menu__language-link {
  gap: 9rem;
  padding: 10rem 12rem;
}
@media (max-width: 768px) {
  .global-menu__language-link {
    display: none;
    padding: 8rem 12rem;
  }
}
.global-menu__contact-link-icon path, .global-menu__language-link-icon path {
  fill: #FF9000;
}
@media (max-width: 768px) {
  .global-menu__contact-link-icon path, .global-menu__language-link-icon path {
    fill: #fff;
  }
}
.global-menu__contact-link-icon {
  width: 18rem;
  height: 13rem;
}
.global-menu__language-link-icon {
  width: 18rem;
  height: 18rem;
}
.global-menu__contact-link-text {
  font-size: 12rem;
  font-weight: 500;
  white-space: nowrap;
}
.global-menu__language-link-text {
  font-size: 14rem;
  font-weight: 500;
}
.global-menu__button {
  display: none;
}
@media (max-width: 768px) {
  .global-menu__button {
    position: relative;
    z-index: 1;
    display: block;
    gap: 8rem;
    width: 24rem;
    height: 20rem;
  }
}
.global-menu__button.is-opened .global-menu__button-button-bar--1 {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.global-menu__button.is-opened .global-menu__button-button-bar--2 {
  transform: translateX(-50%) translateY(-50%) scaleX(0);
}
.global-menu__button.is-opened .global-menu__button-button-bar--3 {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.global-menu__button-button-bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 100px;
  transform: translateX(-50%);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.global-menu__button-button-bar--1 {
  top: 0;
}
.global-menu__button-button-bar--2 {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.global-menu__button-button-bar--3 {
  bottom: 0;
}
@media (max-width: 768px) {
  .global-menu.is-scrolled {
    top: 0;
    width: 100%;
    padding: 20rem 24rem;
    background: #FF9000;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .global-menu.is-opened {
    top: 0;
    width: 100%;
    padding: 20rem 24rem;
    background: #FF9000;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .global-menu.is-opened .global-menu__title {
    width: 187rem;
  }
}
@media (max-width: 768px) {
  .global-menu.is-opened .global-menu__title svg path {
    fill: #fff;
  }
}
.global-menu.is-opened .global-menu__title-logo--normal {
  display: none;
}
.global-menu.is-opened .global-menu__title-logo--no-nep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .global-menu.is-opened .global-menu__contact--mobile-left {
    display: flex;
  }
}
@media (max-width: 768px) {
  .global-menu.is-opened .global-menu__contact--desktop-right {
    display: none;
  }
}

.opened-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 92rem 0 48rem;
  background: #FF9000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.56, 0.01, 0.53, 0.97);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  pointer-events: none;
}
.opened-menu.is-opened {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.opened-menu::-webkit-scrollbar {
  display: none;
}
.opened-menu__inner-content {
  width: 83%;
  margin: 0 auto;
}
.opened-menu__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.opened-menu__nav-link--en {
  font-size: 24rem;
}
.opened-menu__nav-link--ja {
  display: flex;
  gap: 14rem;
  font-size: 15rem;
  font-weight: 500;
  opacity: 0.5;
}
.opened-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 28rem;
}
.opened-menu__dropdown {
  margin-top: 32rem;
  margin-bottom: 9rem;
}
.opened-menu__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 36rem;
}
.opened-menu__dropdown-content {
  display: flex;
  align-items: center;
  gap: 15rem;
  color: #fff;
  font-size: 15rem;
  font-weight: 500;
  opacity: 0.5;
}
.opened-menu__dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 15rem;
  background: #fff;
  border-radius: 100px;
}
.opened-menu__dropdown-icon svg {
  width: 4.9rem;
  padding-left: 1rem;
}
.opened-menu__dropdown-icon svg path {
  fill: #FF9000;
}
.opened-menu__contact-language-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  width: 83%;
  margin: 60rem auto 0;
}
.opened-menu__contact-link, .opened-menu__language-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  width: -moz-max-content;
  width: max-content;
  height: 42rem;
  padding: 11rem 15rem 10rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
}
.opened-menu__contact-link--icon, .opened-menu__language-link--icon {
  width: 24rem;
}
.opened-menu__contact-link--text, .opened-menu__language-link--text {
  font-size: 15rem;
  font-weight: 500;
}
.opened-menu__contact-link {
  flex: 1;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 55rem 90rem;
  padding: 72rem 72rem 37rem;
  color: #fff;
  background-color: #FF9000;
}
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 50rem;
    padding: 72rem 36rem 37rem;
  }
}
.footer .footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 84rem;
  text-align: left;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 50rem 34rem;
  }
}
@media (max-width: 768px) {
  .footer .footer-nav__section {
    width: 100%;
  }
}
.footer .footer-nav__section-link {
  color: #fff;
}
.footer .footer-nav__section-label {
  font-size: 10rem;
  font-weight: 500;
}
.footer .footer-nav__section-title {
  margin: 0 0 30rem;
  font-size: 20rem;
  font-weight: 700;
}
.footer .footer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20rem;
}
.footer .footer-nav__item:nth-child(n+4) {
  display: none;
}
.footer .footer-nav__link {
  color: #fff;
  font-size: 15rem;
  transition: color 0.3s;
  display: flex;
  gap: 12rem;
}
.footer .footer-nav__link .icon {
  width: 20rem;
  display: flex;
  transform: translateY(-2rem);
}
.footer .footer-nav__link .link-text {
  display: flex;
}
.footer__left-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26rem;
}
@media (max-width: 768px) {
  .footer__left-block {
    width: 100%;
  }
}
.footer__logo {
  width: 140rem;
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__right-block {
  flex: 1;
}
.footer__bottom-block {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12rem;
}
@media (max-width: 768px) {
  .footer__bottom-block {
    flex-direction: column;
    justify-content: center;
    gap: 33rem;
    width: 100%;
    margin-bottom: 24rem;
  }
}
.footer .buttons {
  flex-basis: 100%;
  display: flex;
  gap: 12rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .buttons {
    flex-direction: column;
  }
}
.footer .buttons .button {
  width: 318rem;
  height: 48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16rem;
  border-radius: 100px;
  border: 1.5px solid #fff;
  background: #FF9000;
  gap: 25rem;
  padding-top: 2rem;
  letter-spacing: 3rem;
  font-weight: 700;
}
.footer .buttons .icon {
  width: 23rem;
}
.footer__bottom-block-links {
  display: flex;
  align-items: center;
  gap: 24rem;
}
@media (max-width: 768px) {
  .footer__bottom-block-links {
    font-size: 13rem;
  }
}
.footer__bottom-block-link {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}
.footer__bottom-block-link:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .footer__bottom-block-link:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 12rem;
  }
}

#CybotCookiebotDialog, #CookiebotWidget {
  display: none !important;
}

/**
 * Fonts
 */
@font-face {
  font-family: "Avenir Next";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/themes/taiyohome/fonts/avenir_next.woff2") format("woff2"), url("/assets/themes/taiyohome/fonts/avenir_next.woff") format("woff");
}
/**
 * Common Settings
 */
/** noie */
.noie {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  text-align: left;
  background-color: #000;
}
.noie .heading6 {
  margin-bottom: 40rem;
  font-size: 29rem;
  font-weight: 500;
  line-height: 1.79;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .noie .heading6 {
    margin-bottom: 30rem;
    font-size: 23rem;
  }
}
.noie .explain {
  font-size: 16rem;
  font-weight: 500;
  line-height: 2.02;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .noie .explain {
    font-size: 13rem;
    font-weight: 400;
    line-height: 220%;
  }
}
.noie .text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600rem;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .noie .text {
    width: 80%;
    max-width: 400rem;
  }
}

/**
 * Basic
 */
html {
  font-size: 0.078125vw;
}
@media (min-width: 1536px) {
  html {
    font-size: 0.078125vw;
  }
}
@media (max-width: 1280px) {
  html {
    font-size: 0.078125vw;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 0.078125vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.104px;
  }
}
@media (max-width: 414px) {
  html {
    font-size: 0.2564102564vw;
  }
}

body {
  color: #000;
  font-size: 15rem;
  font-weight: 400;
  text-align: center;
  opacity: 1;
  transition: 1s;
  font-family: "Avenir Next", "ryo-gothic-plusn", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", meiryo, sans-serif;
  font-feature-settings: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    -webkit-text-size-adjust: 100%;
       -moz-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
}
body.modal-open {
  overflow: hidden;
}

.wf-active body, .loading-delay body {
  opacity: 1;
}

::-moz-selection {
  background: #e9e8e8;
  color: #000;
}

::selection {
  background: #e9e8e8;
  color: #000;
}

* {
  min-width: 0;
  min-height: 0;
}

a {
  color: #000;
  text-decoration: none;
}

.ja {
  font-family: "Avenir Next", "ryo-gothic-plusn", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", meiryo, sans-serif;
}

.en {
  font-family: "Avenir Next", "Avenir Next", "ryo-gothic-plusn", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", meiryo, sans-serif;
}

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

@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}

.md {
  display: none !important;
}
@media (max-width: 768px) {
  .md {
    display: block !important;
  }
}

.nowrap {
  display: inline-block;
  white-space: nowrap;
}

.reg {
  line-height: 0;
  vertical-align: -0.4em;
}

.inaction-fade {
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.inaction-fade.is-show {
  opacity: 1;
}

.inaction-fade-up {
  opacity: 0;
  transform: translateY(50rem);
  transition: opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1), transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.inaction-fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.inaction-mask-up {
  overflow: hidden;
}
.inaction-mask-up__inner {
  display: inline-block;
  transform: translateY(50rem);
  transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.inaction-mask-up.is-show .inaction-mask-up__inner {
  transform: translateY(0);
}

.inaction-clip-up {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.inaction-clip-up.is-show {
  clip-path: inset(0 0 0 0);
}

/**
 * Screen Reader Only Text
 * SEO and Accessibility: Hide text visually but keep it accessible to screen readers and search engines
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.body-inner {
  position: relative;
}
@media (max-width: 768px) {
  .body-inner {
    overflow: hidden;
  }
}

.background-line {
  position: absolute;
  top: 0;
  width: 1rem;
  height: 100%;
  background: rgba(180, 180, 180, 0.3);
}
.background-line--left {
  left: 20%;
}
@media (max-width: 768px) {
  .background-line--left {
    left: 7.7%;
  }
}
.background-line--center {
  left: 50%;
  transform: translateX(-50%);
}
.background-line--right {
  right: 20%;
}
@media (max-width: 768px) {
  .background-line--right {
    right: 7.7%;
  }
}

.floating-contact-button {
  position: fixed;
  bottom: -80rem;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
  padding: 20rem 48rem;
  background: #FF9000;
  color: #fff;
  border-radius: 100px;
  transform: translateX(-50%);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .floating-contact-button {
    width: 270rem;
    padding: 13rem 39rem;
  }
}
.floating-contact-button.is-shown {
  bottom: 24rem;
}
.floating-contact-button:hover {
  background: #FF9000;
  color: #fff;
}
@media (max-width: 768px) {
  .floating-contact-button:hover {
    background: #fff;
    color: #FF9000;
  }
}
.floating-contact-button__icon {
  width: 26.7rem;
}
@media (max-width: 768px) {
  .floating-contact-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24rem;
  }
}
.floating-contact-button__text--en {
  font-size: 20rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .floating-contact-button__text--en {
    display: none;
  }
}
.floating-contact-button__text--ja {
  font-size: 12rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .floating-contact-button__text--ja {
    font-size: 15rem;
  }
}