@charset "UTF-8";
/* =========================
   style.scss
========================= */
/* =========================
   foundation/_index.scss
========================= */
/* =========================
   foundation/_variables.scss
========================= */
/* =========================
   foundation/_index.scss
========================= */
/* =========================
   foundation/_mixin.scss
========================= */
/* =========================
   breakpoint
========================= */
@media (min-width: 768px) {
  :root {
    --header-h: 104px;
  }
}

/* =========================
   foundation/_index.scss
========================= */
/* =========================
   layout/_typography.scss
========================= */
/* 基本文字サイズ・行間・文字色 */
#synLife {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
  color: #000;
}
@media (max-width: 767px) {
  #synLife {
    font-size: 14px;
    line-height: 170%;
  }
}
#synLife sup {
  vertical-align: top;
  font-size: 80%;
  display: inline-block;
  transform: translateY(-0.25em);
}
#synLife {
  /* リンクの文字装飾 */
}
#synLife a {
  color: #000;
}
#synLife a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   layout/_index.scss
========================= */
/* =========================
   layout/_container.scss
========================= */
#synLife .container {
  max-width: 1080px;
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   object/_index.scss
========================= */
/* =========================
   object/layout/_index.scss
========================= */
/* =========================
   object/_stack.scss
========================= */
#synLife .stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* =========================
   object/_cluster.scss
========================= */
#synLife .cluster {
  display: block;
}
@media (min-width: 768px) {
  #synLife .cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
#synLife .cluster--start {
  justify-content: flex-start;
}
#synLife .cluster--center {
  justify-content: center;
}
#synLife .cluster--end {
  justify-content: flex-end;
}
#synLife .cluster--between {
  justify-content: space-between;
}

/* =========================
   object/_grid.scss
========================= */
#synLife .grid {
  --grid-gap: ;
  --grid-columns: 1;
}
@media (max-width: 767px) {
  #synLife .grid {
    --grid-gap: ;
  }
}
#synLife .grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(var(--grid-columns), 1fr);
}
#synLife .grid__item {
  min-width: 0;
}
@media (max-width: 767px) {
  #synLife .grid--sp1 {
    --grid-columns: 1;
    --grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  #synLife .grid--sp2 {
    --grid-columns: 2;
    --grid-gap: 12px;
  }
}
@media (min-width: 768px) {
  #synLife .grid--tab2 {
    --grid-columns: 2;
    --grid-gap: 24px;
  }
}
@media (min-width: 768px) {
  #synLife .grid--tab3 {
    --grid-columns: 3;
    --grid-gap: 24px;
  }
}
@media (min-width: 768px) {
  #synLife .grid--tab4 {
    --grid-columns: 4;
    --grid-gap: 28px;
  }
}
@media (min-width: 1240px) {
  #synLife .grid--pc3 {
    --grid-columns: 3;
    --grid-gap: 12px;
  }
}
@media (min-width: 1240px) {
  #synLife .grid--pc4 {
    --grid-columns: 4;
  }
}
#synLife .grid--S {
  --grid-gap: 20px;
}
#synLife .grid--M {
  --grid-gap: 30px;
}
#synLife .grid--L {
  --grid-gap: 40px;
}

/* =========================
   object/_split.scss
========================= */
@media (min-width: 768px) {
  #synLife .split__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
#synLife .split__inner--center {
  align-items: center;
}

/* =========================
   object/_panel.scss
========================= */
@media (max-width: 767px) {
  #synLife .panel-grid {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid--w4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid--w2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid .col-2 {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid .col-4 {
    grid-column: span 4;
  }
}
@media (min-width: 768px) {
  #synLife .panel-grid .row-2 {
    grid-row: span 2;
  }
}

/* =========================
   object/ui/_index.scss
========================= */
/* =========================
   object/_gutter.scss
========================= */
#synLife .gutter {
  padding-inline: clamp(20px, 5vw, 100px);
}
@media (max-width: 767px) {
  #synLife .gutter--narrow {
    padding-inline: 10px;
  }
}

