@charset "utf-8";

/* =========================================================================
   Reset & Base
   ========================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --base: 16;
  --z-go-top: 10;
  --z-header: 150;
  --z-drawer: 200;
  --z-hamburger: 300;
  --z-modal: 999;
  --z-loading: 1000;
  --c-body: #fff;
  --c-black: #000;
  --c-white: #fff;
  --c-font: #333;
  --main: #4da7a0;
  --inner: calc(990 / var(--base) * 1rem);
  --inner-lg: calc(1030 / var(--base) * 1rem);
  --inner-sm: calc(880 / var(--base) * 1rem);
  --inner-sp: 86%;
  --montserrat: "Montserrat", sans-serif;
  --notoSans: "Noto Sans JP", sans-serif;
  --zenKaku: "Zen Kaku Gothic New", sans-serif;
  --zenOld: "Zen Old Mincho", serif;
  --fs-10: 10 * 0.0625rem;
  --fs-11: 11 * 0.0625rem;
  --fs-12: 12 * 0.0625rem;
  --fs-13: 13 * 0.0625rem;
  --fs-14: 14 * 0.0625rem;
  --fs-15: 15 * 0.0625rem;
  --fs-16: 16 * 0.0625rem;
  --fs-17: 17 * 0.0625rem;
  --fs-18: 18 * 0.0625rem;
  --fs-19: 19 * 0.0625rem;
  --fs-20: 20 * 0.0625rem;
  --fs-21: 21 * 0.0625rem;
  --fs-22: 22 * 0.0625rem;
  --fs-23: 23 * 0.0625rem;
  --fs-24: 24 * 0.0625rem;
  --fs-25: 25 * 0.0625rem;
  --fs-26: 26 * 0.0625rem;
  --fs-27: 27 * 0.0625rem;
  --fs-28: 28 * 0.0625rem;
  --fs-29: 29 * 0.0625rem;
  --fs-30: 30 * 0.0625rem;
  --fs-31: 31 * 0.0625rem;
  --fs-32: 32 * 0.0625rem;
  --fs-33: 33 * 0.0625rem;
  --fs-34: 34 * 0.0625rem;
  --fs-35: 35 * 0.0625rem;
  --fs-36: 36 * 0.0625rem;
  --fs-37: 37 * 0.0625rem;
  --fs-38: 38 * 0.0625rem;
  --fs-39: 39 * 0.0625rem;
  --fs-40: 40 * 0.0625rem;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Noto Serif JP', 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.full-img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================================
   Typography
   ========================================================================= */
.small { font-size: 0.6em; }
.medium { font-size: 0.8em; }
.large { font-size: 1.5em; }

/* =========================================================================
   Layout & Sections
   ========================================================================= */

.l-header {
  z-index: var(--z-header);
  position: fixed;
  left: 0;
  width: 100%;
  height: 95px;
  transition: 0.3s;
  transition-property: transform;
}

.l-header-logo {
  z-index: var(--z-header);
  position: fixed;
  top: 11px;
  left: 54px;
  font-weight:normal;
}
.l-header-logo a {
  transition: 0.3s;
  transition-property: opacity;
}
.l-header-logo img {
  width: 4vw;
  max-width: 56px;
}

.l-header-logo__cont::after{
    content: "";
    position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgb(255, 255, 255, 0.6);
    filter: blur(0.5em);
}

