@charset "utf-8";

:root {
  /* 色管理用の変数 */
  --white-color: #fff;
  --black-color: #000000;
  --green-color: #81ba1c;
  --orange-color: #ff6b00;
  --purple-color: #7f1084;
}

:root {
  --hue: 230;
  --sky-from: hsl(var(--hue) 35% 6%);
  --sky-to: hsl(var(--hue) 55% 12%);
}

/* -------------------------------

Layout

------------------------------- */
figure {
  margin: 0;
}

main {
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 3.73vw;
}

@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}

.breathLayout {
  background: var(--black-color);
}

.l_container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

.l_container-sp {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .l_container-sp {
    width: min(90%, 1200px);
    margin: 0 auto;
  }
}

/* -------------------------------

module

------------------------------- */
.m_span-green {
  color: var(--green-color);
}

.m_span-orange {
  color: var(--orange-color);
}

.m_breath-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 6.93vw;
  font-weight: bold;
  text-align: center;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .m_breath-ttl {
    font-size: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .m_breath-ttl {
    font-size: 40px;
  }
}

.m_breath-section {
  padding: 21.3vw 0;
}

@media screen and (min-width: 768px) {
  .m_breath-section {
    padding: 15.625vw 0;
  }
}
@media screen and (min-width: 1080px) {
  .m_breath-section {
    padding-top: 120px;
  }
}