/* =========================
   object/layout/_index.scss
========================= */
/* =========================
   object/_nav.scss
========================= */
#synLife .nav-anc {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0 65px;
}
@media (max-width: 767px) {
  #synLife .nav-anc {
    padding: 0 0 55px;
  }
}
#synLife .nav-anc__inner {
  display: inline-block;
  text-align: left;
  border-left: 2px solid #d7000f;
  padding-left: 40px;
}
@media (max-width: 767px) {
  #synLife .nav-anc__inner {
    padding-left: 14px;
  }
}
#synLife .nav-anc-ttl {
  color: #d7000f;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #synLife .nav-anc-ttl {
    font-size: 16px;
  }
}
#synLife .nav-anc-list {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
#synLife .nav-anc-link {
  display: flex;
  align-items: center;
  column-gap: 1em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767px) {
  #synLife .nav-anc-link {
    font-size: 16px;
    align-items: flex-start;
  }
}
#synLife .nav-anc-num {
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: #4d4d4d;
  font-size: 28px;
}
@media (max-width: 767px) {
  #synLife .nav-anc-num {
    font-size: 26px;
  }
}
#synLife .nav-bn-list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media (max-width: 767px) {
  #synLife .nav-bn-list {
    row-gap: 26px;
  }
}

#synLife .section--wave {
  position: relative;
  padding-top: 30.4vw;
}
@media (min-width: 768px) {
  #synLife .section--wave {
    padding-top: 20.625vw;
  }
}
@media (min-width: 1440px) {
  #synLife .section--wave {
    padding-top: 264px;
  }
}
#synLife .section--wave:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 15.4666666667vw;
  background: url(../images/wave_sp.png) center no-repeat;
  background-size: 100% 100%;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  #synLife .section--wave:before {
    height: 15.625vw;
    background-image: url(../images/wave.png);
  }
}
@media (min-width: 1440px) {
  #synLife .section--wave:before {
    height: 200px;
  }
}
#synLife .section--waveBtm {
  position: relative;
  padding-bottom: 30.4vw;
}
@media (min-width: 768px) {
  #synLife .section--waveBtm {
    padding-bottom: 20.625vw;
  }
}
@media (min-width: 1440px) {
  #synLife .section--waveBtm {
    padding-bottom: 264px;
  }
}
#synLife .section--waveBtm:after {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(180deg);
  width: 100%;
  height: 15.4666666667vw;
  background: url(../images/wave_sp.png) center no-repeat;
  background-size: 100% 100%;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  #synLife .section--waveBtm:after {
    height: 15.625vw;
    background-image: url(../images/wave.png);
  }
}
@media (min-width: 1440px) {
  #synLife .section--waveBtm:after {
    height: 200px;
  }
}
#synLife .section__header {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 767px) {
  #synLife .section__header {
    row-gap: 12px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   component/_index.scss
========================= */
/* =========================
   component/_text.scss
========================= */
#synLife .text-note {
  line-height: 160%;
  font-size: 12px;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   component/_btn.scss
========================= */
#synLife .btn {
  position: relative;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  width: 320px;
  height: 48px;
  margin: auto;
  font-size: 16px;
}
@media (max-width: 767px) {
  #synLife .btn {
    width: 280px;
  }
}
#synLife .btn:after {
  transition: all 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  width: 32px;
  height: 1px;
  background: #000;
}
#synLife .btn:hover:after {
  opacity: 0;
}

/* =========================
   component/_index.scss
========================= */
/* =========================
   component/_heading.scss
========================= */
#synLife .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
@media (max-width: 767px) {
  #synLife .heading {
    row-gap: 24px;
  }
}
#synLife .heading__ja {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #4d4d4d;
  line-height: 140%;
  font-weight: 500;
  font-size: 36px;
}
@media (max-width: 767px) {
  #synLife .heading__ja {
    font-size: 24px;
  }
}
#synLife .heading__en {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  position: relative;
  line-height: 170%;
  color: #d7000f;
  font-size: 18px;
}
@media (max-width: 767px) {
  #synLife .heading__en {
    font-size: 16px;
  }
}
#synLife .heading__en:after {
  content: "";
  display: block;
  background: #d7000f;
  height: 2px;
  width: 24px;
  margin: 16px auto 0;
}
@media (max-width: 767px) {
  #synLife .heading__en:after {
    margin-top: 12px;
  }
}
#synLife .heading-txt {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
@media (max-width: 767px) {
  #synLife .heading-txt {
    font-size: 14px;
  }
}