.l-header-logo__title {
  color: #4a4d3c;
  font-weight:normal;
  font-size: clamp(0.875rem, -0.109375rem + 2.8125vw, 2rem);
  line-height: 1.4;
  font-family: var(--zenOld);
  letter-spacing: 0.03em;
}
.l-header-logo__txt {
  display: block;
  margin: 5px 0 0 0;
  color: #7d8166;
  font-weight: 500;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  line-height: 1.3;
  font-family: var(--montserrat);
  letter-spacing: 0.007em;
}
@media screen and (max-width: 48em){
  .l-header {
    top: 0;
    height: 60px;
  }
  .l-header-logo {
    margin:8px auto;
  }
  .l-header-logo img {
    width: 7vw;
    max-width: 26px;
  }
  .l-header-logo__cont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .l-header-menu__btn {
    top: 10px;
    right: 62px;
  }
  .l-header-menu__btn a {
    padding: calc(6 / var(--base) * 1rem) calc(18 / var(--base) * 1rem);
  }
  .l-header-nav {
    height: 100vh;
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 35em){
  .l-header-logo__txt {
    margin: 0 0 0 0;
    transform-origin: left;
    scale: 0.6;
  }
}
@media (hover: hover) and (pointer: fine){
  .l-header-logo a:hover {
    opacity: 0.7;
  }
  .l-header-menu__btn a:hover {
    translate: 0 3px;
    box-shadow: 0 0 0;
  }
}


section {
  position: relative;
  width: 100%;
}

/* MV Section */
.mv {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-content {
  text-align: center;
  z-index: 1;
  padding: 40px 20px;
}

.catch-group {
  margin-bottom: 50px;
  max-width:80%;
  margin:0 auto;
}

.logo-group {
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
}

.logo-group img {
  max-width: 100%;
}

/* Features */
.features {
  padding: 80px 20px;
  text-align: center;
}

.features-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.features-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  filter: drop-shadow(0px 0px 1px #d4af37) drop-shadow(0px 0px 1px #fdc71f) drop-shadow(0px 0px 4px #666) drop-shadow(0px -2px 1px #666);
}

.features-title span {
  display: block;
  background: linear-gradient(180deg, #fef0c5 50%, #fdd179 58%, #f0bb5d 78%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: skewX(-10deg) scaleY(0.98);
  line-height: 1.33;
}

.title-line1 {
  font-size: clamp(40px, 8vw, 101px);
  letter-spacing: clamp(-4px, -0.8vw, -9px);
}

.title-line2 {
  font-size: clamp(26px, 5vw, 65px);
  letter-spacing: clamp(-2px, -0.5vw, -5.85px);
  margin-top: clamp(10px, 2vw, 20px);
}

.feature-circles {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.feature-item {
  width: clamp(150px, 20vw, 300px);
  text-align: center;
}

.feature-item img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: clamp(22px, 2vw, 40px);
  font-weight: bold;
  margin:0;
}

.features-bottom {
  margin-top: 60px;
}

.features-bottom-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 3vw, 38px);
  color: #2a5174;
  margin-bottom: 20px;
}

.features-bottom-logo {
  max-width: 80%;
  height: auto;
}

/* Delta T */
.delta-t {
  background: #f3efe6;
  padding: 80px 0 0;
}

.delta-t-header {
  text-align: center;
  padding: 0 20px;
  transform: skewX(-10deg) scaleY(0.98);
}

.delta-t-pre {
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 900;
  color: #0f2746;
  margin-bottom: 10px;
}

.delta-t-large {
  font-size: 1.5em;
}

.delta-t-sub {
  font-size: clamp(16px, 2.5vw, 30px);
  font-weight: bold;
  color: #0f2746;
  margin:0;
}

.delta-t-images {
  margin-top: 40px;
}

/* Design Scope */
.design-scope {
  background: #fcfcf5;
}

.scope-header {
  text-align: center;
  padding: 0 20px;
}

.scope-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 5vw, 67px);
  color: #294f74;
  margin-bottom: 20px;
}

.scope-subtitle {
  font-size: clamp(20px, 3vw, 40px);
  color: #134d51;
}

.scope-subtitle strong {
  font-size: 1.5em;
}

.scope-content {
  position: relative;
  padding: 40px 0 0 0;
}


.scope-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-img-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.scope-footer {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.scope-footer-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.scope-footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.scope-footer p {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 3vw, 36px);
  font-family: 'Noto Serif JP', serif;
}