/* -------------------------------

breath-concept

------------------------------- */
.breath-concept {
  background-image: url(../img/breath/concept_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  padding: 21.3vw 0;
}

@media screen and (min-width: 768px) {
  .breath-concept {
    padding-top: 108px;
    padding-bottom: 15.625vw;
  }
}
@media screen and (min-width: 1080px) {
  .breath-concept {
    padding-top: 120px;
  }
}

.breath-concept::after {
  content: "";
  position: absolute;
  top: -7vw;
  right: 0;
  width: clamp(120px, 20vw, 260px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: url("../img/breath/breath_tume01.png") no-repeat center;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-concept::after {
    top: -5.2vw;
  }
}

.breath-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.4vw;
}

.breath-video__inner {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.breath-video__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.breath-concept_txt {
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-top: 6.4vw;
  line-height: 2.2;
}

@media screen and (min-width: 768px) {
  .breath-concept_txt {
    font-size: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .breath-concept_txt {
    font-size: 24px;
  }
}

.breath-concept_line {
  position: relative;
  display: inline-block;
}

.breath-concept_line-text {
  position: relative;
  z-index: 2;
}

.breath-concept_line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3vw;
  width: 34.66vw;
  height: 9.06vw;
  background: url(../img/rainmonster/bg-rain-01.png) no-repeat center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-concept_line::before {
    width: 200px;
    height: 80px;
    bottom: -30px;
  }
}

.breath-concept_polygon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(35px, 9.33vw, 80px);
  background: linear-gradient(to top, var(--black-color), var(--purple-color));
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* -------------------------------

breath-charm

------------------------------- */
.breath-charm {
  position: relative;
}

.breath-charm::before {
  content: "";
  position: absolute;
  top: -20vw;
  left: 0;
  width: clamp(123px, 20vw, 260px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/breath/breath_tume02.png) no-repeat center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-charm::before {
    top: -120px;
  }
}

.breath-charm_card {
  border: 2px solid var(--green-color);
  padding: 2.13vw;
  position: relative;
  isolation: isolate;
}

@media screen and (min-width: 768px) {
  .breath-charm_card {
    padding: 24px;
  }
}

.breath-charm_card::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -5vw;
  width: 37.3vw;
  height: 24.26vw;
  background: url("../img/top/bg-gallery-02.png") no-repeat center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-charm_card:nth-of-type(even)::after {
    right: auto;
    left: -5vw;
    transform: scaleX(-1);
  }
}

@media screen and (min-width: 768px) {
  .breath-charm_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .breath-charm_card:nth-of-type(even) .breath-charm_wrap {
    flex-direction: row-reverse;
  }
}

.breath-charm_ttl_wrap {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 5.33vw;
  padding-bottom: 2.13vw;
  border-bottom: 2px solid var(--green-color);
}

@media screen and (min-width: 768px) {
  .breath-charm_ttl_wrap {
    font-size: 24px;
    padding-bottom: 16px;
  }

  .breath-charm_left {
    width: 48%;
  }
}

.breath-charm_ttl_wrap__left {
  font-size: 8.53vw;
  color: var(--green-color);
  text-shadow: 0px 4px 10px rgba(129, 186, 28, 1);
}

@media screen and (min-width: 768px) {
  .breath-charm_ttl_wrap__left {
    font-size: 48px;
  }
}

.breath-charm_sub-ttl {
  font-size: 4.8vw;
  font-weight: bold;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .breath-charm_sub-ttl {
    font-size: 20px;
  }
}

.breath-charm_right {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .breath-charm_right {
    margin-top: 0;
    width: 48%;
  }
}

.breath-concept_polygon.breath-charm_polygon {
  background: linear-gradient(to top, var(--purple-color), var(--black-color));
  clip-path: polygon(100% 100%, 0 0, 100% 0);
}

/* -------------------------------
   breath-cta01
------------------------------- */
@media screen and (min-width: 768px) {
  .breath-cta01__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.breath-cta01__media,
.breath-cta01__content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .breath-cta01__media,
  .breath-cta01__content {
    width: 48%;
  }
}

/* ---------- image ---------- */

.breath-cta01__image {
  display: block;
  width: 100%;
}

.breath-cta01__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- title ---------- */

.breath-cta01__title-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.breath-cta01__title-wrap::before {
  content: "";
  position: absolute;
  top: -18vw;
  left: 50%;
  transform: translateX(-50%);
  width: 98.6vw;
  aspect-ratio: 375 / 171;
  height: auto;
  background: url(../img/common/bg-h2-01.png) center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-cta01__title-wrap::before {
    width: 50vw;
    top: -10vw;
  }
}

@media screen and (min-width: 1080px) {
  .breath-cta01__title-wrap::before {
    width: 530px;
    top: -108px;
  }
}

.breath-cta01__title {
  position: absolute;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  width: max-content;
  font-size: 5.33vw;
  line-height: 1.2;
  margin-top: 10.6vw;
}

@media screen and (min-width: 768px) {
  .breath-cta01__title {
    font-size: 3.125vw;
  }
}

@media screen and (min-width: 1080px) {
  .breath-cta01__title {
    font-size: 32px;
    margin-top: 108px;
  }
}

.breath-cta01__title-sub {
  font-size: 0.7em;
  font-weight: normal;
}

/* ---------- catch copy ---------- */

.breath-cta01__catch {
  padding: 0 20px;
  font-weight: bold;
  font-size: 4.5vw;
  line-height: 1.5;
  margin-top: 26.6vw;
}

@media screen and (min-width: 768px) {
  .breath-cta01__catch {
    font-size: 18px;
    padding: 0;
    margin-top: 13.02vw;
  }
}
@media screen and (min-width: 1080px) {
  .breath-cta01__catch {
    margin-top: 140px;
  }
}

.breath-cta01__catch span {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 8px;
  margin-bottom: 8px;
}

/* ---------- text ---------- */

.breath-cta01__text {
  padding: 0 20px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
  .breath-cta01__text {
    padding: 0;
    font-size: 16px;
  }
}

/* ---------- button area ---------- */

.breath-cta01 .prdBtnLink {
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .breathLayout .breath-cta01 .prdBtnLink {
    padding: 56px 0;
  }
}

/* -------------------------------
   breath-scene
------------------------------- */
.breath-scene {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    1200px 600px at 50% -20%,
    var(--sky-to),
    var(--sky-from) 60%
  );
  padding-bottom: 21.3vw;
}