/* =========================
   project/_index.scss
========================= */
/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_mv.scss
========================= */
#synLife .mv {
  opacity: 0;
  transition: opacity 1.2s ease;
  position: relative;
  height: 121.6vw;
  margin-bottom: 29.3333333333vw;
  padding-top: 48vw;
  background: url(../images/mv_bg_sp.jpg) bottom center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  #synLife .mv {
    background-image: url(../images/mv_bg.jpg);
    height: 52.5vw;
    margin-bottom: 14.21875vw;
    padding-top: 26.09375vw;
  }
}
#synLife .mv-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  #synLife .mv-ttl {
    row-gap: 2.5vw;
  }
}
#synLife .mv-ttl__logo {
  width: 53.3333333333vw;
}
@media (min-width: 768px) {
  #synLife .mv-ttl__logo {
    width: 23.4375vw;
  }
}
#synLife .mv-ttl__catch {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 24px;
}
@media (min-width: 768px) {
  #synLife .mv-ttl__catch {
    font-size: 2.5vw;
  }
}
#synLife .mv-ttl img {
  width: 100%;
  height: auto;
}
#synLife .mv-img {
  position: absolute;
  left: 50%;
  bottom: -34.1333333333vw;
  transform: translateX(-50%);
  width: 72.5333333333vw;
}
@media (min-width: 768px) {
  #synLife .mv-img {
    bottom: -14.0625vw;
    width: 29.53125vw;
  }
}

.is-loaded #synLife .mv {
  opacity: 1;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_pluscare.scss
========================= */
#synLife .pluscare {
  padding: 128px 0 160px;
}
@media (max-width: 767px) {
  #synLife .pluscare {
    padding: 72px 0 96px;
  }
}
#synLife .pluscare__inner {
  margin-top: -64px;
}
@media (max-width: 767px) {
  #synLife .pluscare__inner {
    padding-inline: 0;
    margin-top: -24px;
  }
}
#synLife .pluscare .heading {
  position: relative;
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  #synLife .pluscare .heading {
    margin-bottom: 72px;
  }
}
#synLife .pluscare .heading__ja {
  line-height: 150%;
  letter-spacing: -0.005em;
  font-size: 50px;
}
@media (max-width: 767px) {
  #synLife .pluscare .heading__ja {
    font-size: 28px;
  }
}
#synLife .pluscare .heading:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -96px;
  background: #4d4d4d;
  width: 1px;
  height: 64px;
}
@media (max-width: 767px) {
  #synLife .pluscare .heading:after {
    height: 48px;
    bottom: -60px;
  }
}
#synLife .pluscare-ttl {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 24px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #synLife .pluscare-ttl {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
#synLife .pluscare-txt {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 170%;
}
#synLife .pluscare-txt p:not(:last-child) {
  margin-bottom: 1em;
}
#synLife .pluscare-img {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  #synLife .pluscare-img {
    background: url(../images/pluscare_bg.png) center no-repeat;
    background-size: 100% 100%;
  }
}
@media (min-width: 1440px) {
  #synLife .pluscare-img img {
    max-width: 1280px;
  }
}
#synLife .pluscare-marquee {
  overflow: hidden;
  display: flex;
}
#synLife .pluscare-track {
  display: flex;
  gap: 64px;
  padding-right: 64px;
  animation: scroll-left 40s linear infinite;
}
@media (max-width: 767px) {
  #synLife .pluscare-track {
    gap: 20px;
  }
}
#synLife .pluscare-track span {
  white-space: nowrap;
  background: linear-gradient(180deg, #e4f0f9 26.24%, #f9fbfd 75.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "EB Garamond", serif;
  line-height: 1;
  font-size: 48px;
}
@media (min-width: 768px) {
  #synLife .pluscare-track span {
    font-size: 10vw;
  }
}
@media (min-width: 1440px) {
  #synLife .pluscare-track span {
    font-size: 128px;
  }
}
#synLife .pluscare .product {
  margin-bottom: 12px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_philosophy.scss