.scope-footer strong {
  font-size: 1.5em;
}

/* Comfort */
.comfort {
  position: relative;
  padding:0;
  text-align: center;
}
.comfort-content{
  position: relative;
}

.comfort-title {
  position: absolute;
  margin:0 auto;
  text-align: center;
  width:100%;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 4vw, 40px);
  color: #214937;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 40px;
  padding:clamp(16px, 4vw, 70px) 0;
}

/* Delta T Banner */
.delta-t-banner {
  background: linear-gradient(90deg, #264d3a, #58b387);
  position: relative;
  text-align: center;
  padding-bottom: 60px;
  margin-top: -1px; /* Avoid gap */
}

.delta-t-banner-cutout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.delta-t-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 40px; 
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  border-radius: 20px 20px 0 0;
  margin-top: 100px; 
}

.banner-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.banner-logo {
  height: clamp(40px, 8vw, 140px);
}

.banner-ha {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 6vw, 60px);
  color: #fff;
  font-weight: bold;
}

.banner-text-row {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 60px;
  background: #d4af37;
  filter: blur(15px);
  z-index: -1;
}

.banner-text {
  font-family: 'Noto Serif JP', serif;
  color: #fff;
  transform: skewX(-10deg) scaleY(0.98);
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
}

.banner-text .text-medium {
  font-size: clamp(30px, 5vw, 66px);
}

.banner-text .text-large {
  font-size: clamp(40px, 8vw, 83px);
}

/* No Machine */
.no-machine {
  background: linear-gradient(90deg, #f1e9d7, #ebd6bf);
  padding: 80px 20px;
  text-align: center;
}

.no-machine-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 50px);
  color: #615234;
  margin-bottom: 10px;
}

.no-machine-subtitle {
  font-size: clamp(16px, 2.5vw, 30px);
  color: #615234;
  margin-bottom: 40px;
}

/* PMV */
.pmv {
  background: #c7e7f2;
  padding: 80px 20px;
  text-align: center;
}

.pmv-title-sub {
  font-size: clamp(14px, 2vw, 22px);
  color: #134d51;
  margin-bottom: 10px;
}

.pmv-title-main {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 4vw, 50px);
  color: #134d51;
  margin-bottom: 20px;
}

.pmv-title-desc {
  font-size: clamp(14px, 2.5vw, 28px);
  color: #134d51;
  margin-bottom: 40px;
}

.pmv-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pmv-images img {
  max-width: 100%;
  width: clamp(280px, 40vw, 500px);
}

.pmv-footer {
  display: flex;
  justify-content: center;
}