@media screen and (min-width: 768px) {
  .breath-scene {
    padding-bottom: 15.625vw;
  }
}

.breath-scene__sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.breath-scene__sky .star.is-big {
  filter: blur(0.3px);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9), 0 0 14px rgba(129, 186, 28, 0.6);
}

.breath-scene > *:not(.breath-scene__sky) {
  position: relative;
  z-index: 1;
}

.breath-scene__sky .star {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    hsl(var(--hue) 100% 95%) 0%,
    hsl(var(--hue) 80% 80%) 35%,
    rgba(255, 255, 255, 0) 75%
  );
  opacity: var(--base-opacity, 0.6);
  animation: twinkle var(--twinkle, 2.2s) ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) * -1);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.7);
  }

  40% {
    opacity: 0.15;
    transform: scale(0.5);
  }

  70% {
    opacity: 1;
    transform: scale(1.6);
  }
}

.m_breath-ttl.breath-scene_ttl {
  position: absolute;
  left: 50%;
  top: 33vw;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .m_breath-ttl.breath-scene_ttl {
    top: 29vw;
  }
}

.breath-scene_wrap {
  margin-top: 40vw;
}

@media screen and (min-width: 768px) {
  .breath-scene_wrap {
    margin-top: 108px;
    display: flex;
    position: relative;
    align-items: center;
  }
}

.breath-scene_wrap:nth-of-type(2),
.breath-scene_wrap:nth-of-type(3) {
  margin-top: 21.3vw;
}

@media screen and (min-width: 1080px) {
  .breath-scene_wrap:nth-of-type(2),
  .breath-scene_wrap:nth-of-type(3) {
    margin-top: 80px;
  }
}

.breath-scene_left {
  margin-right: 4.26vw;
}

@media screen and (min-width: 768px) {
  .breath-scene_left {
    margin-right: 0;
    width: 50%;
    position: relative;
    transform: translateY(-40px);
    z-index: 1;
  }
}

.breath-scene_wrap:nth-of-type(2) .breath-scene_left {
  margin-right: 0;
  margin-left: 4.26vw;
}

@media screen and (min-width: 768px) {
  .breath-scene_wrap:nth-of-type(2) .breath-scene_left {
    margin-right: 0;
    margin-left: 0;
  }
}

.breath-scene_right {
  margin-left: 4.26vw;
  border: solid 1px var(--green-color);
  padding: 8.6vw 4.26vw 6.4vw 4.26vw;
  margin-top: -2.13vw;
  position: relative;
  background: var(--black-color);
}

@media screen and (min-width: 768px) {
  .breath-scene_right {
    padding: 40px 24px 24px 24px;
    width: 60%;
    margin-left: -40px;
    transform: translateY(60px);
    z-index: 2;
  }
}

.breath-scene_wrap:nth-of-type(2) .breath-scene_right {
  margin-left: 0;
  margin-right: 4.26vw;
}

@media screen and (min-width: 768px) {
  .breath-scene_wrap:nth-of-type(2) {
    flex-direction: row-reverse;
  }

  .breath-scene_wrap:nth-of-type(2) .breath-scene_right {
    margin-left: 0;
    margin-right: -40px;
  }
}

.breath-scene_right::before {
  content: "Morning";
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 9.6vw;
  position: absolute;
  top: -10.8vw;
  left: -3.2vw;
  margin-left: 6.4vw;
  opacity: 0.7;
  font-style: italic;
}

@media screen and (min-width: 768px) {
  .breath-scene_right::before {
    font-size: 48px;
    top: -56px;
    left: 0;
    margin-left: 24px;
  }
}

.breath-scene_wrap:nth-of-type(2) .breath-scene_right::before {
  content: "Night";
}

.breath-scene_wrap:nth-of-type(3) .breath-scene_right::before {
  content: "Friends";
}

.breath-scene_h3 {
  font-weight: bold;
  font-style: italic;
  font-size: 4.26vw;
  padding-left: 4.26vw;
  position: relative;
}