========================= */
#synLife .philosophy {
  padding-top: 0;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  #synLife .philosophy {
    padding-bottom: 56px;
  }
}
#synLife .philosophy .section__header {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #synLife .philosophy .section__header {
    margin-bottom: 32px;
  }
}
#synLife .philosophy-intro {
  background: url(../images/philosophy_bg_sp.png) center top no-repeat;
  background-size: 100% 100%;
  padding-top: 30.4vw;
}
@media (min-width: 768px) {
  #synLife .philosophy-intro {
    background-image: url(../images/philosophy_bg.png);
    padding-top: 20.625vw;
  }
}
@media (min-width: 1440px) {
  #synLife .philosophy-intro {
    padding-top: 264px;
  }
}
#synLife .philosophy-img {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  #synLife .philosophy-img {
    margin-bottom: 80px;
  }
}
@media (min-width: 1440px) {
  #synLife .philosophy-img img {
    max-width: 960px;
  }
}
#synLife .philosophy-picky {
  background: #e4f0f9;
  padding: 48px 10px 30px;
}
@media (min-width: 768px) {
  #synLife .philosophy-picky {
    margin: auto;
    max-width: 920px;
    padding: 32px 24px 40px;
  }
}
#synLife .philosophy-picky-ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  color: #4d4d4d;
  line-height: 140%;
  font-weight: 500;
  row-gap: 8px;
  font-size: 24px;
  margin-bottom: 57px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-ttl {
    font-size: 20px;
    margin-bottom: 45px;
  }
}
#synLife .philosophy-picky-ttl__word {
  position: relative;
  z-index: 1;
  color: #1689c2;
  font-size: 36px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-ttl__word {
    font-size: 24px;
  }
}
#synLife .philosophy-picky-ttl__word:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #ffffff;
  filter: blur(2px);
  border-radius: 8px;
  height: 16px;
  bottom: -8px;
}
#synLife .philosophy-picky-item {
  position: relative;
  background: #fff;
  padding: 48px 40px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-item {
    padding: 25px 16px 30px;
  }
}
#synLife .philosophy-picky-item:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-item.split .split__inner {
    column-gap: 40px;
  }
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-item.split .split__item:first-child {
    flex: 0 0 300px;
  }
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-item.split .split__item:last-child {
    flex: 1;
  }
}
#synLife .philosophy-picky__word {
  position: absolute;
  left: -20px;
  top: -20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP", serif;
  background: radial-gradient(50% 50% at 50% 50%, #1489c2 0%, rgba(36, 153, 210, 0.873638) 70.19%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: normal;
  width: 96px;
  height: 96px;
  font-size: 28px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky__word {
    left: -10px;
    top: -15px;
    width: 80px;
    height: 80px;
    font-size: 22px;
  }
}
#synLife .philosophy-picky__ttl {
  color: #1689c2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 160%;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky__ttl {
    line-height: 170%;
    font-size: 17px;
    margin: 16px 0 12px;
  }
}
@media (max-width: 767px) {
  #synLife .philosophy-picky__txt {
    font-size: 16px;
  }
}
#synLife .philosophy-picky__txt + .text-note {
  margin-top: 12px;
}
#synLife .philosophy-picky-material {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-material {
    display: flex;
    flex-wrap: wrap;
    row-gap: 26px;
    margin-bottom: 24px;
  }
}
#synLife .philosophy-picky-material + .text-note {
  text-align: right;
}
#synLife .philosophy-picky-material__ttl {
  text-align: center;
  color: #1689c2;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 160%;
  font-size: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__ttl {
    font-size: 18px;
    line-height: 170%;
  }
}
#synLife .philosophy-picky-material__item {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-material__item {
    column-gap: 16px;
    width: 50%;
  }
  #synLife .philosophy-picky-material__item:nth-child(odd) {
    padding-right: 20px;
  }
  #synLife .philosophy-picky-material__item:nth-child(even) {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-material__item:nth-child(1) {
    padding-bottom: 32px;
    margin-bottom: 6px;
    border-bottom: 1px dashed #9ecbee;
  }
}
#synLife .philosophy-picky-material__item:nth-child(2) {
  border-bottom: 1px dashed #9ecbee;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #synLife .philosophy-picky-material__item:nth-child(2) {
    padding-bottom: 32px;
    margin-bottom: 6px;
  }
}
#synLife .philosophy-picky-material__img {
  flex: 0 0 104px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__img {
    flex: 0 0 96px;
  }
}
#synLife .philosophy-picky-material__img--lg {
  flex: 0 0 160px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__img--lg {
    flex: 0 0 132px;
  }
}
#synLife .philosophy-picky-material__body {
  flex: 1;
}
#synLife .philosophy-picky-material__body .philosophy-picky__ttl {
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__body .philosophy-picky__ttl {
    margin: 0 0 4px;
  }
}
#synLife .philosophy-picky-material__new {
  color: #fff;
  background: #d7000f;
  font-family: "EB Garamond", serif;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 56px;
  height: 24px;
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__new {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media (max-width: 767px) {
  #synLife .philosophy-picky-material__txt {
    font-size: 14px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_product.scss
========================= */
#synLife .product-left {
  font-size: 14px;
}
#synLife .product-list {
  text-align: left;
}
#synLife .product-item {
  line-height: 160%;
  font-size: 13px;
}
@media (max-width: 767px) {
  #synLife .product-item:not(:last-child) {
    margin-bottom: 6px;
  }
}
@media (min-width: 768px) {
  #synLife .product__wrap {
    display: flex;
    justify-content: center;
  }
}
#synLife .product-series {
  border-left-style: solid;
  border-left-width: 4px;
  padding-left: 12px;
  padding-bottom: 18px;
}
@media (min-width: 768px) {
  #synLife .product-series {
    display: flex;
    align-items: center;
    column-gap: 18px;
    padding-left: 32px;
  }
}
#synLife .product-series__wrap {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #synLife .product-series__wrap {
    margin: 0 auto 128px;
    max-width: 918px;
  }
}
#synLife .product-series__img {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #synLife .product-series__img {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  #synLife .product-series__img {
    order: 2;
    flex: 0 0 344px;
  }
}
@media (max-width: 767px) {
  #synLife .product-series__img img {
    max-width: 256px;
  }
}
#synLife .product-series__body {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media (min-width: 768px) {
  #synLife .product-series__body {
    order: 1;
    flex: 1;
    row-gap: 16px;
  }
}
#synLife .product-series__ttl {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: "EB Garamond", serif;
  color: #4d4d4d;
  font-weight: 400;
  line-height: 160%;
  font-size: 40px;
}
@media (max-width: 767px) {
  #synLife .product-series__ttl {
    font-size: 36px;
  }
}
#synLife .product-series__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-size: 18px;
  height: 20px;
  width: 102px;
}
@media (max-width: 767px) {
  #synLife .product-series__tag {
    font-size: 16px;
    width: 92px;
  }
}
#synLife .product-series__tag--I {
  background: #f2eeda;
}
#synLife .product-series__tag--II {
  background: #dee6f2;
}
#synLife .product-series__subTtl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #d7000f;
  font-weight: 500;
  line-height: 160%;
  font-size: 20px;
}
@media (max-width: 767px) {
  #synLife .product-series__subTtl {
    font-size: 18px;
    margin-right: -1em;
  }
}
#synLife .product-series__txt {
  line-height: 160%;
}
@media (max-width: 767px) {
  #synLife .product-series__txt {
    font-size: 16px;
  }
}
#synLife .product-series:not(:last-child) {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  #synLife .product-series:not(:last-child) {
    margin-bottom: 48px;
  }
}
#synLife .product-series--I {
  margin-bottom: 0 !important;
  border-left-color: #f2eeda;
}
#synLife .product-series--II {
  border-left-color: #dee6f2;
}
#synLife .product-series--CELL {
  border-left-color: #f9d4e4;
}
#synLife .product-series--SONADES {
  border-left-color: #c19ec8;
}
#synLife .product-series--MD {
  border-left-color: #e2efdb;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_js.scss
