@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* add original reset style */
html {
  /* iPhone safariで文字サイズが大きくなるバグを回避 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(50%, 0.9vw, 62.5%);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", Meiryo, メイリオ, Osaka, sans-serif;
  color: #333;
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  font-weight: normal;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}

*:target {
  scroll-margin-top: 13.5rem;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

.relative {
  position: relative;
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-mask-image: none !important;
          mask-image: none !important;
}

input[name=tab-item] {
  display: none;
}

area {
  cursor: pointer;
}

.c-title {
  text-align: center;
}
.c-title span {
  display: inline-block;
  width: 10.6rem;
  padding: 0.38em 0.2em;
  border: 0.1rem solid #000;
  border-radius: 30rem;
  background-color: #2BA553;
  color: #FFF;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .c-title span {
    font-size: 1.5rem;
  }
}
.c-title-dotted {
  text-align: center;
}
.c-title-dotted img {
  max-height: 5rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-title-dotted img {
    height: 3rem;
  }
}

.c-inner {
  max-width: 108rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.l-footer {
  padding: 6rem 0;
  background-image: url(../images/footer-bg.png);
  background-position: center;
  background-size: 70%;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3rem 0;
  }
}
.l-footer__title {
  text-align: center;
}
.l-footer__title img {
  width: auto;
  height: 6.6rem;
}
@media screen and (max-width: 768px) {
  .l-footer__title img {
    height: 4rem;
  }
}
.l-footer address {
  color: #FFF;
  text-align: center;
}
.l-footer address .lg {
  margin-top: 0.5em;
  font-size: 2.9rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .l-footer address .lg {
    font-size: 1.8rem;
  }
}
.l-footer address .lg span {
  font-size: 0.58em;
}
.l-footer address .md {
  margin-top: 1em;
  font-size: 2.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .l-footer address .md {
    font-size: 1.6rem;
  }
}
.l-footer address .sm {
  margin-top: 1.5em;
  font-size: 2.1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .l-footer address .sm {
    font-size: 1.4rem;
  }
}

.p-top-bg__net {
  background-size: 70%;
}
.p-top-bg__net.is_green {
  background-image: url(../images/bg-net-gr.png);
}
.p-top-bg__net.is_orange {
  background-image: url(../images/bg-net-or.png);
}
.p-top__caution {
  text-align: right;
  font-weight: 500;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .p-top__caution {
    text-align: center;
    font-size: 1.1rem;
  }
}
.p-top-section__head {
  text-align: center;
}
.p-top-section__head h2 img {
  max-height: 16rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-top-section__head h2 img {
    max-height: 8rem;
  }
}
.p-top-section__head p {
  display: inline-block;
  min-width: 13em;
  padding: 0.3em 0.5em;
  border: 0.1rem solid #000;
  border-radius: 30rem;
  background-color: #2ba553;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top-section__head p {
    font-size: 1.4rem;
  }
}
.p-top-section__head small {
  display: block;
  margin-top: 1em;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-section__head small {
    font-size: 1.2rem;
  }
}
.p-top__dl {
  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;
}
.p-top__dl dt {
  display: inline-block;
  width: 10.6rem;
  padding: 0.38em 0.2em;
  border: 0.1rem solid #000;
  border-radius: 30rem;
  background-color: #2ba553;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top__dl dt {
    width: 7rem;
    font-size: 1.4rem;
  }
}
.p-top__dl dd {
  margin-left: 0.7em;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top__dl dd {
    font-size: 1.7rem;
  }
}
.p-top-mainview {
  position: relative;
}
.p-top-mainview__bg {
  background-image: url(../images/mv-bg.png);
  background-size: cover;
  aspect-ratio: 1700/980;
}
@media screen and (max-width: 768px) {
  .p-top-mainview__bg {
    aspect-ratio: 375/382;
  }
}
.p-top-mainview__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-top-lead {
  padding-top: 7.5rem;
  padding-bottom: 12.6rem;
  background-image: url(../images/lead-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-lead {
    padding-top: 3.8rem;
    padding-bottom: 9rem;
  }
}
.p-top-lead__text {
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.51;
}
@media screen and (max-width: 768px) {
  .p-top-lead__text {
    font-size: 1.7rem;
  }
}
.p-top-lead__balloon {
  width: auto;
  height: 4.1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-lead__balloon {
    height: 2rem;
    margin-top: 2rem;
  }
}
.p-top-health {
  position: relative;
  padding-bottom: 7rem;
  background-color: rgba(89, 238, 64, 0.35);
}
@media screen and (max-width: 768px) {
  .p-top-health {
    padding-bottom: 5rem;
  }
}
.p-top-health::before, .p-top-health::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.93rem;
  background: rgba(89, 238, 64, 0.35);
  content: "";
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.p-top-health::before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-health::after {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-health .p-top-section__head {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
@media screen and (max-width: 768px) {
  .p-top-health .p-top-section__head {
    -webkit-transform: translateY(-30%);
            transform: translateY(-30%);
  }
}
.p-top-health__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-4rem);
          transform: translateY(-4rem);
  -webkit-column-gap: 2.6%;
     -moz-column-gap: 2.6%;
          column-gap: 2.6%;
  row-gap: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top-health__units {
    -webkit-transform: none;
            transform: none;
    row-gap: 4rem;
  }
}
.p-top-health__obj {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 24.6%;
  -webkit-transform: translate(-35%, -60%);
          transform: translate(-35%, -60%);
}
@media screen and (max-width: 768px) {
  .p-top-health__obj {
    width: 30%;
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
}
.p-top-health-unit {
  position: relative;
  width: 48.7%;
  padding: 5rem 2.5rem 4rem;
  border: 0.3rem solid #2ba553;
  border-radius: 5rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit {
    width: 100%;
    padding: 4rem 2rem 2rem;
    border-radius: 2rem;
  }
}
.p-top-health-unit__time {
  position: absolute;
  top: -1.4rem;
  right: -1.2rem;
  width: 10rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__time {
    width: 8rem;
  }
}
.p-top-health-unit__h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1em;
  border: 0.1rem solid #231815;
  border-radius: 30rem;
  background-color: #fff;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__h3 {
    font-size: 1.6rem;
  }
}
.p-top-health-unit__h3 span {
  display: inline-block;
  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;
  width: 1.3em;
  height: 1.3em;
  margin-left: 0.4em;
  border: 0.1rem solid #231815;
  border-radius: 50%;
  background-color: #2ba553;
  color: #fff;
  font-size: 1.74em;
}
.p-top-health-unit__theme {
  text-align: center;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__theme {
    margin-top: 0.5em;
    font-size: 1.8rem;
  }
}
.p-top-health-unit__lecture-post {
  margin-top: 0.5em;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.55;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__lecture-post {
    font-size: 1.5rem;
  }
}
.p-top-health-unit__lecture {
  margin-top: 0.3em;
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__lecture {
    font-size: 2.4rem;
  }
}
.p-top-health-unit__lecture span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.63em;
}
.p-top-health-unit__flex {
  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;
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__flex {
    margin-top: 2rem;
  }
}
.p-top-health-unit__image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__image {
    width: 100%;
    text-align: center;
  }
  .p-top-health-unit__image img {
    width: 50%;
  }
}
.p-top-health-unit__text {
  width: 58%;
  font-size: 1.4rem;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit__text {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.p-top-health-unit3 {
  max-width: 97rem;
  width: 100%;
  padding: 5rem 1rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3 {
    padding: 4rem 2rem 2rem;
  }
}
.p-top-health-unit3__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-top-health-unit3__text {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__text {
    width: 100%;
  }
}
.p-top-health-unit3__image {
  width: 18.8%;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__image {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__image img {
    width: 50%;
  }
}
.p-top-health-unit3__dl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__dl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3em;
  }
}
.p-top-health-unit3__dl dt {
  width: 6em;
}
.p-top-health-unit3__dl dd {
  width: calc(100% - 6em);
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__dl dd {
    width: 100%;
    margin-left: 0;
  }
}
.p-top-health-unit3__lecture {
  font-weight: normal;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__lecture {
    margin-top: 0.5em;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.55;
  }
}
.p-top-health-unit3__lecture .name1 {
  margin-left: 0.5em;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__lecture .name1 {
    font-size: 2.4rem;
  }
}
.p-top-health-unit3__lecture .name2 {
  margin-left: 0.3em;
  font-weight: bold;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3__lecture .name2 {
    font-size: 1.5rem;
  }
}
.p-top-health-unit3 .p-top-health-unit__text {
  width: 100%;
  margin-top: 2em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-top-health-unit3 .p-top-health-unit__text {
    margin-top: 1.5rem;
  }
}
.p-top-life {
  position: relative;
  overflow: hidden;
  padding-top: 3.7rem;
  padding-bottom: 5.8rem;
  background-image: url(../images/life-bg.png);
  background-position: center;
  background-size: contain;
}
.p-top-life::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.93rem;
  background: #fff;
  content: "";
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-life .p-top-section__head p {
  background-color: #f39d2c;
}
.p-top-life .p-top__dl dt {
  background-color: #f39d2c;
}
.p-top-life .c-title span {
  background-color: #f39d2c;
}
.p-top-life__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-life__flex {
    margin-top: 4rem;
    row-gap: 4rem;
  }
}
.p-top-life__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 48.7%;
  row-gap: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-life__units {
    display: contents;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life__units:last-of-type {
    margin-top: 4rem;
  }
}
.p-top-life__obj {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 27.5%;
  -webkit-transform: translate(30%, -83%);
          transform: translate(30%, -83%);
}
@media screen and (max-width: 768px) {
  .p-top-life__obj {
    width: 30%;
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
  }
}
.p-top-life-unit {
  position: relative;
  padding: 5rem 4rem 3rem;
  border: 0.3rem solid #f39d2c;
  border-radius: 5rem;
  background-color: #fff8de;
}
@media screen and (max-width: 768px) {
  .p-top-life-unit {
    width: 100%;
    padding: 4rem 2rem;
    border-radius: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life-unit.is_unit1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life-unit.is_unit2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life-unit.is_unit3 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life-unit.is_unit4 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .p-top-life-unit.is_unit5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}
.p-top-life-unit__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6em 1em;
  border: 0.1rem solid #231815;
  border-radius: 30rem;
  background-color: #fff;
  font-weight: bold;
  font-size: 2.3rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-top-life-unit__tag {
    white-space: nowrap;
    font-size: 1.6rem;
  }
}
.p-top-life-unit__h3 {
  margin-top: 0.3em;
  color: #f39d2c;
  text-align: center;
  font-weight: bold;
  font-size: 3.7rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-top-life-unit__h3 {
    margin-top: 0.5em;
    font-size: 2rem;
  }
}
.p-top-life-unit__h3 span {
  font-size: 0.7em;
}
.p-top-life-unit__name {
  margin-top: 0.5em;
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top-life-unit__name {
    font-size: 1.8rem;
  }
}
.p-top-life-unit__name span {
  font-size: 0.63em;
}
.p-top-life-unit__profile {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.7;
}
.p-top-life-unit .p-top__dl {
  margin-top: 1em;
}
.p-top-life-unit .c-title {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-life-unit .c-title {
    margin-top: 1.5em;
  }
}
.p-top-wellness {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-image: url(../images/bg-net-bl.png);
  background-size: 70%;
}
.p-top-wellness .p-top-section__head p {
  background-color: #2ea7e0;
}
.p-top-wellness .p-top__dl dt {
  background-color: #2ea7e0;
}
.p-top-wellness::before, .p-top-wellness::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.93rem;
  background: #fff;
  content: "";
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.p-top-wellness::before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-wellness::after {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-wellness__units {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.5rem;
  -webkit-column-gap: 2.6%;
     -moz-column-gap: 2.6%;
          column-gap: 2.6%;
  row-gap: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness__units {
    row-gap: 2rem;
  }
}
.p-top-wellness__obj {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 23%;
  -webkit-transform: translate(25%, -60%);
          transform: translate(25%, -60%);
}
@media screen and (max-width: 768px) {
  .p-top-wellness__obj {
    width: 30%;
    -webkit-transform: translate(0, -30%);
            transform: translate(0, -30%);
  }
}
.p-top-wellness-unit {
  position: relative;
  width: 48.7%;
  padding: 5rem 2rem 4rem;
  border: 0.3rem solid #2ea7e0;
  border-radius: 5rem;
  background-color: #efffff;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit {
    width: 100%;
    padding: 2rem;
    border-radius: 2rem;
  }
}
.p-top-wellness-unit__h3 {
  color: #2ea7e0;
  text-align: center;
  font-weight: bold;
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit__h3 {
    font-size: 1.8rem;
  }
}
.p-top-wellness-unit__balloon {
  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;
  margin-top: 0.76em;
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit__balloon {
    text-align: center;
    font-size: 1.5rem;
  }
}
.p-top-wellness-unit__balloon::before, .p-top-wellness-unit__balloon::after {
  display: block;
  width: 0.15rem;
  height: 1.24em;
  background-color: #000;
  content: "";
}
.p-top-wellness-unit__balloon::before {
  margin-right: 0.5em;
  -webkit-transform: rotate(-27deg);
          transform: rotate(-27deg);
}
.p-top-wellness-unit__balloon::after {
  margin-left: 0.5em;
  -webkit-transform: rotate(27deg);
          transform: rotate(27deg);
}
.p-top-wellness-unit__text {
  margin-top: 1em;
  font-size: 1.7rem;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit__text {
    font-size: 1.4rem;
  }
}
.p-top-wellness-unit__text.is_asterisk {
  padding-left: 1em;
  text-indent: -1em;
}
.p-top-wellness-unit .p-top-wellness-unit1__images {
  position: relative;
  max-width: 34.4rem;
  margin: 0 auto;
  margin-top: 2rem;
}
.p-top-wellness-unit .p-top-wellness-unit1__image2 {
  margin-top: 1.5rem;
}
.p-top-wellness-unit .p-top-wellness-unit1__image3 {
  position: absolute;
  right: -12.8%;
  bottom: -23.8%;
  width: 37.2%;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit1__image3 {
    display: none;
  }
}
.p-top-wellness-unit .p-top-wellness-unit1__dl {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4.4rem;
  row-gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit1__dl {
    margin-top: 2rem;
  }
}
.p-top-wellness-unit .p-top-wellness-unit1__dl dt {
  width: 5em;
}
.p-top-wellness-unit .p-top-wellness-unit1__dl dd {
  width: calc(100% - 5em);
}
.p-top-wellness-unit .p-top-wellness-unit2__dl {
  margin-top: 1em;
}
.p-top-wellness-unit .p-top-wellness-unit2__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__flex {
    margin-top: 4rem;
  }
}
.p-top-wellness-unit .p-top-wellness-unit2__texts {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__texts {
    width: 100%;
  }
}
.p-top-wellness-unit .p-top-wellness-unit2__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__image {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
  }
  .p-top-wellness-unit .p-top-wellness-unit2__image img {
    width: 90%;
  }
}
.p-top-wellness-unit .p-top-wellness-unit2__h4 {
  display: block;
  width: 19.8rem;
  padding: 0.5em 0;
  border: 0.2rem solid #5cd0e8;
  border-radius: 30rem;
  background-color: #fff;
  color: #2ea7e0;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__h4 {
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
.p-top-wellness-unit .p-top-wellness-unit2__text {
  margin-top: 0.5em;
  font-size: 1.7rem;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__text {
    font-size: 1.4rem;
  }
}
.p-top-wellness-unit .p-top-wellness-unit2__dl {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-top-wellness-unit .p-top-wellness-unit2__dl dt {
  width: 7rem;
  border-color: #5cd0e8;
  background-color: #5cd0e8;
  font-size: 1.2rem;
}
.p-top-wellness-unit .p-top-wellness-unit2__dl dd {
  margin-left: 0.3em;
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .p-top-wellness-unit .p-top-wellness-unit2__dl dd {
    font-size: 1.6rem;
  }
}
.p-top-hope {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: rgba(0, 177, 173, 0.3);
  background-image: url(../images/hope-bg.png);
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-top-hope {
    padding-top: 2rem;
  }
}
.p-top-hope .p-top-section__head p {
  background-color: #00b1ad;
}
.p-top-hope__inner {
  position: relative;
  max-width: 134.3rem;
  margin: 0 auto;
}
.p-top-hope__body {
  margin-top: 3rem;
}
.p-top-hope__obj {
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 1;
  width: 22.8%;
}
@media screen and (max-width: 768px) {
  .p-top-hope__obj {
    top: -3rem;
    left: 1rem;
    width: 30%;
  }
}
.p-top-gourmet {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffd9e0;
  background-image: url(../images/gourmet-bg.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-top-gourmet {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-image: none;
  }
}
.p-top-gourmet::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.93rem;
  background: #ffd9e0;
  content: "";
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-gourmet .p-top-section__head p {
  background-color: #ff7bac;
}
.p-top-gourmet .p-top__dl dt {
  background-color: #ff7bac;
}
.p-top-gourmet__inner {
  max-width: 136rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-gourmet__inner {
    padding: 0;
  }
}
.p-top-gourmet__body {
  margin-top: -19%;
}
.p-top-otanoshimi {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #fffcd9;
  background-image: url(../images/otanoshimi-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-top-otanoshimi {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-top-otanoshimi::before, .p-top-otanoshimi::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.93rem;
  background: #fffcd9;
  content: "";
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.p-top-otanoshimi::before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-otanoshimi::after {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-otanoshimi__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-top-otanoshimi__head {
  text-align: center;
}
.p-top-otanoshimi__head img {
  max-width: 82.2rem;
}
.p-top-otanoshimi__box {
  position: relative;
  padding: 4.5rem 23% 3rem 4rem;
  border-radius: 3rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-otanoshimi__box {
    margin-top: 2rem;
    padding: 3rem 1rem 2rem;
    border-radius: 1.5rem;
  }
}
.p-top-otanoshimi__img {
  position: absolute;
  top: 0;
  right: -1%;
  width: 22.7%;
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-top-otanoshimi__img {
    width: 21%;
    -webkit-transform: translateY(-85%);
            transform: translateY(-85%);
  }
}
.p-top-otanoshimi__h3 {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 0.4em 1em;
  border: 0.1rem solid #231815;
  border-radius: 30rem;
  background-color: #f39d2c;
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-top-otanoshimi__h3 {
    font-size: 1.5rem;
  }
}
.p-top-otanoshimi__list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-top-otanoshimi__list li {
    font-size: 1.4rem;
  }
}
.p-top-otanoshimi__list li::before {
  margin-right: 0.2em;
  color: #f39d2c;
  content: "●";
}
.p-top-timetable {
  padding-top: 5.8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-timetable {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-top-timetable__inner {
  max-width: 116.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-top-timetable__figure {
  margin-top: 3.8rem;
}
.p-top-venue {
  padding-top: 7.5rem;
  padding-bottom: 5.5rem;
  background-color: #e1f1f6;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-venue {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }
}
.p-top-venue::before, .p-top-venue::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 0.93rem;
  background: #e1f1f6;
  content: "";
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.p-top-venue::before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-venue::after {
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-venue__coming {
  margin-top: 3.8rem;
  text-align: center;
}
.p-top-venue__coming img {
  width: auto;
  height: 3.7rem;
}
@media screen and (max-width: 768px) {
  .p-top-venue__coming img {
    height: 2rem;
  }
}
.p-top-access {
  position: relative;
  padding-top: 5rem;
  background-color: #f6f4ed;
}
@media screen and (max-width: 768px) {
  .p-top-access {
    padding-top: 3rem;
  }
}
.p-top-access::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.93rem;
  background: #f6f4ed;
  content: "";
  -webkit-transform: translateY(-90%);
          transform: translateY(-90%);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-image: url(../images/mask-wave1.svg);
          mask-image: url(../images/mask-wave1.svg);
}
.p-top-access__inner {
  max-width: 89rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-top-access__figure {
  margin-top: 5.4rem;
}
@media screen and (max-width: 768px) {
  .p-top-access__figure {
    margin-top: 2.5rem;
  }
}
.p-top-access__link {
  margin-top: 2.5rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-top-access__link {
    text-align: center;
  }
}
.p-top-access__link a {
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}
.p-top-access__link a:hover {
  opacity: 0.8;
}
.p-top-access__link img {
  max-width: 32rem;
}
@media screen and (max-width: 768px) {
  .p-top-access__link img {
    max-width: 28rem;
  }
}
.p-top-parking {
  position: relative;
  padding-top: 5.3rem;
  padding-bottom: 6.5rem;
  background-color: #f6f4ed;
}
@media screen and (max-width: 768px) {
  .p-top-parking {
    padding-bottom: 3rem;
  }
}
.p-top-parking::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.93rem;
  background: #f6f4ed;
  content: "";
  -webkit-transform: translateY(90%);
          transform: translateY(90%);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-image: url(../images/mask-wave2.svg);
          mask-image: url(../images/mask-wave2.svg);
}
.p-top-parking__inner {
  max-width: 89rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-top-parking__figure {
  margin-top: 3.1rem;
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-inline-block {
  display: inline-block;
}
.u-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-d-inline {
  display: inline;
}
@media screen and (max-width: 500px) {
  .u-d-sp-none {
    display: none;
  }
  .u-d-sp-block {
    display: block;
  }
  .u-d-sp-inline-block {
    display: inline-block;
  }
  .u-d-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-sp-inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .u-d-tb-none {
    display: none;
  }
  .u-d-tb-block {
    display: block;
  }
  .u-d-tb-inline-block {
    display: inline-block;
  }
  .u-d-tb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-tb-inline {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .u-d-pc-none {
    display: none;
  }
  .u-d-pc-block {
    display: block;
  }
  .u-d-pc-inline-block {
    display: inline-block;
  }
  .u-d-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-pc-inline {
    display: inline;
  }
}

.u-m-0auto {
  margin: 0 auto !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-1em {
  margin-top: 1em !important;
}
.u-mt-2em {
  margin-top: 2em !important;
}
.u-mt-3em {
  margin-top: 3em !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-1em {
  margin-bottom: 1em !important;
}
.u-mb-2em {
  margin-bottom: 2em !important;
}
.u-mb-3em {
  margin-bottom: 3em !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-1em {
  margin-left: 1em !important;
}
.u-ml-2em {
  margin-left: 2em !important;
}
.u-ml-3em {
  margin-left: 3em !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-1em {
  margin-right: 1em !important;
}
.u-mr-2em {
  margin-right: 2em !important;
}
.u-mr-3em {
  margin-right: 3em !important;
}

.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-align-justify {
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .u-align-sp-left {
    text-align: left;
  }
  .u-align-sp-center {
    text-align: center;
  }
  .u-align-sp-right {
    text-align: right;
  }
  .u-align-sp-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .u-align-tb-left {
    text-align: left;
  }
  .u-align-tb-center {
    text-align: center;
  }
  .u-align-tb-right {
    text-align: right;
  }
  .u-align-tb-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 960px) {
  .u-align-pc-left {
    text-align: left;
  }
  .u-align-pc-center {
    text-align: center;
  }
  .u-align-pc-right {
    text-align: right;
  }
  .u-align-pc-justify {
    text-align: justify;
  }
}

.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline, .u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline, .u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline, .u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline, .u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline, .u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.u-flex-start-start.u-flex-wrap, .u-flex-start-center.u-flex-wrap, .u-flex-start-end.u-flex-wrap, .u-flex-start-stretch.u-flex-wrap, .u-flex-start-baseline.u-flex-wrap, .u-flex-center-start.u-flex-wrap, .u-flex-center-center.u-flex-wrap, .u-flex-center-end.u-flex-wrap, .u-flex-center-stretch.u-flex-wrap, .u-flex-center-baseline.u-flex-wrap, .u-flex-end-start.u-flex-wrap, .u-flex-end-center.u-flex-wrap, .u-flex-end-end.u-flex-wrap, .u-flex-end-stretch.u-flex-wrap, .u-flex-end-baseline.u-flex-wrap, .u-flex-between-start.u-flex-wrap, .u-flex-between-center.u-flex-wrap, .u-flex-between-end.u-flex-wrap, .u-flex-between-stretch.u-flex-wrap, .u-flex-between-baseline.u-flex-wrap, .u-flex-around-start.u-flex-wrap, .u-flex-around-center.u-flex-wrap, .u-flex-around-end.u-flex-wrap, .u-flex-around-stretch.u-flex-wrap, .u-flex-around-baseline.u-flex-wrap, .u-flex-evenly-start.u-flex-wrap, .u-flex-evenly-center.u-flex-wrap, .u-flex-evenly-end.u-flex-wrap, .u-flex-evenly-stretch.u-flex-wrap, .u-flex-evenly-baseline.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex-start-start.u-flex-column, .u-flex-start-center.u-flex-column, .u-flex-start-end.u-flex-column, .u-flex-start-stretch.u-flex-column, .u-flex-start-baseline.u-flex-column, .u-flex-center-start.u-flex-column, .u-flex-center-center.u-flex-column, .u-flex-center-end.u-flex-column, .u-flex-center-stretch.u-flex-column, .u-flex-center-baseline.u-flex-column, .u-flex-end-start.u-flex-column, .u-flex-end-center.u-flex-column, .u-flex-end-end.u-flex-column, .u-flex-end-stretch.u-flex-column, .u-flex-end-baseline.u-flex-column, .u-flex-between-start.u-flex-column, .u-flex-between-center.u-flex-column, .u-flex-between-end.u-flex-column, .u-flex-between-stretch.u-flex-column, .u-flex-between-baseline.u-flex-column, .u-flex-around-start.u-flex-column, .u-flex-around-center.u-flex-column, .u-flex-around-end.u-flex-column, .u-flex-around-stretch.u-flex-column, .u-flex-around-baseline.u-flex-column, .u-flex-evenly-start.u-flex-column, .u-flex-evenly-center.u-flex-column, .u-flex-evenly-end.u-flex-column, .u-flex-evenly-stretch.u-flex-column, .u-flex-evenly-baseline.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-flex-start-start.u-flex-row-reverse, .u-flex-start-center.u-flex-row-reverse, .u-flex-start-end.u-flex-row-reverse, .u-flex-start-stretch.u-flex-row-reverse, .u-flex-start-baseline.u-flex-row-reverse, .u-flex-center-start.u-flex-row-reverse, .u-flex-center-center.u-flex-row-reverse, .u-flex-center-end.u-flex-row-reverse, .u-flex-center-stretch.u-flex-row-reverse, .u-flex-center-baseline.u-flex-row-reverse, .u-flex-end-start.u-flex-row-reverse, .u-flex-end-center.u-flex-row-reverse, .u-flex-end-end.u-flex-row-reverse, .u-flex-end-stretch.u-flex-row-reverse, .u-flex-end-baseline.u-flex-row-reverse, .u-flex-between-start.u-flex-row-reverse, .u-flex-between-center.u-flex-row-reverse, .u-flex-between-end.u-flex-row-reverse, .u-flex-between-stretch.u-flex-row-reverse, .u-flex-between-baseline.u-flex-row-reverse, .u-flex-around-start.u-flex-row-reverse, .u-flex-around-center.u-flex-row-reverse, .u-flex-around-end.u-flex-row-reverse, .u-flex-around-stretch.u-flex-row-reverse, .u-flex-around-baseline.u-flex-row-reverse, .u-flex-evenly-start.u-flex-row-reverse, .u-flex-evenly-center.u-flex-row-reverse, .u-flex-evenly-end.u-flex-row-reverse, .u-flex-evenly-stretch.u-flex-row-reverse, .u-flex-evenly-baseline.u-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.u-flex-start-start.u-flex-column-reverse, .u-flex-start-center.u-flex-column-reverse, .u-flex-start-end.u-flex-column-reverse, .u-flex-start-stretch.u-flex-column-reverse, .u-flex-start-baseline.u-flex-column-reverse, .u-flex-center-start.u-flex-column-reverse, .u-flex-center-center.u-flex-column-reverse, .u-flex-center-end.u-flex-column-reverse, .u-flex-center-stretch.u-flex-column-reverse, .u-flex-center-baseline.u-flex-column-reverse, .u-flex-end-start.u-flex-column-reverse, .u-flex-end-center.u-flex-column-reverse, .u-flex-end-end.u-flex-column-reverse, .u-flex-end-stretch.u-flex-column-reverse, .u-flex-end-baseline.u-flex-column-reverse, .u-flex-between-start.u-flex-column-reverse, .u-flex-between-center.u-flex-column-reverse, .u-flex-between-end.u-flex-column-reverse, .u-flex-between-stretch.u-flex-column-reverse, .u-flex-between-baseline.u-flex-column-reverse, .u-flex-around-start.u-flex-column-reverse, .u-flex-around-center.u-flex-column-reverse, .u-flex-around-end.u-flex-column-reverse, .u-flex-around-stretch.u-flex-column-reverse, .u-flex-around-baseline.u-flex-column-reverse, .u-flex-evenly-start.u-flex-column-reverse, .u-flex-evenly-center.u-flex-column-reverse, .u-flex-evenly-end.u-flex-column-reverse, .u-flex-evenly-stretch.u-flex-column-reverse, .u-flex-evenly-baseline.u-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.u-flex-start-start.u-flex-grow-1, .u-flex-start-center.u-flex-grow-1, .u-flex-start-end.u-flex-grow-1, .u-flex-start-stretch.u-flex-grow-1, .u-flex-start-baseline.u-flex-grow-1, .u-flex-center-start.u-flex-grow-1, .u-flex-center-center.u-flex-grow-1, .u-flex-center-end.u-flex-grow-1, .u-flex-center-stretch.u-flex-grow-1, .u-flex-center-baseline.u-flex-grow-1, .u-flex-end-start.u-flex-grow-1, .u-flex-end-center.u-flex-grow-1, .u-flex-end-end.u-flex-grow-1, .u-flex-end-stretch.u-flex-grow-1, .u-flex-end-baseline.u-flex-grow-1, .u-flex-between-start.u-flex-grow-1, .u-flex-between-center.u-flex-grow-1, .u-flex-between-end.u-flex-grow-1, .u-flex-between-stretch.u-flex-grow-1, .u-flex-between-baseline.u-flex-grow-1, .u-flex-around-start.u-flex-grow-1, .u-flex-around-center.u-flex-grow-1, .u-flex-around-end.u-flex-grow-1, .u-flex-around-stretch.u-flex-grow-1, .u-flex-around-baseline.u-flex-grow-1, .u-flex-evenly-start.u-flex-grow-1, .u-flex-evenly-center.u-flex-grow-1, .u-flex-evenly-end.u-flex-grow-1, .u-flex-evenly-stretch.u-flex-grow-1, .u-flex-evenly-baseline.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.u-flex-start-start.u-flex-grow-0, .u-flex-start-center.u-flex-grow-0, .u-flex-start-end.u-flex-grow-0, .u-flex-start-stretch.u-flex-grow-0, .u-flex-start-baseline.u-flex-grow-0, .u-flex-center-start.u-flex-grow-0, .u-flex-center-center.u-flex-grow-0, .u-flex-center-end.u-flex-grow-0, .u-flex-center-stretch.u-flex-grow-0, .u-flex-center-baseline.u-flex-grow-0, .u-flex-end-start.u-flex-grow-0, .u-flex-end-center.u-flex-grow-0, .u-flex-end-end.u-flex-grow-0, .u-flex-end-stretch.u-flex-grow-0, .u-flex-end-baseline.u-flex-grow-0, .u-flex-between-start.u-flex-grow-0, .u-flex-between-center.u-flex-grow-0, .u-flex-between-end.u-flex-grow-0, .u-flex-between-stretch.u-flex-grow-0, .u-flex-between-baseline.u-flex-grow-0, .u-flex-around-start.u-flex-grow-0, .u-flex-around-center.u-flex-grow-0, .u-flex-around-end.u-flex-grow-0, .u-flex-around-stretch.u-flex-grow-0, .u-flex-around-baseline.u-flex-grow-0, .u-flex-evenly-start.u-flex-grow-0, .u-flex-evenly-center.u-flex-grow-0, .u-flex-evenly-end.u-flex-grow-0, .u-flex-evenly-stretch.u-flex-grow-0, .u-flex-evenly-baseline.u-flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.u-flex-start-start.u-flex-shrink-1, .u-flex-start-center.u-flex-shrink-1, .u-flex-start-end.u-flex-shrink-1, .u-flex-start-stretch.u-flex-shrink-1, .u-flex-start-baseline.u-flex-shrink-1, .u-flex-center-start.u-flex-shrink-1, .u-flex-center-center.u-flex-shrink-1, .u-flex-center-end.u-flex-shrink-1, .u-flex-center-stretch.u-flex-shrink-1, .u-flex-center-baseline.u-flex-shrink-1, .u-flex-end-start.u-flex-shrink-1, .u-flex-end-center.u-flex-shrink-1, .u-flex-end-end.u-flex-shrink-1, .u-flex-end-stretch.u-flex-shrink-1, .u-flex-end-baseline.u-flex-shrink-1, .u-flex-between-start.u-flex-shrink-1, .u-flex-between-center.u-flex-shrink-1, .u-flex-between-end.u-flex-shrink-1, .u-flex-between-stretch.u-flex-shrink-1, .u-flex-between-baseline.u-flex-shrink-1, .u-flex-around-start.u-flex-shrink-1, .u-flex-around-center.u-flex-shrink-1, .u-flex-around-end.u-flex-shrink-1, .u-flex-around-stretch.u-flex-shrink-1, .u-flex-around-baseline.u-flex-shrink-1, .u-flex-evenly-start.u-flex-shrink-1, .u-flex-evenly-center.u-flex-shrink-1, .u-flex-evenly-end.u-flex-shrink-1, .u-flex-evenly-stretch.u-flex-shrink-1, .u-flex-evenly-baseline.u-flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.u-flex-start-start.u-flex-shrink-o, .u-flex-start-center.u-flex-shrink-o, .u-flex-start-end.u-flex-shrink-o, .u-flex-start-stretch.u-flex-shrink-o, .u-flex-start-baseline.u-flex-shrink-o, .u-flex-center-start.u-flex-shrink-o, .u-flex-center-center.u-flex-shrink-o, .u-flex-center-end.u-flex-shrink-o, .u-flex-center-stretch.u-flex-shrink-o, .u-flex-center-baseline.u-flex-shrink-o, .u-flex-end-start.u-flex-shrink-o, .u-flex-end-center.u-flex-shrink-o, .u-flex-end-end.u-flex-shrink-o, .u-flex-end-stretch.u-flex-shrink-o, .u-flex-end-baseline.u-flex-shrink-o, .u-flex-between-start.u-flex-shrink-o, .u-flex-between-center.u-flex-shrink-o, .u-flex-between-end.u-flex-shrink-o, .u-flex-between-stretch.u-flex-shrink-o, .u-flex-between-baseline.u-flex-shrink-o, .u-flex-around-start.u-flex-shrink-o, .u-flex-around-center.u-flex-shrink-o, .u-flex-around-end.u-flex-shrink-o, .u-flex-around-stretch.u-flex-shrink-o, .u-flex-around-baseline.u-flex-shrink-o, .u-flex-evenly-start.u-flex-shrink-o, .u-flex-evenly-center.u-flex-shrink-o, .u-flex-evenly-end.u-flex-shrink-o, .u-flex-evenly-stretch.u-flex-shrink-o, .u-flex-evenly-baseline.u-flex-shrink-o {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.u-flex-start-start, .u-flex-center-start, .u-flex-end-start, .u-flex-between-start, .u-flex-around-start, .u-flex-evenly-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.u-flex-start-center, .u-flex-center-center, .u-flex-end-center, .u-flex-between-center, .u-flex-around-center, .u-flex-evenly-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex-start-end, .u-flex-center-end, .u-flex-end-end, .u-flex-between-end, .u-flex-around-end, .u-flex-evenly-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.u-flex-start-stretch, .u-flex-center-stretch, .u-flex-end-stretch, .u-flex-between-stretch, .u-flex-around-stretch, .u-flex-evenly-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.u-flex-start-baseline, .u-flex-center-baseline, .u-flex-end-baseline, .u-flex-between-baseline, .u-flex-around-baseline, .u-flex-evenly-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}