@media screen and (min-width: 768px) {
  .breath-scene_h3 {
    font-size: 20px;
    padding-left: 16px;
  }
}

.breath-scene_h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2.13vw;
  height: 4.26vw;
  background: var(--green-color);
}

@media screen and (min-width: 768px) {
  .breath-scene_h3::before {
    width: 8px;
    height: 16px;
  }
}

.breath-scene_polygon {
  width: 100%;
  height: clamp(35px, 9.33vw, 80px);
  background: linear-gradient(to top, var(--purple-color), var(--black-color));
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

/* -------------------------------
   breath-use
------------------------------- */
.breath-use {
  position: relative;
}

/* ---------- steps wrapper ---------- */

.breath-use__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6.4vw;
  margin-top: 17.07vw;
}

@media screen and (min-width: 768px) {
  .breath-use__steps {
    gap: 16px;
    margin-top: 80px;
  }
}

/* ---------- step card ---------- */

.breath-use__step {
  flex: 1 1 calc(100% - 8.53vw);
  margin: 0 auto 6.4vw;
  padding: 10.67vw 4.27vw;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  border: solid 1px var(--green-color);
}

@media screen and (min-width: 768px) {
  .breath-use__step {
    flex: 1 1 calc(33.333% - 20px);
    padding: 40px 8px 16px 8px;
  }
}

/* ---------- step label ---------- */
.breath-use__step-label {
  position: absolute;
  top: -6.67vw;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--green-color);
  padding: 2.13vw 4.27vw;
  border-radius: 8vw;
  font-weight: bold;
  color: var(--black-color);
  font-size: 5.33vw;
  box-shadow: 0 0.53vw 2.67vw rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .breath-use__step-label {
    top: -3vw;
    font-size: 16px;
    padding: 8px;
    border-radius: 100vh;
  }
}
@media screen and (min-width: 1080px) {
  .breath-use__step-label {
    top: -24px;
    padding: 8px 16px;
  }
}

/* ---------- title ---------- */

.breath-use__step-title {
  font-size: 5.33vw;
  font-weight: bold;
  margin-bottom: 4.27vw;
}

@media screen and (min-width: 768px) {
  .breath-use__step-title {
    font-size: 20px;
  }
}

/* ---------- text ---------- */

.breath-use__step-text {
  margin-top: 4.27vw;
  font-size: 3.73vw;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .breath-use__step-text {
    margin-top: 24px;
    font-size: 14px;
  }
}

/* -------------------------------
   breath-fre
------------------------------- */
.breath-fre {
  background-image: url(../img/breath/concept_bg.png);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
}

.breath-fre_text {
  text-align: center;
}

.breath-fre__table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.breath-fre__table-wrap {
  min-width: 1000px;
  max-width: 100%;
  position: relative;
}

.breath-fre__table-wrap::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 0;
  width: clamp(90px, 10vw, 120px);
  aspect-ratio: 2 / 1;
  background: url(../img/snowmonster/snow_chart_tume.svg) center / cover
    no-repeat;
  transform: scale(-1, 1);
  pointer-events: none;
}

.breath-fre__table,
.breath-fre__table td {
  border-collapse: collapse;
}

.breath-fre__table {
  width: 100%;
  background: var(--black-color);
  table-layout: fixed;
  border: solid 1px var(--green-color);
}

.breath-fre__table td {
  width: 33%;
  padding: 8px 24px;
  vertical-align: top;
}

.breath-fre__table td.breath-fre_img {
  padding: 0 40px;
}

.breath-fre_product_td {
  font-weight: bold;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}

.breath-fre_product_td p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-align: left;
  font-size: 14px;
}

.breath-fre_product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.breath-fre_product::before {
  content: "";
  position: absolute;
  width: 320px;
  aspect-ratio: 375 / 171;
  height: auto;
  background: url("../img/common/bg-h2-01.png") center / contain no-repeat;
  z-index: 0;
}

@media screen and (min-width: 1200px) {
  .breath-fre_product::before {
    width: 350px;
  }
}