========================= */
#synLife .js-inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
#synLife .js-inview.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_step.scss
========================= */
#synLife .step {
  background: linear-gradient(180deg, #f8f8f8 30.29%, #dddddd 100%);
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  #synLife .step {
    padding-bottom: 70px;
  }
}
#synLife .step .section__header {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  #synLife .step .section__header {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  #synLife .step-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 48px;
    row-gap: 68px;
  }
}
#synLife .step-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 32px;
  row-gap: 16px;
}
@media (min-width: 768px) {
  #synLife .step-item {
    width: calc((100% - 96px) / 3);
  }
  #synLife .step-item:last-child {
    width: 100%;
  }
}
#synLife .step-item:after {
  content: "";
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  #synLife .step-item:not(:last-child) {
    margin-bottom: 48px;
  }
}
#synLife .step-item:nth-child(1):after, #synLife .step-item:nth-child(2):after {
  background-image: url(../images/icon_arrow.svg);
}
@media (min-width: 768px) {
  #synLife .step-item:nth-child(1):after, #synLife .step-item:nth-child(2):after {
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
  }
}
@media (max-width: 767px) {
  #synLife .step-item:nth-child(1):after, #synLife .step-item:nth-child(2):after {
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}
#synLife .step-item:last-child:after {
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/icon_plus.svg);
}
@media (max-width: 767px) {
  #synLife .step-item:last-child:after {
    top: -38px;
  }
}
#synLife .step-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d7000f;
  line-height: initial;
  row-gap: 4px;
}
#synLife .step-ttl__num {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 24px;
}
#synLife .step-ttl__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 767px) {
  #synLife .step-feature {
    font-size: 16px;
  }
}
#synLife .step-product {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
@media (min-width: 768px) {
  #synLife .step-product--single {
    margin: 0 -1em 1.35em;
  }
}
@media (min-width: 768px) {
  #synLife .step-ph {
    width: 20.625vw;
    max-width: 264px;
  }
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_muse.scss
========================= */
#synLife .muse {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  #synLife .muse {
    margin-bottom: 56px;
  }
}
#synLife .muse .section__header {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #synLife .muse .section__header {
    margin-bottom: 24px;
  }
}
#synLife .muse-person {
  display: flex;
  justify-content: center;
  column-gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  #synLife .muse-person {
    margin-bottom: 32px;
  }
}
#synLife .muse-person__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
}
#synLife .muse-person__item:not(:last-child) {
  position: relative;
}
#synLife .muse-person__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 40px;
  background: #000;
  transform: rotate(31.61deg);
}
#synLife .muse-person__en {
  font-family: "EB Garamond", serif;
  font-size: 28px;
}
@media (max-width: 767px) {
  #synLife .muse-person__en {
    font-size: 20px;
  }
}
#synLife .muse-person__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
}
@media (min-width: 768px) {
  #synLife .muse-list {
    display: flex;
    column-gap: 80px;
  }
}
@media (min-width: 768px) {
  #synLife .muse-item {
    width: calc((100% - 80px) / 2);
  }
}
@media (max-width: 767px) {
  #synLife .muse-item:not(:last-child) {
    margin-bottom: 48px;
  }
}
#synLife .muse-item__img {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  #synLife .muse-item__img {
    margin-bottom: 16px;
  }
}
#synLife .muse-item__body {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 768px) {
  #synLife .muse-item__body {
    padding-left: 34px;
    row-gap: 12px;
  }
}
#synLife .muse-item-ttl {
  display: flex;
  flex-direction: column;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  line-height: 1.3;
  row-gap: 4px;
}
#synLife .muse-item-ttl__name {
  color: #4d4d4d;
  font-size: 24px;
}
@media (max-width: 767px) {
  #synLife .muse-item-ttl__name {
    font-size: 18px;
  }
}
#synLife .muse-item-ttl__item {
  color: #d7000f;
  font-size: 36px;
}
@media (max-width: 767px) {
  #synLife .muse-item-ttl__item {
    font-size: 28px;
  }
}
#synLife .muse-item-comment {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #4d4d4d;
  font-weight: 500;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
