@charset "UTF-8";
.wahealth {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1000px) {
  .wahealth {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  .wahealth {
    font-size: 3.2vw;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (max-width: 1280px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

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

.elm {
  opacity: 0;
  transform: translateY(1.875em);
  transition: 0.8s ease-in-out, transform 0.8s ease-out;
  filter: blur(20px);
}
@media screen and (max-width: 768px) {
  .elm {
    transform: translateY(2em);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm.elm4 {
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .elm.elm4 {
    transition-delay: unset;
  }
}

.elm.elmMV {
  filter: blur(0px);
}

.elm.elmMVtitle {
  transform: translateY(0em);
  transition: 1s ease, transform 1s ease;
  filter: blur(30px);
  transition-delay: 0.1s;
}
.elm.elmMVtitle.fade-in {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
html.menu-open {
  overflow: hidden;
  height: 100svh;
}

@font-face {
  font-family: "newyork";
  src: url("../../font/newyork.woff") format("woff");
}
.wahealth {
  background: #eeeeee;
}
.wahealth figure {
  margin: 0;
}
.wahealth .global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  height: 64px;
  display: flex;
  align-items: center;
}
.wahealth .global-header__nav {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .wahealth .global-header__nav {
    display: none;
  }
}
.wahealth .global-header__menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wahealth .global-header__menu li a {
  color: #222;
  text-decoration: none;
  font-size: 1.08em;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.wahealth .global-header__menu li a:hover {
  color: #7ed6a7;
}
@media screen and (max-width: 900px) {
  .wahealth .global-header__menu {
    gap: 16px;
  }
  .wahealth .global-header__menu li a {
    font-size: 0.98em;
  }
}
.wahealth .global-header__lang {
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  .wahealth .global-header__lang {
    margin-left: 1.5em;
  }
}
.wahealth .global-header__lang a {
  color: #222;
  text-decoration: none;
  font-size: 1.05em;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.2s;
}
.wahealth .global-header__lang a.current {
  border-bottom: 0.0625em solid #4d4d4d;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .wahealth .global-header__lang a {
    font-size: 0.95em;
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .wahealth .global-header__lang a {
    font-size: 1.2em;
  }
  .wahealth .global-header__lang a:first-child {
    padding-left: 0;
    margin-right: 0.4em;
  }
  .wahealth .global-header__lang a:last-child {
    margin-left: 0.5em;
  }
}
.wahealth .hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: #4d4d4d;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 768px) {
  .wahealth .hamburger-overlay {
    display: block;
    border: 0.0625em solid #f1f1f1;
  }
}
.wahealth .hamburger-overlay__line {
  position: absolute;
  left: 10px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all 0.6s;
}
.wahealth .hamburger-overlay__line:nth-of-type(1) {
  top: 13px;
}
.wahealth .hamburger-overlay__line:nth-of-type(2) {
  top: 22px;
}
.wahealth .hamburger-overlay__line:nth-of-type(3) {
  top: 31px;
}
.wahealth .hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.wahealth .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.wahealth .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.wahealth .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
.wahealth .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
  display: none;
}
@media screen and (max-width: 768px) {
  .wahealth .nav-overlay {
    display: block;
  }
}
.wahealth .nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.wahealth .nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.wahealth .nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}
.wahealth .nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}
.wahealth .nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}
.wahealth .nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}
.wahealth .nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.wahealth .nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wahealth .nav-overlay__list .menuArea_item_title {
  font-size: 2em;
}
.wahealth .nav-overlay__list .menuArea_item_en {
  font-size: 1.2em;
}
.wahealth .nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
  width: 50%;
  margin: 0 auto;
  padding-top: 1em;
  margin-top: 1.5em;
  border-top: solid 0.0625em #808080;
}
.wahealth .nav-overlay__item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.wahealth main {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .wahealth main {
    padding-bottom: 5em;
  }
}

.mv__title--ma {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.625em;
  font-style: italic;
  color: #808080;
}