.breath-fre_product h3 {
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
  .breath-fre_product h3 {
    font-size: 20px;
  }
}

.breath-fre_txt {
  font-size: 12px;
  text-align: right;
}

/* -------------------------------
   breath-cta02
------------------------------- */
.breath-cta02 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../img/breath/concept_bg.png) center / cover no-repeat;

  min-height: 500px;
  position: relative;
}

.breath-cta02_bg {
  position: relative;
  overflow: hidden;
}

.breath-cta02_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-cta02_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
  }

  .breath-cta02_content:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    max-width: 360px;
    margin-top: 64px;
  }
}

@media screen and (min-width: 1080px) {
  .breath-cta02_wrap {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }

  .breath-cta02_content:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
    margin-top: 0;
  }
}

.breath-cta02_content {
  margin-top: 12.8vw;
}

@media screen and (min-width: 768px) {
  .breath-cta02_content {
    margin-top: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.breath-cta02_content:not(:first-child) {
  padding-top: 10.6vw;
}
@media screen and (min-width: 768px) {
  .breath-cta02_content:not(:first-child) {
    padding-top: 0;
  }
}

.breath-cta02_product {
  position: relative;
  display: grid;
  place-items: center;
}

.breath-cta02_product::before {
  content: "";
  position: absolute;
  top: -18vw;
  left: 50%;
  transform: translateX(-50%);
  width: 98.6vw;
  aspect-ratio: 375 / 171;
  height: auto;
  background: url("../img/common/bg-h2-01.png") center / contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .breath-cta02_product::before {
    max-width: 320px;
    top: -64px;
  }
}
@media screen and (min-width: 1080px) {
  .breath-cta02_product::before {
    max-width: 350px;
    top: -64px;
  }
}

.breath-cta02_product h3 {
  font-size: 4.8vw;
  font-weight: bold;
  font-style: italic;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .breath-cta02_product h3 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .breath-cta02_product h3 {
    font-size: 24px;
    margin-top: 8px;
  }
}

.breath-cta02_img {
  width: 73.3vw;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .breath-cta02_img {
    width: 60%;
    margin-top: 16px;
  }
}

.breath-cta02_content p {
  text-align: center;
  margin-bottom: 24px;
}

.breathLayout .breath-cta02 .prdBtnLink li {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .breathLayout .breath-cta02 .prdBtnLink li {
    width: 320px;
  }
  .breathLayout .breath-cta02 .prdBtnLink li a {
    font-size: 16px;
  }
}

.breathLayout .breath-cta02 .prdBtnLink li:nth-child(2) {
  margin-top: 4vw;
}

@media screen and (min-width: 768px) {
  .breathLayout .breath-cta02 .prdBtnLink li:nth-child(2) {
    margin-top: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .breathLayout .breath-cta02 .prdBtnLink li a span::after {
    display: none;
  }
}

.breathLayout .l_snow-inner01 {
  margin-top: 108px;
}

@media screen and (min-width: 768px) {
  .breathLayout .l_snow-inner01 {
    margin-top: 108px;
  }
}

/* ===============================
   Scroll Animation（追加分）
=============================== */
.js-fade-hero {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.js-fade-hero.is-visible {
  opacity: 1;
}

/* 初期状態 */
.js-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 表示状態 */
.js-animate.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* 左右スライド */
.js-slide-left {
  transform: translateX(-60px);
}
.js-slide-right {
  transform: translateX(60px);
}
.js-slide-left.is-inview,
.js-slide-right.is-inview {
  transform: translateX(0);
}

/* ズーム（画像用） */
.js-zoom {
  transform: scale(0.95);
}
.js-zoom.is-inview {
  transform: scale(1);
}

/* 少し遅延 */
.js-delay-1 {
  transition-delay: 0.15s;
}
.js-delay-2 {
  transition-delay: 0.3s;
}
.js-delay-3 {
  transition-delay: 0.45s;
}