#synLife .muse-item-comment__name {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 16px;
  font-size: 20px;
}
@media (max-width: 767px) {
  #synLife .muse-item-comment__name {
    column-gap: 12px;
    font-size: 18px;
  }
}
#synLife .muse-item-comment__name:before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 96px;
  background: #4d4d4d;
}
#synLife .muse-item-comment__word {
  position: relative;
  line-height: 170%;
  font-size: 24px;
}
@media (max-width: 767px) {
  #synLife .muse-item-comment__word {
    font-size: 18px;
  }
}
#synLife .muse-item-comment__word:before, #synLife .muse-item-comment__word:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 28px;
  background: url(../images/word.svg) center no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  #synLife .muse-item-comment__word:before, #synLife .muse-item-comment__word:after {
    width: 20px;
    height: 14px;
  }
}
#synLife .muse-item-comment__word:before {
  left: -24px;
  top: -14px;
}
@media (max-width: 767px) {
  #synLife .muse-item-comment__word:before {
    left: -8px;
    top: 0;
  }
}
#synLife .muse-item-comment__word:after {
  transform: rotate(180deg);
  right: -40px;
  bottom: 14px;
}
@media (max-width: 767px) {
  #synLife .muse-item-comment__word:after {
    right: -20px;
  }
}
#synLife .muse-item-product {
  line-height: 160%;
  font-size: 13px;
}