.mv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.mv__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.mv__title {
  font-size: 4em;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .mv__title {
    font-size: 4.2em;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 2.4em;
  }
}
.mv__subtitle {
  font-size: 1.5em;
  margin-bottom: 1.5em;
  color: #222;
}
@media screen and (max-width: 1000px) {
  .mv__subtitle {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 768px) {
  .mv__subtitle {
    font-size: 1.2em;
  }
}
.mv__desc {
  font-size: 1.3em;
  color: #222;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 1000px) {
  .mv__desc {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  .mv__desc {
    font-size: 1.1em;
  }
}
.mv__desc--bottom {
  margin-top: 2em;
  font-size: 1.2em;
  color: #222;
}
@media screen and (max-width: 1000px) {
  .mv__desc--bottom {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 768px) {
  .mv__desc--bottom {
    font-size: 1.1em;
  }
}
.mv__st {
  position: absolute;
  z-index: 1;
}
.mv__st.st01 {
  width: 26.6875em;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .mv__st.st01 {
    width: 20em;
  }
}
.mv__st.st02 {
  width: 28.5625em;
  bottom: 0;
  right: 0;
}

.fixed__earth {
  position: fixed;
  font-size: 1em;
  top: 50%;
  left: 50%;
  width: 42em;
  height: 42em;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .fixed__earth {
    font-size: 1vw;
  }
}
@media screen and (max-width: 1000px) {
  .fixed__earth {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .fixed__earth {
    font-size: 2vw;
  }
}

.movieArea {
  position: relative;
  z-index: 2;
}
.movieArea .mv__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9のアスペクト比（9÷16×100） */
}
.movieArea .mv__bg__movie {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.movieArea .mv__bg__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.movieArea .mv__bg__seat {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.collaboration {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 10em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .collaboration {
    padding-block: 6em;
  }
}
.collaboration__content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .collaboration__content {
    flex-direction: row;
  }
}
.collaboration_company {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3.5em;
}
@media screen and (max-width: 768px) {
  .collaboration_company {
    flex-direction: column;
    gap: 1em;
    width: 40%;
  }
}
.collaboration_company_block {
  text-align: center;
}
.collaboration_company_block h2 {
  font-size: 1.8em;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .collaboration_company_block h2 {
    font-size: 1.4em;
  }
}
.collaboration_company_block h2::after {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #7ed6a7, transparent);
}
.collaboration_company_block p.cross {
  font-size: 1.6em;
}
.collaboration_company_block.company01 h2 {
  position: relative;
}
.collaboration_company_block.company01 h2::after {
  background: linear-gradient(to right, #b3a355, transparent);
}
.collaboration_company_block.company02 h2::after {
  background: linear-gradient(to right, #92f6b8, transparent);
}
.collaboration_company_block.company03 h2::after {
  background: linear-gradient(to right, #4c9cf9, transparent);
}
.collaboration_lead {
  font-size: 1.75em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .collaboration_lead {
    margin-top: 0;
    font-size: 1.4em;
    width: 50%;
  }
}
@media screen and (max-width: 1280px) {
  .collaboration .mv__st.st01 {
    top: -20%;
  }
}
@media screen and (max-width: 768px) {
  .collaboration .mv__st.st01 {
    top: -26%;
  }
}
.collaboration .mv__st.st02 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .collaboration .mv__st.st02 {
    width: 20em;
    bottom: -2em;
  }
}

.futureArea {
  position: relative;
  z-index: 2;
  background: #3e3a39;
  padding-top: 13.125em;
}
@media screen and (max-width: 768px) {
  .futureArea {
    padding-top: 6em;
  }
}
.futureArea .future_goal {
  max-width: 57.625em;
  width: 90%;
  margin: 0 auto;
}
.futureArea_goal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.5;
  height: 62.5em;
}
@media screen and (max-width: 768px) {
  .futureArea_goal__bg {
    height: 46.5em;
  }
}
.futureArea_goal__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}

.floating-banner {
  position: fixed;
  bottom: 3em;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .floating-banner {
    bottom: 0;
    flex-direction: row;
    gap: 0em;
    width: 100%;
  }
}

.mv__logo-block {
  width: 13.75em;
  height: 6.25em;
  background: #fff;
  border-radius: 0.25em 0 0 0.25em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mv__logo-block {
    width: 33.3333333333%;
    height: 5em;
  }
}
.mv__logo-block img {
  width: 8.4375em;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .mv__logo-block img {
    width: auto;
    height: 1.5em;
  }
}
.mv__logo-block:empty::after {
  content: "LOGO";
  color: #aaa;
  font-size: 1.1em;
}
.mv__logo-block:hover {
  background-color: #eaeaea;
  opacity: 1;
}
.mv__logo-block:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .mv__logo-block:last-child img {
    height: 2.8em;
  }
}

.future_goal {
  position: relative;
  width: 100%;
  height: 46em;
  margin: 0 auto 5em auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.future_goal .future_goal__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
}
.future_goal .future_goal__center .future_goal__lead {
  font-size: 2.0625em;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__center .future_goal__lead {
    font-size: 1.5em;
  }
}
.future_goal .future_goal__center .future_goal__title {
  font-size: 4.9375em;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.1em;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__center .future_goal__title {
    font-size: 3.5em;
  }
}
.future_goal .future_goal__center .future_goal__subtitle {
  font-size: 1.4875em;
  color: #bdbdbd;
  margin-top: 0.5em;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__center .future_goal__subtitle {
    font-size: 1.2em;
  }
}
.future_goal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46em;
  height: 46em;
  border: 1.5px solid #bdbdbd;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .future_goal::before {
    width: 30em;
    height: 30em;
  }
}
.future_goal .future_goal__circle {
  position: absolute;
  width: 17em;
  height: 17em;
  border-radius: 50%;
  background: #181818;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.18);
  text-align: center;
  z-index: 2;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle {
    width: 11em;
    height: 11em;
  }
}
.future_goal .future_goal__circle--safety {
  left: 0;
  top: 2.625em;
  box-shadow: 1px 1px #7ed6a7;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle--safety {
    top: 4.625em;
  }
}
.future_goal .future_goal__circle--health {
  right: 0;
  top: 2.625em;
  box-shadow: 1px 1px #4c9cf9;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle--health {
    top: 4.625em;
  }
}
.future_goal .future_goal__circle--stressfree {
  left: 50%;
  bottom: -5em;
  transform: translateX(-50%);
  box-shadow: 1px 1px #b3a355;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle--stressfree {
    bottom: 4em;
  }
}
.future_goal .future_goal__circle-title {
  font-size: 2.125em;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle-title {
    font-size: 1.4em;
  }
}
.future_goal .future_goal__circle-title span {
  display: block;
  font-size: 0.7126436782em;
  color: #7ed6a7;
  font-family: "Zen Old Mincho", serif;
  font-style: italic;
  margin-top: 0.2em;
}
.future_goal .future_goal__circle--health .future_goal__circle-title span {
  color: #4c9cf9;
}
.future_goal .future_goal__circle--stressfree .future_goal__circle-title span {
  color: #b3a355;
}
.future_goal .future_goal__circle-desc {
  font-size: 1.2em;
  color: #fff;
  line-height: 1.5;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .future_goal .future_goal__circle-desc {
    font-size: 0.9em;
  }
}