.pmv-btn {
  background: linear-gradient(90deg, #6aa971, #81ce8a);
  color: #fff;
  padding: 20px 40px;
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: bold;
  border-radius: 10px;
  border: 4px solid #fff;
  display: inline-block;
}

.pmv ruby.large rt{
  font-size:16px;
}


/* Cost */
.cost {
  position: relative;
}

.cost-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cost-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.cost-label {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: bold;
  margin-bottom: 20px;
}

.cost-price {
  margin-bottom: 30px;
}

.cost-price .price-main {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: bold;
  color: #06254f;
}

.cost-price .price-main .num { font-size: 2em; }

.cost-price .price-sub {
  font-size: clamp(16px, 2.5vw, 30px);
  font-weight: bold;
  color: #12273a;
}

.cost-notes {
  font-size: clamp(12px, 1.5vw, 18px);
  color: #333;
  text-align: left;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #264e3d, #236554);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 5vw, 54px);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: clamp(16px, 2.5vw, 24px);
  opacity: 0.9;
  margin-bottom: 60px;
}

.cta-card {
  background: rgba(255,255,255,0.5);
  border: 7px solid #d4af37;
  border-radius: 32px;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-card-title {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  background: linear-gradient(180deg, #fef0c5 50.166%, #fdd179 58.139%, #f0bb5d 78.804%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}

.cta-card-title p {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  background: linear-gradient(180deg, #fef0c5 50.166%, #fdd179 58.139%, #f0bb5d 78.804%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
  filter: drop-shadow(0px 0px 2px #333) drop-shadow(0px 0px 2px #333);
}

.cta-card-title .small {
  font-size: clamp(16px, 2.5vw, 23px);
  margin-top: 5px;
}

.cta-tel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-tel-icon {
  width: 74px;
  height: 74px;
  align-self: flex-start;
}

.cta-tel {
  font-family: 'Zen Old Mincho', 'Noto Serif JP', serif;
  font-size: clamp(20px, 8vw, 80px);
  font-weight: 900;
  background: linear-gradient(180deg, #fef0c5 50.166%, #fdd179 58.139%, #f0bb5d 78.804%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.1;
  filter: drop-shadow(0px 0px 2px #333) drop-shadow(0px 0px 2px #333);
}

.cta-card-desc {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  background: linear-gradient(180deg, #fef0c5 50.166%, #fdd179 58.139%, #f0bb5d 78.804%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 0px 2px #333) drop-shadow(0px 0px 2px #333);
}

.cta-card-desc p {
  margin: 0;
  font-size: clamp(12px, 2.5vw, 20px);
  line-height: 1.8;
}

.cta-card-desc .text-white {
  -webkit-text-fill-color: #fff;
}

.cta-card-desc .text-large {
  font-size: clamp(14px, 3vw, 23px);
}

.cta-btn-outline {
  display: inline-block;
  background: #fff;
  border: 3px solid #134d51;
  color: #134d51;
  padding: 15px 30px;
  border-radius: 23px;
  font-weight: bold;
  font-size: clamp(14px, 2vw, 20px);
}

.cta-btn-solid {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37, #6e5b1d);
  border: 5px solid #a3862b;
  color: #fff;
  padding: 20px 60px;
  border-radius: 40px;
  font-weight: bold;
  font-size: clamp(18px, 3vw, 32px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}


.link{
    background: #EAF2EC;
    text-align: center;
    padding:60px 0;
}
.link-title{
    text-align: center;
    margin:0;
    padding:40px 0;
}
.link a{
   display:block;
   width:80%;
   margin:0 auto;
}

/* Footer */
.footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 768px) {
  .mv{
    min-height:60vh;
  }
  .catch-group{
    max-width:100%;
  }
  .features-title{
    font-weight: 400;
  }
  .logo-group{
    padding:0;
  }
  .features{
    padding: 40px 20px 20px 20px;
  }
  .features-title{
    margin-bottom:40px;
  }
  .feature-item { width: 45%; }
  .pmv-images img { width: 100%; }
  .features-bottom-logo{
    max-width:100%;
  }
  .delta-t{
    padding: 40px 0 0 0;
  }
  .scope-subtitle strong{
    font-size:1.2em;
  }
  .scope-content{
    padding:0;
  }
  .no-machine{
    padding:20px 0;
  }
  .no-machine-subtitle{
    margin-bottom:20px;
  }
  .pmv{
    padding:40px 20px;
  }
  .pmv ruby.large rt{
    font-size:12px;
  }
  .cta{
    padding:40px 20px;
  }
  .cta-inner{
    padding:20px 20px;
  }
  .cta-title{
    font-size: clamp(18px, 5vw, 54px);
  }
  .cta-desc{
    font-size: clamp(14px, 2.5vw, 24px);
  }
  .cta-tel-icon{
    display:none;
  }
}
@media (max-width: 480px) {
  .feature-item { width: 100%; }
}



.c-flex {
  -moz-column-gap: var(--flex-column-gap, 0);
  display: flex;
       column-gap: var(--flex-column-gap, 0);
  row-gap: var(--flex-row-gap, 0);
}

.c-flex[data-gap~="0"] {
  --flex-row-gap: 0px;
  --flex-column-gap: 0px;
}
.c-flex[data-gap~=x-0] {
  --flex-column-gap: 0px;
}
.c-flex[data-gap~=y-0] {
  --flex-row-gap: 0px;
}
.c-flex[data-gap~=xxs] {
  --flex-row-gap: 0.5rem;
  --flex-column-gap: 0.5rem;
}
.c-flex[data-gap~=x-xxs] {
  --flex-column-gap: 0.5rem;
}
.c-flex[data-gap~=y-xxs] {
  --flex-row-gap: 0.5rem;
}
.c-flex[data-gap~=xs] {
  --flex-row-gap: 1rem;
  --flex-column-gap: 1rem;
}
.c-flex[data-gap~=x-xs] {
  --flex-column-gap: 1rem;
}
.c-flex[data-gap~=y-xs] {
  --flex-row-gap: 1rem;
}
.c-flex[data-gap~=sm] {
  --flex-row-gap: 1.5rem;
  --flex-column-gap: 1.5rem;
}
.c-flex[data-gap~=x-sm] {
  --flex-column-gap: 1.5rem;
}
.c-flex[data-gap~=y-sm] {
  --flex-row-gap: 1.5rem;
}
.c-flex[data-gap~=md] {
  --flex-row-gap: 2rem;
  --flex-column-gap: 2rem;
}
.c-flex[data-gap~=x-md] {
  --flex-column-gap: 2rem;
}
.c-flex[data-gap~=y-md] {
  --flex-row-gap: 2rem;
}
.c-flex[data-gap~=lg] {
  --flex-row-gap: 2.5rem;
  --flex-column-gap: 2.5rem;
}
.c-flex[data-gap~=x-lg] {
  --flex-column-gap: 2.5rem;
}
.c-flex[data-gap~=y-lg] {
  --flex-row-gap: 2.5rem;
}
.c-flex[data-gap~=xl] {
  --flex-row-gap: 3rem;
  --flex-column-gap: 3rem;
}
.c-flex[data-gap~=x-xl] {
  --flex-column-gap: 3rem;
}
.c-flex[data-gap~=y-xl] {
  --flex-row-gap: 3rem;
}
.c-flex[data-gap~=xxl] {
  --flex-row-gap: 3.5rem;
  --flex-column-gap: 3.5rem;
}
.c-flex[data-gap~=x-xxl] {
  --flex-column-gap: 3.5rem;
}
.c-flex[data-gap~=y-xxl] {
  --flex-row-gap: 3.5rem;
}

.c-flex[data-align~=reverse] {
  flex-direction: row-reverse;
}
.c-flex[data-align~=col] {
  flex-direction: column;
}
.c-flex[data-align~=col-reverse] {
  flex-direction: column-reverse;
}
.c-flex[data-align~=wrap] {
  flex-wrap: wrap;
}
.c-flex[data-align~=start] {
  justify-content: start;
}
.c-flex[data-align~=center] {
  justify-content: center;
}
.c-flex[data-align~=end] {
  justify-content: end;
}
.c-flex[data-align~=between] {
  justify-content: space-between;
}
.c-flex[data-align~=top] {
  align-items: flex-start;
}
.c-flex[data-align~=base] {
  align-items: first baseline;
}
.c-flex[data-align~=middle] {
  align-items: center;
}
.c-flex[data-align~=bottom] {
  align-items: end;
}
.c-flex__item[data-align~=start] {
  align-items: flex-start;
}
.c-flex__item[data-align~=base] {
  align-items: first baseline;
}
.c-flex__item[data-align~=center] {
  align-items: center;
}
.c-flex__item[data-align~=end] {
  align-items: flex-end;
}
.c-flex__item[data-align~=top] {
  align-self: stretch;
  justify-content: flex-start;
}
.c-flex__item[data-align~=middle] {
  align-self: stretch;
  justify-content: center;
}
.c-flex__item[data-align~=bottom] {
  align-self: stretch;
  justify-content: flex-end;
}