/* =========================
   layout/_section.scss
========================= */
/* =========================
   project/_intro.scss
========================= */
#synLife .intro {
  background: url(../images/intro_bg_sp.webp) center no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  #synLife .intro {
    background-image: url(../images/intro_bg.webp);
  }
}
#synLife .intro .section__header {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #synLife .intro .section__header {
    margin-bottom: 24px;
  }
}
#synLife .intro .section__header .heading__ja {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 140%;
  font-size: 56px;
}
@media (max-width: 767px) {
  #synLife .intro .section__header .heading__ja {
    font-size: 42px;
  }
}
#synLife .intro-txt {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 170%;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  #synLife .intro-txt {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  #synLife .intro-txt P {
    font-size: 18px;
  }
}
#synLife .intro-txt P:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #synLife .intro-img {
    width: 680px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  #synLife .intro-img {
    margin-bottom: 24px;
  }
}

/* =========================
   utility/_index.scss
========================= */
/* =========================
   utility/_utility.scss
========================= */
#synLife .u-mt-0 {
  margin-top: 0;
}
#synLife .u-mb-0 {
  margin-bottom: 0;
}
#synLife .u-pb-0 {
  padding-bottom: 0;
}
#synLife .u-mt-S {
  margin-top: 20px;
}
#synLife .u-mb-S {
  margin-bottom: 20px;
}
#synLife .u-pb-S {
  padding-bottom: 20px;
}
#synLife .u-mt-M {
  margin-top: 30px;
}
#synLife .u-mb-M {
  margin-bottom: 30px;
}
#synLife .u-pb-M {
  padding-bottom: 30px;
}
#synLife .u-mt-L {
  margin-top: 40px;
}
#synLife .u-mb-L {
  margin-bottom: 40px;
}
#synLife .u-pb-L {
  padding-bottom: 40px;
}
#synLife .u-mt-XL {
  margin-top: 80px;
}
#synLife .u-mb-XL {
  margin-bottom: 80px;
}
#synLife .u-pb-XL {
  padding-bottom: 80px;
}
#synLife .u-sp-only {
  display: none;
}
@media (max-width: 767px) {
  #synLife .u-sp-only {
    display: block;
  }
}
#synLife .u-pc-only {
  display: none;
}
@media (min-width: 768px) {
  #synLife .u-pc-only {
    display: block;
  }
}
#synLife .u-red {
  color: #d7000f;
}
#synLife .u-bold {
  font-weight: 700;
}
#synLife .u-uLine {
  background: linear-gradient(transparent 70%, #ffdcde 30%);
}

/*# sourceMappingURL=style.css.map */