.componentArea {
  position: relative;
  z-index: 2;
  margin-top: 15em;
  /* Moving Dot */
  /* Safety label */
}
@media screen and (max-width: 768px) {
  .componentArea {
    margin-top: 6em;
  }
}
.componentArea .container {
  position: relative;
}
.componentArea .container:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: #fff;
}
.componentArea .container_wrapper {
  max-width: 67.25em;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.componentArea .content-section {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 14.375em;
}
@media screen and (max-width: 1000px) {
  .componentArea .content-section {
    padding-top: 9.375em;
  }
}
@media screen and (max-width: 768px) {
  .componentArea .content-section {
    padding-top: 6em;
  }
}
.componentArea .content-section.safety-section {
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  border-radius: 10em 0 0 0;
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.safety-section {
    border-radius: 7em 0 0 0;
  }
}
.componentArea .content-section.safety-section .safety_inner {
  position: relative;
  z-index: 4;
  padding-left: 8.125em;
  padding-bottom: 12.5em;
}
@media screen and (max-width: 1000px) {
  .componentArea .content-section.safety-section .safety_inner {
    padding-left: 5.125em;
  }
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.safety-section .safety_inner {
    padding-left: 2.5em;
    padding-bottom: 7em;
  }
}
.componentArea .content-section.stressfree-section {
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
  border-radius: 0 10em 0 0;
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.stressfree-section {
    border-radius: 0 7em 0 0;
  }
}
.componentArea .content-section.stressfree-section .stressfree_inner {
  position: relative;
  z-index: 4;
  padding-left: 8.125em;
  padding-bottom: 12.5em;
}
@media screen and (max-width: 1000px) {
  .componentArea .content-section.stressfree-section .stressfree_inner {
    padding-left: 5.125em;
  }
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.stressfree-section .stressfree_inner {
    padding-left: 0em;
    padding-right: 2.5em;
    padding-bottom: 7em;
  }
}
.componentArea .content-section.stressfree-section .moving-dot {
  right: 0;
  left: auto;
  position: sticky;
  margin-left: auto;
  transform: translate(50%, 50%);
  background: radial-gradient(circle, #b3a355 0%, #b3a355 100%);
  box-shadow: 0 0 20px rgba(179, 163, 85, 0.8), 0 0 40px rgba(179, 163, 85, 0.4);
}
.componentArea .content-section.health-section {
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  border-radius: 10em 0 0 0;
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.health-section {
    border-radius: 7em 0 0 0;
  }
}
.componentArea .content-section.health-section .health_inner {
  position: relative;
  z-index: 4;
  padding-left: 8.125em;
  padding-bottom: 12.5em;
}
@media screen and (max-width: 1000px) {
  .componentArea .content-section.health-section .health_inner {
    padding-left: 5.125em;
  }
}
@media screen and (max-width: 768px) {
  .componentArea .content-section.health-section .health_inner {
    padding-left: 2.5em;
    padding-bottom: 7em;
  }
}
.componentArea .content-section.health-section .moving-dot {
  left: 0;
  right: auto;
  transform: translate(-50%, 50%);
  background: radial-gradient(circle, #4c9cf9 0%, #4c9cf9 100%);
  box-shadow: 0 0 20px rgba(76, 156, 249, 0.8), 0 0 40px rgba(76, 156, 249, 0.4);
}
.componentArea .content-section_ttl {
  font-size: 8.75em;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .componentArea .content-section_ttl {
    font-size: 4.75em;
  }
}
.componentArea .content-section_desc.headline01 {
  font-size: 1.875em;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .componentArea .content-section_desc.headline01 {
    font-size: 1.3em;
    text-align: justify;
  }
}
.componentArea .content-section_desc.headline01 .headline02 {
  font-size: 1.4em;
}
.componentArea .content-section_txt {
  font-size: 1.125em;
  margin-top: 1.5em;
  max-width: 35.5em;
  text-align: justify;
  line-height: 2;
}
.componentArea .content-section_txt.w100 {
  max-width: 90%;
  margin-top: 3em;
}
.componentArea #safety-section .migusa_block {
  width: 88%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .componentArea #safety-section .migusa_block {
    width: 100%;
  }
}
.componentArea #safety-section .migusa_block_fb {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .migusa_block_fb {
    flex-direction: column;
  }
}
.componentArea #safety-section .migusa_block_txtArea {
  width: 37.8%;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .migusa_block_txtArea {
    width: 100%;
  }
}
.componentArea #safety-section .migusa_block_imgArea {
  width: 56.1%;
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .migusa_block_imgArea {
    margin: 1em 1em 0 auto;
  }
}
.componentArea #safety-section .migusa_block_room {
  position: absolute;
  bottom: 0;
  left: -10em;
  width: 48.5%;
}
@media screen and (max-width: 1000px) {
  .componentArea #safety-section .migusa_block_room {
    bottom: 2em;
    left: -7em;
  }
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .migusa_block_room {
    bottom: 5em;
    left: -3.5em;
  }
}
.componentArea #safety-section .migusa_block_room img {
  width: 100%;
}
.componentArea #safety-section .migusa-brand {
  width: 20.25em;
  margin-top: 5.25em;
}
.componentArea #safety-section .migusa-brand img {
  width: 100%;
}
.componentArea #safety-section .safety_lifespan_graph {
  width: 93%;
  margin-top: 8.125em;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .safety_lifespan_graph {
    width: 100%;
    margin-top: 4em;
  }
}
.componentArea #safety-section .safety_select {
  margin-top: 12.5em;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .safety_select {
    margin-top: 5.5em;
  }
}
.componentArea #safety-section .safety_select_fb {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 114%;
  margin-left: -20%;
  margin-top: 4.25em;
}
@media screen and (max-width: 1000px) {
  .componentArea #safety-section .safety_select_fb {
    margin-left: -14%;
  }
}
.componentArea #safety-section .safety_select_imgArea01 {
  width: 59.25%;
}
.componentArea #safety-section .safety_select_imgArea01 .cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.componentArea #safety-section .safety_select_imgArea01 .cols .img {
  width: 24%;
}
.componentArea #safety-section .safety_select_imgArea01 .cols .img:nth-of-type(1) {
  padding-top: 18em;
}
@media screen and (max-width: 768px) {
  .componentArea #safety-section .safety_select_imgArea01 .cols .img:nth-of-type(1) {
    padding-top: 9em;
  }
}
.componentArea #safety-section .safety_select_imgArea01 .cols .img:nth-of-type(2) {
  padding-top: 3em;
}
.componentArea #safety-section .safety_select_imgArea01 .cols .img:nth-of-type(4) {
  padding-top: 4em;
}
.componentArea #safety-section .safety_select_imgArea02 {
  width: 37%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.componentArea #stressfree-section .stressfree_relax {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 4.375em;
}
.componentArea #stressfree-section .stressfree_relax_block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block {
    width: 100%;
    gap: 0;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_image {
  width: 22em;
  height: 22em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_image {
    width: 10em;
    height: 10em;
    margin-right: 1em;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle01 {
  padding: 0.9375em;
  border: 0.03125em solid #ae9e55;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle01 {
    padding: 0.2em;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle02 {
  padding: 0.9375em;
  border: 0.03125em solid #808080;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle02 {
    padding: 0.2em;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 {
  position: relative;
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 img {
  opacity: 0.4;
  position: relative;
  z-index: 2;
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 .image_circle_name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 2em;
  letter-spacing: 0.05em;
  z-index: 2;
  width: 100%;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 .image_circle_name {
    font-size: 1.2em;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 .image_circle_name .en {
  font-family: "Zen Old Mincho", serif;
  font-size: 0.625em;
  margin-top: 0.3em;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_txtArea {
    width: 57%;
  }
}
.componentArea #stressfree-section .stressfree_relax_block_txtArea p {
  font-size: 1.125em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_block_txtArea p {
    font-size: 0.9em;
    line-height: 1.5;
    text-align: justify;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block {
  width: 22em;
  height: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block {
    width: 10em;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.componentArea #stressfree-section .stressfree_relax_space_block .stressfree_relax_space_dots {
  width: 0.625em;
  height: 0.625em;
  border-radius: 50%;
  background-color: #ae9e55;
  position: absolute;
  top: -0.3125em;
  left: 50.14%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.componentArea #stressfree-section .stressfree_relax_space_block .stressfree_relax_space_dots.bottom {
  top: auto;
  bottom: -0.3125em;
}
.componentArea #stressfree-section .stressfree_relax_space_block .stressfree_relax_space_line {
  width: 0.03125em;
  height: 23.375em;
  background-color: #ae9e55;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block .stressfree_relax_space_line {
    height: 15em;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block_ttl {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 1.75em;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_ttl {
    font-size: 1.2em;
    left: 35%;
    line-height: 0;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block_ttl p {
  writing-mode: vertical-rl;
}
.componentArea #stressfree-section .stressfree_relax_space_block_ttl.en {
  font-size: 1.5em;
  left: 60%;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_ttl.en {
    font-size: 1.3em;
    left: 65%;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block_img {
  position: absolute;
  top: 0%;
  right: -50vw;
  width: 55vw;
}
@media screen and (min-width: 1440px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_img {
    width: 50em;
    right: -217%;
  }
}
@media screen and (max-width: 1280px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_img {
    width: 47vw;
    right: -45vw;
  }
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_img {
    width: 64vw;
    right: -59vw;
    top: 5%;
  }
}
.componentArea #stressfree-section .stressfree_relax_space_block_furniture {
  position: absolute;
  bottom: -9vw;
  right: -35vw;
  width: 13vw;
}
@media screen and (min-width: 1440px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_furniture {
    width: 11.875em;
    right: -140%;
    bottom: -40%;
  }
}
@media screen and (max-width: 1280px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_furniture {
    width: 18vw;
    right: -30vw;
    bottom: -7vw;
  }
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_relax_space_block_furniture {
    width: 21vw;
    right: -41vw;
    bottom: -6vw;
  }
}
.componentArea #stressfree-section .stressfree_airloop {
  margin-top: 10.75em;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop {
    margin-top: 6em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_lead {
  font-size: 1.875em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_lead {
    font-size: 1.4em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_block {
  margin-top: 8.5em;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_block {
    width: 100%;
    margin-top: 5em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea {
  width: 49%;
  position: relative;
  z-index: 2;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea .productName {
  padding-top: 2em;
  width: 90%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea .productName {
    padding-top: 0;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea .productName_txt {
  font-size: 1em;
  letter-spacing: 0.05em;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea .productName_since {
  font-size: 1.15em;
  letter-spacing: 0.05em;
  text-align: right;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea .productName_thisLine {
  position: absolute;
  top: 60%;
  right: -38%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 7.5em;
  height: 0.125em;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea .productName_thisLine {
    right: -46%;
    top: 49%;
    width: 4.5em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea .productName_thisLine::after {
  content: "";
  position: absolute;
  top: 49%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background-color: #fff;
  border-radius: 50%;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea {
  width: 100%;
  margin-top: 2em;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock {
    width: 56%;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p {
  font-size: 0.95em;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0;
}
@media screen and (max-width: 1280px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 1000px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p {
    font-size: 0.9em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p.note {
  font-size: 0.75em;
  margin-top: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p.note {
    font-size: 0.65em;
  }
}
@media screen and (max-width: 1000px) {
  .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p.note {
    font-size: 0.7em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .imgBlock {
  width: 37%;
  text-align: center;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .imgBlock p {
  font-size: 0.65em;
  margin-top: 0.5em;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .detailBtn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  margin-top: 3em;
  padding: 0.7em 0;
  background-color: #ae9e55;
  color: #fff;
  border-radius: 5em;
  border: 0.03125em solid #fff;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .detailBtn span {
  font-size: 0.8em;
  margin-left: 0.5em;
}
.componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .detailBtn:hover {
  background-color: #ae9e55;
  color: #fff;
}
.componentArea #stressfree-section .stressfree_airloop_item {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding-top: 5em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .componentArea #stressfree-section .stressfree_airloop_item {
    padding-top: 2.5em;
  }
}
.componentArea #stressfree-section .stressfree_airloop_parts {
  width: 100%;
}
.componentArea #stressfree-section .stressfree_airloop_parts.part01 {
  position: absolute;
  top: 12%;
  z-index: 3;
  width: 100%;
}
.componentArea #stressfree-section .stressfree_airloop_parts.part02 {
  position: absolute;
  top: 16%;
  z-index: 2;
  width: 90%;
}
.componentArea #stressfree-section .stressfree_airloop_parts.part03 {
  position: relative;
  z-index: 1;
  width: 100%;
}
.componentArea #health-section .health_inner {
  position: relative;
  padding-bottom: 0;
}
.componentArea #health-section .health_headArea {
  position: relative;
  z-index: 2;
}
.componentArea #health-section .health_sensorArea {
  padding-top: 7.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .componentArea #health-section .health_sensorArea {
    padding-bottom: 6em;
  }
}
.componentArea #health-section .health_sensorArea .sensor_img01 {
  max-width: 65.125em;
  width: 90%;
  margin: 0 auto;
}
.componentArea #health-section .health_sensorArea .sensor_img02 {
  position: absolute;
  top: 4em;
  left: 0;
  width: 24.875em;
}
@media screen and (max-width: 768px) {
  .componentArea #health-section .health_sensorArea .sensor_img02 {
    top: 1em;
    left: -3em;
    width: 14.875em;
  }
}
.componentArea #health-section .health_sensorArea .sensor_img03 {
  position: absolute;
  bottom: 18em;
  left: -13em;
  width: 27.5em;
}
@media screen and (max-width: 768px) {
  .componentArea #health-section .health_sensorArea .sensor_img03 {
    bottom: 3em;
    left: -5em;
    width: 19.5em;
  }
}
.componentArea #health-section .health_sensorArea .sensor_img04 {
  position: absolute;
  bottom: 20em;
  right: 0em;
  width: 18.9375em;
}
@media screen and (max-width: 768px) {
  .componentArea #health-section .health_sensorArea .sensor_img04 {
    bottom: 23em;
    right: -1em;
    width: 13.9375em;
  }
}
.componentArea .health_imgArea_wrapper {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 87.5em;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.componentArea .health_imgArea_wrapper .health_imgArea {
  position: absolute;
  bottom: 30em;
  left: 85%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 75.625em;
  margin-top: 3em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .componentArea .health_imgArea_wrapper .health_imgArea {
    left: 90%;
    width: 32em;
    opacity: 0.7;
    bottom: 41em;
  }
}
.componentArea .health_imgArea_wrapper .health_imgArea_graph {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .componentArea .health_imgArea_wrapper .health_imgArea_graph {
    width: 250%;
    top: 79%;
  }
}
.componentArea .moving-dot {
  position: sticky;
  width: 1em;
  height: 1em;
  background: radial-gradient(circle, #00ff88 0%, #00cc66 100%);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.4);
  transform: translate(-50%, 50%);
  top: 11.25em;
}
.componentArea .moving-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.componentArea .safety-label {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #00ff88;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9em;
  z-index: 1001;
  border: 2px solid #00ff88;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.custom-summary {
  padding-top: 22.5em;
  background-color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .custom-summary {
    height: 100svh;
    padding-top: 0;
  }
}
.custom-summary .summary-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}
.custom-summary .summary-earth-block {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .custom-summary .summary-earth-block {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
  }
}
.custom-summary .summary-earth-block .summary-texts {
  text-align: center;
}
.custom-summary .summary-earth-block .summary-texts .mv__title {
  color: #fff;
  font-size: 2.6em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .custom-summary .summary-earth-block .summary-texts .mv__title {
    font-size: 1.7em;
  }
}
.custom-summary .summary-earth-block .summary-texts .summary-subtitle {
  font-size: 4.4375em;
  color: #fff;
  margin-top: 0.2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .custom-summary .summary-earth-block .summary-texts .summary-subtitle {
    font-size: 2.6em;
  }
}
.custom-summary .summary-earth-block .summary-texts .summary-subtitle [data-ruby]::before {
  color: #c6c7c7;
  top: -1.1em;
}
.custom-summary .summary-tatami-block {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 10em;
}
@media screen and (max-width: 768px) {
  .custom-summary .summary-tatami-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 0;
  }
}
.custom-summary .summary-copyright {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.75em;
  letter-spacing: 0.08em;
  opacity: 0.8;
  z-index: 10;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .custom-summary .summary-copyright {
    font-size: 0.6em;
  }
}

.wahealth.en .newyork {
  font-family: "newyork", serif;
}
@media screen and (max-width: 768px) {
  .wahealth.en .nav-overlay__item {
    padding-top: 2em;
    margin-top: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .nav-overlay.active .nav-overlay__item:nth-child(1) {
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .nav-overlay__list .menuArea_item_title {
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .mv__title {
    font-size: 2.2em;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .mv__subtitle {
    font-size: 1.1em;
    letter-spacing: 0;
  }
}
.wahealth.en .collaboration_lead {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .wahealth.en .collaboration_lead {
    text-align: justify;
    font-size: 1em;
  }
}
.wahealth.en .future_goal .future_goal__center .future_goal__lead {
  letter-spacing: 0;
}
.wahealth.en .future_goal .future_goal__center .future_goal__title {
  letter-spacing: 0;
}
.wahealth.en .future_goal .future_goal__circle {
  font-family: "newyork", serif;
}
.wahealth.en .future_goal .future_goal__circle-title.ttl01 {
  color: #92f6b8;
}
.wahealth.en .future_goal .future_goal__circle-title.ttl02 {
  color: #4c97f4;
}
.wahealth.en .future_goal .future_goal__circle-title.ttl03 {
  color: #ae9e55;
}
.wahealth.en .future_goal .future_goal__circle-desc {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .wahealth.en .future_goal .future_goal__circle-desc {
    font-size: 0.7em;
  }
}
.wahealth.en .componentArea .content-section_ttl {
  font-family: "newyork", serif;
  font-size: 6em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea .content-section_ttl {
    font-size: 3.7em;
  }
}
.wahealth.en .componentArea .content-section_desc.headline01 {
  font-size: 1em;
  line-height: 2;
  margin-top: 3em;
}
.wahealth.en .componentArea .content-section_txt {
  font-size: 1em;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea .content-section_txt {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea .content-section_desc.headline01 .headline02 {
    line-height: 1.6;
    margin-top: 1em;
    font-size: 1.6em;
  }
}
.wahealth.en .componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 .image_circle_name {
  font-family: "newyork", serif;
  font-size: 1.8em;
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea #stressfree-section .stressfree_relax_block_image .image_circle.circle03 .image_circle_name {
    font-size: 1.2em;
  }
}
.wahealth.en .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea .exArea_fb .txtBlock p.note {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea #stressfree-section .stressfree_relax_block_txtArea p {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .wahealth.en .componentArea #stressfree-section .stressfree_airloop_txtArea_exArea {
    margin-top: -1em;
  }
}
.wahealth.en .custom-summary .summary-earth-block .summary-texts .mv__title {
  font-size: 2.4em;
}
@media screen and (max-width: 768px) {
  .wahealth.en .custom-summary .summary-earth-block .summary-texts .mv__title {
    font-size: 1.8em;
  }
}
.wahealth.en .custom-summary .summary-earth-block .summary-texts .summary-subtitle {
  font-size: 4em;
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .wahealth.en .custom-summary .summary-earth-block .summary-texts .summary-subtitle {
    font-size: 2.4em;
    letter-spacing: 0;
    margin-top: 1em;
  }
}/*# sourceMappingURL=style.css.map */