/* base setting */
body {
  color: #4c4948;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #00aa8d;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

[id] {
  scroll-margin-block-start: 136px;
}
@media screen and (max-width: 767px) {
  [id] {
    scroll-margin-block-start: 68px;
  }
}

#wrap {
  overflow-x: clip;
  width: 100%;
}

body.is-fixed #wrap {
  position: fixed;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(75px);
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* /base setting */
/* header */
#header {
  background: rgba(255, 255, 255, 0.95);
  padding: 28px 0;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 99;
}
#header .inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 64px;
}
#header .logo {
  line-height: 0;
  width: 178px;
}
@media (any-hover: hover) {
  #header .logo a:hover {
    opacity: 0.75;
  }
}
#header .header-link {
  display: flex;
  gap: 16px;
}
#header .header-link .btn {
  border-radius: 9999px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
}
#header .header-link .btn.btn-story {
  background: #fff;
  border: 1px solid #00aa8d;
  color: #00aa8d;
  width: 320px;
}
@media (any-hover: hover) {
  #header .header-link .btn.btn-story:hover {
    background: #00aa8d;
    color: #fff;
  }
}
#header .header-link .btn.btn-contact {
  background: #00aa8d;
  border: 1px solid #00aa8d;
  color: #fff;
  width: 172px;
}
@media (any-hover: hover) {
  #header .header-link .btn.btn-contact:hover {
    background: #fff;
    color: #00aa8d;
  }
}
@media screen and (max-width: 767px) {
  #header {
    padding: 13px 0 16px;
  }
  #header .inner-wrap {
    padding: 0 20px;
  }
  #header .logo {
    width: 89px;
  }
  #header .header-link {
    gap: 8px;
  }
  #header .header-link .btn {
    font-size: 1rem;
    height: 39px;
  }
  #header .header-link .btn.btn-contact, #header .header-link .btn.btn-story {
    width: 105px;
  }
}

/* /header */
/* footer */
#footer {
  background: #4c4c48;
  color: #fff;
  padding: 30px 40px 30px 60px;
  position: relative;
}
#footer .page-top {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 50px;
  bottom: 48px;
  z-index: 99;
  transition: opacity 0.3s ease;
}
#footer .page-top.is-show {
  opacity: 1;
  pointer-events: all;
}
#footer .page-top.is-end {
  position: absolute;
  bottom: calc(100% + 48px);
}
#footer .page-top .top-btn {
  color: #4c4948;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  text-align: center;
}
#footer .page-top .top-btn::before {
  background: url(/respiall/common/images/icn_pagetop.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 47px;
  height: 17px;
}
#footer .inner-wrap {
  display: flex;
  align-items: center;
  gap: 58px;
}
#footer .logo {
  width: 308px;
}
#footer .foot-link {
  display: flex;
  align-items: center;
  gap: 24px;
}
#footer .foot-link a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: underline;
}
@media (any-hover: hover) {
  #footer .foot-link a:hover {
    text-decoration: none;
  }
}
#footer .copyright {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 32px 20px 48px;
  }
  #footer .page-top {
    right: 20px;
    bottom: 20px;
  }
  #footer .page-top.is-end {
    bottom: calc(100% + 20px);
  }
  #footer .page-top .top-btn {
    gap: 15px;
    font-size: 1.2rem;
  }
  #footer .page-top .top-btn::before {
    width: 40px;
    height: 15px;
  }
  #footer .inner-wrap {
    flex-direction: column;
    gap: 0;
  }
  #footer .logo {
    width: 270px;
  }
  #footer .foot-link {
    flex-direction: column;
    gap: 8px;
    font-size: 1.1rem;
    margin-top: 24px;
  }
  #footer .copyright {
    font-size: 1.1rem;
    margin-top: 26px;
  }
}

/* /footer */
/* top */
.fit-nav {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 160px;
  left: 0;
  padding-left: 50px;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.fit-nav.is-show {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .fit-nav {
    display: none;
  }
}
.fit-nav ul {
  display: grid;
  gap: 24px;
}
.fit-nav ul .fit-nav-link {
  color: #4c4948;
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: bold;
  gap: 14px;
}
.fit-nav ul .fit-nav-link::before {
  background: #8dd8cc;
  border: 2px solid #8dd8cc;
  border-radius: 50%;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}
.fit-nav ul .fit-nav-link .ttl {
  opacity: 0;
  transition: all 0.3s ease;
}
.fit-nav ul .fit-nav-link.cur::before {
  background: #fff;
  border-color: #00aa8d;
}
@media (any-hover: hover) {
  .fit-nav ul .fit-nav-link:hover .ttl {
    opacity: 1;
  }
}

@keyframes scroll-arrow {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
.top-mv {
  position: relative;
}
.top-mv .mv-img {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.top-mv .mv-img img {
  width: 68.9604685212vw;
}
.top-mv .mv-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 4.6852122987vw;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.top-mv .mv-nav {
  padding: 1.756954612vw 0 0 2.9282576867vw;
}
@media screen and (max-width: 767px) {
  .top-mv .mv-nav {
    display: none;
  }
}
.top-mv .mv-nav h2 {
  font-size: 1.4641288433vw;
  font-weight: bold;
  margin-bottom: 2.3426061493vw;
}
.top-mv .mv-nav .nav-list {
  display: grid;
  gap: 1.756954612vw;
}
.top-mv .mv-nav .nav-list .nav-link {
  display: block;
}
.top-mv .mv-nav .nav-list .nav-link .ttl {
  font-size: 1.0980966325vw;
  font-weight: bold;
}
.top-mv .mv-nav .nav-list .nav-link .subject {
  background: linear-gradient(to right, #00aa8d 50%, #4c4948 50%) 100%;
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 1.317715959vw;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.7320644217vw;
  padding-left: 0.85em;
  text-indent: -0.85em;
  transition: background-position 0.3s ease;
}
@media (any-hover: hover) {
  .top-mv .mv-nav .nav-list .nav-link:hover .subject {
    background-position: 0 100%;
  }
}
.top-mv .mv-ttl {
  background: url(/respiall/common/images/bg_top_mv.svg) no-repeat center center/contain;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27.5256222548vw;
  height: 26.7203513909vw;
}
.top-mv .mv-ttl .sub {
  display: block;
  font-size: 1.756954612vw;
  font-weight: bold;
}
.top-mv .mv-ttl .main {
  display: block;
  font-size: 2.4158125915vw;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 2em;
  text-indent: -2em;
  margin-top: 10px;
}
.top-mv .scroll {
  display: flex;
  font-weight: 500;
  position: absolute;
  right: 5.8565153734vw;
  bottom: 1.4641288433vw;
}
.top-mv .scroll::before {
  background: url(/respiall/common/images/img_scroll_bg.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 0.878477306vw;
  height: 10.3953147877vw;
  position: relative;
  z-index: 1;
}
.top-mv .scroll::after {
  background: url(/respiall/common/images/img_scroll.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 0.878477306vw;
  height: 10.3953147877vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  animation: scroll-arrow 4s cubic-bezier(0.3, 0.93, 0.07, 0.965) infinite;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  will-change: clip-path;
}
@media screen and (max-width: 767px) {
  .top-mv .mv-img img {
    width: 100%;
  }
  .top-mv .mv-inner {
    justify-content: flex-end;
    padding: 0 -4vw;
    width: 100%;
    top: unset;
    bottom: -14.6666666667vw;
  }
  .top-mv .mv-ttl {
    background-image: url(/respiall/common/images/bg_top_mv_sp.svg);
    width: 46.1333333333vw;
    height: 44.8vw;
  }
  .top-mv .mv-ttl .sub {
    font-size: 2.9333333333vw;
    font-weight: 500;
  }
  .top-mv .mv-ttl .main {
    font-size: 5.3333333333vw;
    font-weight: 500;
    padding-left: 1em;
    text-indent: -1em;
  }
  .top-mv .scroll {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    right: 20px;
    bottom: unset;
    top: calc(100% + 49.6vw);
  }
  .top-mv .scroll::after, .top-mv .scroll::before {
    width: 8px;
    height: 72px;
  }
}

.top-lead {
  margin-top: -5px;
  padding: 0 64px;
  position: relative;
}
.top-lead .logo-box {
  background: url(/respiall/common/images/bg_top_lead.svg) no-repeat center center/contain;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 496px;
  height: 492px;
  margin: 0 auto;
  text-align: center;
}
.top-lead .logo-box .logo {
  width: 258px;
  line-height: 0;
  margin: 0 auto 48px;
}
.top-lead .logo-box .txt-wrap {
  color: #00aa8d;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.1;
}
.top-lead .logo-box .txt-wrap .plus {
  color: #9e9d9c;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 10px 0;
}
.top-lead .lead-txt {
  color: #00aa8d;
  font-size: 3.7rem;
  font-weight: bold;
  margin-top: 74px;
  text-align: center;
}
.top-lead .lead-subject {
  font-size: 2.1rem;
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-lead .sp-mv-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-lead {
    margin-top: -0.6666666667vw;
    padding: 0 20px;
  }
  .top-lead .logo-box {
    width: 66.1333333333vw;
    height: 65.6vw;
    padding-top: 10.6666666667vw;
  }
  .top-lead .logo-box .logo {
    width: 44.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
  .top-lead .logo-box .txt-wrap {
    font-size: 5.3333333333vw;
    font-weight: 500;
  }
  .top-lead .logo-box .txt-wrap .plus {
    font-size: 4.8vw;
    font-weight: 500;
    margin: 0;
  }
  .top-lead .lead-txt {
    font-size: 2rem;
    margin-top: 27px;
  }
  .top-lead .lead-subject {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .top-lead .sp-mv-nav {
    background: #F5F5F5;
    margin-top: 64px;
    padding: 27px 14px 38px;
  }
  .top-lead .sp-mv-nav h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-lead .sp-mv-nav .nav-list {
    display: grid;
    gap: 20px;
  }
  .top-lead .sp-mv-nav .nav-list .nav-link {
    display: block;
  }
  .top-lead .sp-mv-nav .nav-list .nav-link .ttl {
    font-size: 1.7rem;
    font-weight: 500;
  }
  .top-lead .sp-mv-nav .nav-list .nav-link .subject {
    color: #4c4948;
    font-size: 1.4rem;
    font-weight: 500;
    padding-left: 1em;
  }
}

.sec-ttl {
  aspect-ratio: 1366/408;
  background: url(/respiall/common/images/bg_title.png) no-repeat center center/auto 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: auto;
  text-align: center;
}
.sec-ttl .en-ttl {
  font-size: 2.2rem;
  font-weight: bold;
}
.sec-ttl .jp-ttl {
  font-size: 4.1rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    aspect-ratio: 750/314;
    background-image: url(/respiall/common/images/bg_title_sp.png);
    gap: 5px;
    padding-bottom: 3.2vw;
  }
  .sec-ttl .en-ttl {
    font-size: 1.4rem;
  }
  .sec-ttl .jp-ttl {
    font-size: 2.5rem;
  }
}

.top-story-sec {
  margin-top: 144px;
}
.top-story-sec .sec-ttl {
  margin-bottom: 110px;
}
.top-story-sec .sec-inner {
  margin: 0 auto;
  max-width: 1092px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top-story-sec {
    margin-top: 75px;
  }
  .top-story-sec .sec-ttl {
    margin-bottom: 30px;
  }
  .top-story-sec .sec-inner {
    padding: 0 20px;
  }
}
.top-story-sec .story-box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.top-story-sec .story-box .story-ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 64px;
  width: 100%;
}
.top-story-sec .story-box .txt-wrap {
  flex: 1;
  line-height: 1.9;
}
.top-story-sec .story-box.box-01 {
  gap: 0 6.588579795vw;
}
.top-story-sec .story-box.box-01 .img-wrap {
  width: min(518px, 37.9209370425vw);
}
.top-story-sec .story-box.box-01 .img-wrap figcaption {
  display: block;
  margin-top: 16px;
}
.top-story-sec .story-box.box-02 {
  gap: 0 4.2459736457vw;
  margin-top: 130px;
}
.top-story-sec .story-box.box-02 .img-wrap {
  width: min(568px, 41.5812591508vw);
}
@media screen and (max-width: 767px) {
  .top-story-sec .story-box {
    flex-direction: column;
  }
  .top-story-sec .story-box .story-ttl {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-story-sec .story-box.box-01 {
    gap: 20px;
  }
  .top-story-sec .story-box.box-01 .img-wrap {
    width: 100%;
  }
  .top-story-sec .story-box.box-01 .img-wrap img {
    width: 100%;
  }
  .top-story-sec .story-box.box-01 .img-wrap figcaption {
    font-size: 1.2rem;
    margin-top: 20px;
  }
  .top-story-sec .story-box.box-02 {
    gap: 20px;
    margin-top: 60px;
  }
  .top-story-sec .story-box.box-02 .img-wrap {
    width: 100%;
  }
}
.top-story-sec .story-wrap-ttl {
  background: #00aa8d;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  max-width: 650px;
  margin: 110px auto 0;
  height: 75px;
}
@media screen and (max-width: 767px) {
  .top-story-sec .story-wrap-ttl {
    font-size: 1.8rem;
    font-weight: 500;
    max-width: unset;
    margin: 60px 20px 0;
    height: 40px;
  }
}
.top-story-sec .story-target-list {
  display: grid;
  gap: 0 6.0761346999vw;
  grid-template-columns: auto 1fr auto;
  max-width: 1050px;
  margin: 76px auto 0;
}
.top-story-sec .story-target-list > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.top-story-sec .story-target-list > li.target-01 .img img {
  width: 216px;
}
.top-story-sec .story-target-list > li.target-02 .img img {
  width: 313px;
}
.top-story-sec .story-target-list > li.target-03 .img img {
  width: 284px;
}
.top-story-sec .story-target-list .target-ttl {
  color: #00aa8d;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 72px;
  position: relative;
  text-align: center;
}
.top-story-sec .story-target-list .target-ttl::after {
  background: url(/respiall/common/images/line_top_story_ttl.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 228px;
  height: 16px;
  position: absolute;
  left: calc(50% - 114px);
  top: calc(100% + 24px);
}
.top-story-sec .story-target-list .img {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .top-story-sec .story-target-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
    padding: 0 20px;
    margin-top: 20px;
  }
  .top-story-sec .story-target-list > li.target-01 {
    grid-column: 1/3;
  }
  .top-story-sec .story-target-list > li.target-01 .img img {
    width: 33.0666666667vw;
  }
  .top-story-sec .story-target-list > li.target-02 .img img {
    width: 44.6666666667vw;
  }
  .top-story-sec .story-target-list > li.target-03 .img img {
    width: 46.1333333333vw;
  }
  .top-story-sec .story-target-list .target-ttl {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 26px;
  }
  .top-story-sec .story-target-list .target-ttl::after {
    width: 114px;
    height: 8px;
    left: calc(50% - 57px);
    top: calc(100% + 10px);
  }
  .top-story-sec .story-target-list .img {
    align-items: center;
    justify-content: center;
  }
}

.top-concept-sec {
  margin-top: 160px;
}
.top-concept-sec .sec-ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec {
    margin-top: 70px;
    padding: 0 20px;
  }
  .top-concept-sec .sec-ttl {
    margin: 0 -20px 32px;
    width: calc(100% + 40px);
  }
}
.top-concept-sec .concept-lead {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-lead {
    font-size: 2rem;
    font-weight: 500;
    padding: 0;
  }
}
.top-concept-sec .concept-wrap-ttl {
  background: #00aa8d;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  max-width: 650px;
  height: 75px;
  margin: 110px auto 130px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-wrap-ttl {
    font-size: 1.8rem;
    font-weight: 500;
    height: 40px;
    margin: 36px 0 20px;
  }
}
.top-concept-sec .concept-block {
  background: url(/respiall/common/images/line_top_concept_01.svg) no-repeat center bottom/auto 100px;
  padding-bottom: 150px;
}
.top-concept-sec .concept-block:nth-of-type(2n) {
  background: url(/respiall/common/images/line_top_concept_02.svg) no-repeat center bottom/auto 100px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block {
    background-image: url(/respiall/common/images/line_top_concept_01_sp.svg);
    background-size: 100% auto;
    padding-bottom: 13.3333333333vw;
  }
  .top-concept-sec .concept-block:nth-of-type(2n) {
    background-image: url(/respiall/common/images/line_top_concept_02_sp.svg);
    background-size: 100% auto;
  }
}
.top-concept-sec .concept-block.concept-01 .concept-img-wrap {
  gap: 46px;
  margin-top: 40px;
}
.top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 {
  margin-top: 120px;
  width: min(496px, 36.3103953148vw);
}
.top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 .txt {
  left: 16px;
  top: -60px;
}
.top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 {
  width: min(424px, 31.0395314788vw);
}
.top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 .txt {
  right: -12px;
  top: -58px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap {
    gap: 60px;
    margin-top: 50px;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 {
    margin-top: 0;
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 .img {
    text-align: center;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 .img img {
    width: 64.8vw;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-01 .txt {
    left: unset;
    right: calc(50% + 2.1333333333vw);
    top: -7.7333333333vw;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 {
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 .img {
    text-align: center;
    padding-right: 20px;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 .img img {
    width: 56vw;
  }
  .top-concept-sec .concept-block.concept-01 .concept-img-wrap .img-02 .txt {
    left: calc(50% - 1.6vw);
    right: unset;
    top: -8.5333333333vw;
  }
}
.top-concept-sec .concept-block.concept-02 {
  margin-top: 90px;
}
.top-concept-sec .concept-block.concept-02 .concept-ttl {
  display: flex;
  justify-content: flex-end;
}
.top-concept-sec .concept-block.concept-02 .concept-img-wrap {
  gap: 36px;
  margin-top: 16px;
}
.top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 {
  width: min(430px, 31.4787701318vw);
}
.top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 .txt {
  left: -58px;
  top: -54px;
}
.top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 {
  margin-top: 140px;
  width: min(429px, 31.4055636896vw);
}
.top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 .txt {
  right: -100px;
  bottom: 35px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block.concept-02 {
    margin-top: 20px;
  }
  .top-concept-sec .concept-block.concept-02 .concept-ttl {
    justify-content: center;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap {
    gap: 30px;
    margin-top: 48px;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 {
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 .img {
    text-align: center;
    padding-left: 30px;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 .img img {
    width: 57.0666666667vw;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-03 .txt {
    right: calc(50% + 3.4666666667vw);
    left: unset;
    top: -7.2vw;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 {
    margin-top: 0;
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 .img {
    text-align: center;
    padding-right: 30px;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 .img img {
    width: 57.0666666667vw;
  }
  .top-concept-sec .concept-block.concept-02 .concept-img-wrap .img-04 .txt {
    right: unset;
    left: calc(50% + 8vw);
    bottom: unset;
    top: 23.3333333333vw;
  }
}
.top-concept-sec .concept-block.concept-03 {
  margin-top: 76px;
}
.top-concept-sec .concept-block.concept-03 .concept-img-wrap {
  margin-top: 40px;
}
.top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 {
  width: min(535px, 39.1654465593vw);
}
.top-concept-sec .concept-block.concept-03 .concept-img-wrap .txt {
  width: min(230px, 16.8374816984vw);
  height: min(230px, 16.8374816984vw);
}
.top-concept-sec .concept-block.concept-03 .concept-img-wrap .txt-01 {
  right: calc(100% + 10px);
  bottom: 28px;
}
.top-concept-sec .concept-block.concept-03 .concept-img-wrap .txt-02 {
  left: calc(100% + 18px);
  top: 84px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block.concept-03 {
    margin-top: 20px;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap {
    margin-top: 48px;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 {
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .img {
    text-align: center;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .img img {
    width: 52.2666666667vw;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .img figcaption {
    margin-top: 16.9333333333vw;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .txt {
    width: 29.8666666667vw;
    height: 29.8666666667vw;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .txt-01 {
    right: calc(50% + 14.6666666667vw);
    top: -7.6vw;
  }
  .top-concept-sec .concept-block.concept-03 .concept-img-wrap .img-05 .txt-02 {
    left: calc(50% + 14vw);
    top: 33.6vw;
  }
}
.top-concept-sec .concept-block.concept-04 {
  margin-top: 56px;
}
.top-concept-sec .concept-block.concept-04 .concept-ttl {
  display: flex;
  justify-content: flex-end;
}
.top-concept-sec .concept-block.concept-04 .concept-img-wrap {
  align-items: center;
  gap: 170px;
  margin-top: -14px;
}
.top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 {
  width: min(504px, 36.8960468521vw);
}
.top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 .txt {
  width: min(244px, 17.8623718887vw);
  height: min(244px, 17.8623718887vw);
  right: -76px;
  top: 230px;
}
.top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-07 {
  width: min(277px, 20.2781844802vw);
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block.concept-04 {
    margin-top: 20px;
  }
  .top-concept-sec .concept-block.concept-04 .concept-ttl {
    justify-content: center;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap {
    gap: 29px;
    margin-top: 20px;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 {
    width: 100%;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 .img {
    padding-right: 36px;
    text-align: center;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 .img img {
    width: 64.5333333333vw;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-06 .txt {
    width: 33.8666666667vw;
    height: 33.8666666667vw;
    right: unset;
    left: calc(50% + 4.4vw);
    top: 28vw;
    padding-top: 4.6666666667vw;
  }
  .top-concept-sec .concept-block.concept-04 .concept-img-wrap .img-07 {
    width: 100%;
  }
}
.top-concept-sec .concept-block .concept-ttl {
  color: #00aa8d;
  font-size: 3.9rem;
  font-weight: bold;
  max-width: 1046px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block .concept-ttl {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
  }
}
.top-concept-sec .concept-block .concept-img-wrap {
  display: flex;
  justify-content: center;
}
.top-concept-sec .concept-block .concept-img-wrap .concept-img {
  position: relative;
}
.top-concept-sec .concept-block .concept-img-wrap .concept-img .img {
  position: relative;
  z-index: 1;
}
.top-concept-sec .concept-block .concept-img-wrap .concept-img .img figcaption {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block .concept-img-wrap {
    flex-direction: column;
    align-items: center;
  }
  .top-concept-sec .concept-block .concept-img-wrap .concept-img .img figcaption {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
.top-concept-sec .concept-block .concept-img-wrap .txt {
  background: #fff;
  border: 1px solid #00aa8d;
  border-radius: 50%;
  color: #00aa8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(2.1rem, 1.5373352855vw);
  font-weight: 500;
  width: min(217px, 15.8857979502vw);
  height: min(217px, 15.8857979502vw);
  position: absolute;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-block .concept-img-wrap .txt {
    font-size: 3.4666666667vw;
    line-height: 1.3;
    width: 29.0666666667vw;
    height: 29.0666666667vw;
  }
}
.top-concept-sec .concept-end-block {
  margin-top: 145px;
  padding: 0 10px;
  text-align: center;
}
.top-concept-sec .concept-end-block .lead-txt {
  font-size: 3.2rem;
  font-weight: bold;
}
.top-concept-sec .concept-end-block .img {
  display: block;
  margin: 125px auto 0;
  max-width: 750px;
}
.top-concept-sec .concept-end-block .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-concept-sec .concept-end-block {
    margin-top: 45px;
    padding: 0;
  }
  .top-concept-sec .concept-end-block .lead-txt {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .top-concept-sec .concept-end-block .img {
    margin-top: 20px;
  }
}

.top-topic-sec {
  margin-top: 165px;
}
.top-topic-sec .sec-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.top-topic-sec .sec-inner::before {
  background: linear-gradient(135deg, rgb(96, 202, 184) 0%, rgb(0, 170, 141) 100%);
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 48px);
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 1;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding: 32px 0;
  position: relative;
  z-index: 2;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl {
  color: #fff;
  width: 100%;
  max-width: 540px;
  padding-left: 10px;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-sec-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 76px;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl .en-ttl {
  font-size: 2.8rem;
  font-weight: bold;
}
.top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl .jp-ttl {
  border-top: 2px solid #fff;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 16px;
  padding-top: 24px;
}
.top-topic-sec .sec-inner .img-wrap {
  border-radius: 20px 0 0 20px;
  width: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.top-topic-sec .sec-inner .img-wrap img {
  width: 100%;
}
.top-topic-sec .top-topic-block {
  background: #f9f4ed;
  margin: -24px 0 -5.8565153734vw;
  padding: 80px 0 260px;
}
.top-topic-sec .top-topic-block .block-inner {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 10px;
}
.top-topic-sec .top-topic-block .lead-txt {
  color: #00aa8d;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 48px;
}
.top-topic-sec .top-topic-block .txt-column {
  display: grid;
  gap: min(64px, 4.6852122987vw);
  grid-template-columns: 1fr 1fr;
  line-height: 1.9;
}
.top-topic-sec .top-topic-block .topic-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 110px;
}
.top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn {
  background: #fff;
  border: 1px solid #00aa8d;
  border-radius: 8px;
  color: #00aa8d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  max-width: 584px;
  width: 100%;
  height: 80px;
}
.top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn::after {
  background: url(../images/icn_btn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  vertical-align: middle;
}
@media (any-hover: hover) {
  .top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn:hover {
    background: #00aa8d;
    color: #fff;
  }
  .top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn:hover::after {
    background-image: url(/respiall/common/images/icn_btn_arrow_white.svg);
  }
}
@media screen and (max-width: 767px) {
  .top-topic-sec {
    margin-top: 130px;
    position: relative;
  }
  .top-topic-sec::before {
    background: #f9f4ed;
    content: "";
    display: block;
    width: 100%;
    height: calc(100% - 57.3333333333vw);
    position: absolute;
    left: 0;
    top: 57.3333333333vw;
    z-index: 1;
  }
  .top-topic-sec .sec-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    position: relative;
    z-index: 2;
  }
  .top-topic-sec .sec-inner::before {
    display: none;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap {
    background: linear-gradient(135deg, rgb(96, 202, 184) 0%, rgb(0, 170, 141) 100%);
    border-radius: 0 8px 8px 0;
    width: calc(100% - 20px);
    padding: 35px 20px;
    position: relative;
    z-index: 2;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl {
    padding-left: 0;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-sec-ttl {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl {
    align-items: unset;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl .en-ttl {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .top-topic-sec .sec-inner .top-topic-ttl-wrap .top-topic-ttl .topic-ttl .jp-ttl {
    border-top-width: 1px;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 6px;
    padding-top: 6px;
  }
  .top-topic-sec .sec-inner .img-wrap {
    border-radius: 8px 0 0 8px;
    width: calc(100% - 60px);
    margin: 0 0 -26px 60px;
    position: relative;
    z-index: 1;
  }
  .top-topic-sec .top-topic-block {
    background: none;
    margin: 0;
    padding: 20px 0 24px;
    position: relative;
    z-index: 2;
  }
  .top-topic-sec .top-topic-block .block-inner {
    padding: 0 20px;
  }
  .top-topic-sec .top-topic-block .lead-txt {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
  }
  .top-topic-sec .top-topic-block .txt-column {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .top-topic-sec .top-topic-block .topic-btn-wrap {
    margin-top: 24px;
  }
  .top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn {
    font-size: 1.6rem;
    font-weight: 500;
    height: 55px;
    position: relative;
  }
  .top-topic-sec .top-topic-block .topic-btn-wrap .topic-btn::after {
    position: absolute;
    right: 12px;
    top: calc(50% - 8px);
  }
}

.top-lineup-sec {
  position: relative;
}
.top-lineup-sec .sec-ttl {
  margin-bottom: 115px;
}
.top-lineup-sec .sec-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top-lineup-sec {
    margin-top: 70px;
  }
  .top-lineup-sec .sec-ttl {
    margin-bottom: 30px;
  }
  .top-lineup-sec .sec-inner {
    padding: 0 20px;
  }
}

.lineup-list {
  display: grid;
  gap: 64px 32px;
  grid-template-columns: repeat(3, 1fr);
}
.lineup-list .lineup-link {
  color: #4c4948;
  display: block;
}
.lineup-list .lineup-link .item-img {
  border-radius: 16px;
  overflow: hidden;
}
.lineup-list .lineup-link .item-img img {
  transition: all 0.3s ease;
  width: 100%;
}
.lineup-list .lineup-link .item-name {
  margin-top: 16px;
  text-align: center;
}
@media (any-hover: hover) {
  .lineup-list .lineup-link:hover .item-img img {
    transform: scale(1.05);
  }
  .lineup-list .lineup-link:hover .item-name {
    text-decoration: underline;
    text-underline-offset: 0.25em;
  }
}
@media screen and (max-width: 767px) {
  .lineup-list {
    gap: 24px 18px;
    grid-template-columns: repeat(2, 1fr);
  }
  .lineup-list .lineup-link .item-img {
    border-radius: 8px;
  }
  .lineup-list .lineup-link .item-name {
    font-weight: 500;
  }
}

.link-sec {
  background: #f5f5f5;
  margin-top: 110px;
  padding: 70px 0 190px;
}
.link-sec .sec-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}
.link-sec .link-ttl {
  margin-bottom: 80px;
  text-align: center;
}
.link-sec .link-ttl .en-ttl {
  color: #00aa8d;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.link-sec .link-ttl .jp-ttl {
  font-size: 3.4rem;
  font-weight: bold;
}
.link-sec .link-list {
  display: grid;
  gap: 43px;
  grid-template-columns: repeat(3, 1fr);
}
.link-sec .link-list .bnr-link img {
  width: 100%;
}
@media (any-hover: hover) {
  .link-sec .link-list .bnr-link:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 767px) {
  .link-sec {
    margin-top: 60px;
    padding: 32px 0 93px;
  }
  .link-sec .sec-inner {
    padding: 0 20px;
  }
  .link-sec .link-ttl {
    margin-bottom: 36px;
  }
  .link-sec .link-ttl .en-ttl {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .link-sec .link-ttl .jp-ttl {
    font-size: 2rem;
    font-weight: bold;
  }
  .link-sec .link-list {
    gap: 20px;
    grid-template-columns: 1fr;
    max-width: 270px;
    margin: 0 auto;
  }
}

/* /top */
/* story */
.story-mv {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .story-mv {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
.story-mv .mv-txt {
  background: linear-gradient(135deg, rgb(96, 202, 184) 0%, rgb(0, 170, 141) 100%);
  border-radius: 0 20px 20px 0;
  color: #fff;
  flex: 1;
  margin-right: -11.7130307467vw;
  padding: 40px 50px 50px 76px;
  position: relative;
  z-index: 2;
}
.story-mv .mv-txt .ttl-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 32px;
}
.story-mv .mv-txt .ttl-wrap .ttl {
  font-size: 1.7rem;
  font-weight: bold;
}
.story-mv .mv-txt .ttl-wrap .sub-ttl {
  border-left: 1px solid #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 25px;
}
.story-mv .mv-txt .lead-txt {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 32px;
}
.story-mv .mv-txt .txt {
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .story-mv .mv-txt {
    border-radius: 0 12px 12px 0;
    margin-right: 20px;
    padding: 20px 20px 50px;
  }
  .story-mv .mv-txt .ttl-wrap {
    gap: 12px;
    margin-bottom: 16px;
  }
  .story-mv .mv-txt .ttl-wrap .ttl {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .story-mv .mv-txt .ttl-wrap .sub-ttl {
    font-size: 1.2rem;
    padding-left: 12px;
  }
  .story-mv .mv-txt .lead-txt {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .story-mv .mv-txt .txt {
    font-size: 1.4rem;
  }
}
.story-mv .mv-img {
  border-radius: 25px 0 0 25px;
  overflow: hidden;
  position: relative;
  width: 66.6178623719vw;
  z-index: 1;
}
.story-mv .mv-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .story-mv .mv-img {
    border-radius: 12px 0 0 12px;
    width: calc(100% - 60px);
    margin-bottom: -25px;
  }
}
.story-mv .scroll {
  display: flex;
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: -86px;
  z-index: 3;
}
.story-mv .scroll::before {
  background: url(/respiall/common/images/img_scroll_story_bg.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 0.878477306vw;
  height: 13.17715959vw;
  position: relative;
  z-index: 1;
}
.story-mv .scroll::after {
  background: url(/respiall/common/images/img_scroll_story.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 0.878477306vw;
  height: 13.17715959vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  animation: scroll-arrow 4s cubic-bezier(0.3, 0.93, 0.07, 0.965) infinite;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  will-change: clip-path;
}
@media screen and (max-width: 767px) {
  .story-mv .scroll {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    bottom: -40px;
  }
  .story-mv .scroll::after, .story-mv .scroll::before {
    width: 8px;
    height: 74px;
  }
}

.page-anchor-list {
  margin-top: 140px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .page-anchor-list {
    margin-top: 80px;
    padding: 0 20px;
  }
}
.page-anchor-list ul {
  display: grid;
  gap: 64px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-anchor-list ul {
    gap: 25px;
    grid-template-columns: 1fr;
  }
}
.page-anchor-list ul .anchor-link {
  display: block;
  text-align: center;
  padding-bottom: 50px;
  position: relative;
}
.page-anchor-list ul .anchor-link::after {
  background: url(/respiall/common/images/icn_arrow_story_anchor_01.svg) no-repeat center center/contain;
  content: "";
  display: block;
  width: 24px;
  height: 16px;
  position: absolute;
  left: calc(50% - 12px);
  bottom: 0;
}
.page-anchor-list ul .anchor-link .ttl-wrap {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner {
  position: relative;
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner::after, .page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner::before {
  background: #909090;
  content: "";
  display: block;
  width: 50vw;
  height: 1px;
  position: absolute;
  top: 50%;
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner::before {
  right: calc(100% + 16px);
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner::after {
  left: calc(100% + 16px);
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner .ttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.page-anchor-list ul .anchor-link .ttl-wrap .ttl-inner .num {
  font-size: 5.2rem;
  font-weight: 500;
  line-height: 1;
}
.page-anchor-list ul .anchor-link .link-txt {
  background: linear-gradient(to right, #00aa8d 50%, #4c4948 50%) 100%;
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-size: 2.3rem;
  font-weight: 500;
  transition: background-position 0.3s ease;
}
@media (any-hover: hover) {
  .page-anchor-list ul .anchor-link:hover .link-txt {
    background-position: 0 100%;
  }
}
@media screen and (max-width: 767px) {
  .page-anchor-list ul .anchor-link {
    padding-bottom: 24px;
  }
  .page-anchor-list ul .anchor-link::after {
    width: 12px;
    height: 8px;
    left: calc(50% - 6px);
  }
  .page-anchor-list ul .anchor-link .ttl-wrap {
    margin-bottom: 10px;
  }
  .page-anchor-list ul .anchor-link .ttl-wrap::before {
    right: calc(100% + 12px);
  }
  .page-anchor-list ul .anchor-link .ttl-wrap::after {
    left: calc(100% + 12px);
  }
  .page-anchor-list ul .anchor-link .ttl-wrap .ttl {
    font-size: 1rem;
  }
  .page-anchor-list ul .anchor-link .ttl-wrap .num {
    font-size: 3.6rem;
  }
  .page-anchor-list ul .anchor-link .link-txt {
    font-size: 1.6rem;
  }
}

.sec-ttl-box {
  position: relative;
  z-index: 2;
}
.sec-ttl-box .ttl {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.sec-ttl-box .ttl .story {
  color: #00aa8d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec-ttl-box .ttl .story .txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
.sec-ttl-box .ttl .story .num {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 0.85;
}
.sec-ttl-box .ttl h2 {
  flex: 1;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
}
.sec-ttl-box .lead-txt {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.sec-ttl-box .txt {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .sec-ttl-box .ttl {
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }
  .sec-ttl-box .ttl .story .txt {
    font-size: 1rem;
  }
  .sec-ttl-box .ttl .story .num {
    font-size: 3.6rem;
  }
  .sec-ttl-box .ttl h2 {
    font-size: 2rem;
  }
  .sec-ttl-box .lead-txt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .sec-ttl-box .txt {
    line-height: 1.785;
  }
}

.story-sec {
  color: #000;
}
.story-sec .story-box {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.story-sec .story-box .box-ttl {
  font-size: 2.3rem;
  font-weight: 500;
}
.story-sec .label {
  aspect-ratio: 1;
  background: #fff;
  border: 2px solid #00aa8d;
  border-radius: 50%;
  color: #00aa8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .story-sec .story-box {
    border-radius: 13px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.16);
  }
  .story-sec .story-box .box-ttl {
    font-size: 2rem;
  }
  .story-sec .label {
    aspect-ratio: unset;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 500;
    width: 104px;
    height: 30px;
  }
}

.anchor-link-wrap {
  margin-top: 48px;
  text-align: center;
}
.anchor-link-wrap .anchor-arrow {
  background: url(/respiall/common/images/icn_arrow_story_anchor_02.svg) no-repeat center center/contain;
  display: block;
  width: 24px;
  height: 8px;
  line-height: 0;
  margin: 0 auto;
  overflow: hidden;
  text-indent: -9999px;
}
@media screen and (max-width: 767px) {
  .anchor-link-wrap {
    margin-top: 20px;
  }
  .anchor-link-wrap .anchor-arrow {
    width: 12px;
    height: 4px;
  }
}

.next-story-link {
  margin-top: 48px;
  text-align: center;
}
.next-story-link .link-next {
  background: url(/respiall/common/images/icn_arrow_story_anchor_02.svg) no-repeat center bottom/24px auto;
  color: #323232;
  display: inline-block;
  font-size: 1.1rem;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .next-story-link {
    margin-top: 20px;
  }
  .next-story-link .link-next {
    background-size: 12px auto;
    color: #000;
    padding-bottom: 8px;
  }
}

.story-sec-01 {
  margin-top: 80px;
  position: relative;
}
.story-sec-01::before {
  background: #f5f5f5;
  content: "";
  display: block;
  width: 67.0571010249vw;
  height: 39.1654465593vw;
  position: absolute;
  right: 0;
  bottom: 225px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .story-sec-01 {
    margin-top: 40px;
  }
  .story-sec-01::before {
    display: none;
  }
}
.story-sec-01 .sec-ttl-box {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.story-sec-01 .sec-ttl-box .ttl-img {
  border-radius: 0 25px 25px 0;
  width: 43.9238653001vw;
  margin-right: -6.9546120059vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.story-sec-01 .sec-ttl-box .ttl-txt {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 744px;
  padding: 64px 80px 36px 68px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .story-sec-01 .sec-ttl-box {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .story-sec-01 .sec-ttl-box .ttl-img {
    border-radius: 0 12px 12px 0;
    width: calc(100% + 20px);
    margin: 0 0 -30px -20px;
  }
  .story-sec-01 .sec-ttl-box .ttl-txt {
    border-radius: 13px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.16);
    padding: 30px 20px 40px;
  }
}
.story-sec-01 .sec-inner {
  max-width: 1094px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .story-sec-01 .sec-inner {
    padding: 0 20px;
    position: relative;
  }
  .story-sec-01 .sec-inner::before {
    background: #f5f5f5;
    content: "";
    display: block;
    width: 69.3333333333vw;
    height: 655px;
    position: absolute;
    right: -20px;
    bottom: 226px;
    z-index: 1;
  }
}
.story-sec-01 .story-01-01 {
  margin-top: 80px;
  padding: 64px 50px 32px 80px;
}
.story-sec-01 .story-01-01 .box-01-01 {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}
.story-sec-01 .story-01-01 .box-01-01 .txt-wrap {
  flex: 1;
  line-height: 1.9;
  min-width: 200px;
}
.story-sec-01 .story-01-01 .box-01-01 .img-wrap {
  text-align: center;
}
.story-sec-01 .story-01-01 .box-01-01 .img-wrap h4 {
  color: #00aa8d;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.story-sec-01 .story-01-01 .box-01-01 .img-wrap .target-list {
  background: #e4f3f0;
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.story-sec-01 .story-01-01 .box-01-01 .img-wrap .target-list > li {
  aspect-ratio: 1;
  background: #fff;
  border: 2px solid #00aa8d;
  border-radius: 50%;
  color: #00aa8d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  font-weight: bold;
  width: 128px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .story-sec-01 .story-01-01 {
    margin-top: 20px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
  }
  .story-sec-01 .story-01-01 .box-01-01 {
    margin-top: 20px;
    flex-direction: column;
    flex-wrap: unset;
    gap: 20px;
  }
  .story-sec-01 .story-01-01 .box-01-01 .txt-wrap {
    line-height: 1.785;
  }
  .story-sec-01 .story-01-01 .box-01-01 .img-wrap h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .story-sec-01 .story-01-01 .box-01-01 .img-wrap .target-list {
    border-radius: 0;
    padding: 12px;
    gap: 12px;
  }
  .story-sec-01 .story-01-01 .box-01-01 .img-wrap .target-list > li {
    font-size: 1.3rem;
    font-weight: 500;
    width: auto;
  }
}

.story-sec-02 {
  margin-top: 135px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .story-sec-02 {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.story-sec-02 .sec-ttl-box {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 1074px;
  margin: 0 auto;
  padding: 56px 80px 40px;
  position: relative;
  z-index: 2;
}
.story-sec-02 .sec-ttl-box .box-inner {
  position: relative;
}
.story-sec-02 .sec-ttl-box .label {
  position: absolute;
  right: 0;
  top: 80px;
}
.story-sec-02 .sec-ttl-box .lead-txt {
  margin-bottom: 64px;
  padding-right: 120px;
}
.story-sec-02 .sec-ttl-box .txt-col-wrap {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2, 1fr);
  line-height: 1.9;
}
.story-sec-02 .sec-ttl-box .img-wrap {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
}
.story-sec-02 .sec-ttl-box .img-wrap .img {
  text-align: center;
}
.story-sec-02 .sec-ttl-box .img-wrap .img:first-child img {
  width: 420px;
}
.story-sec-02 .sec-ttl-box .img-wrap .img:last-child img {
  width: 360px;
}
@media screen and (max-width: 767px) {
  .story-sec-02 .sec-ttl-box {
    border-radius: 13px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.16);
    padding: 20px;
  }
  .story-sec-02 .sec-ttl-box .label {
    position: static;
    margin: 0 0 20px auto;
  }
  .story-sec-02 .sec-ttl-box .lead-txt {
    margin-bottom: 20px;
    padding-right: 0;
  }
  .story-sec-02 .sec-ttl-box .txt-col-wrap {
    display: block;
    line-height: 1.78;
  }
  .story-sec-02 .sec-ttl-box .txt-col-wrap .col {
    display: inline;
  }
  .story-sec-02 .sec-ttl-box .img-wrap {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .story-sec-02 .sec-ttl-box .img-wrap .img:first-child img {
    width: 100%;
  }
  .story-sec-02 .sec-ttl-box .img-wrap .img:last-child img {
    width: 100%;
  }
}
.story-sec-02 .story-02-01-wrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-top: 80px;
  margin-left: -10px;
  position: relative;
  z-index: 1;
}
.story-sec-02 .story-02-01-wrap::before {
  background: #f5f5f5;
  content: "";
  display: block;
  width: 58.9311859444vw;
  height: calc(100% + 320px);
  position: absolute;
  right: 0;
  top: -160px;
  z-index: 1;
}
.story-sec-02 .story-02-01-wrap .img {
  border-radius: 20px;
  margin-left: -4.39238653vw;
  overflow: hidden;
  position: relative;
  width: 38.9458272328vw;
  z-index: 2;
}
.story-sec-02 .story-02-01-wrap .story-02-01 {
  width: 50.5124450952vw;
  border-radius: 0 25px 25px 0;
  padding: 40px 6.588579795vw 36px 8.4187408492vw;
  position: relative;
  z-index: 3;
}
.story-sec-02 .story-02-01-wrap .story-02-01 .ttl-txt {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.story-sec-02 .story-02-01-wrap .story-02-01 .ttl-txt .box-ttl {
  flex: 1;
}
.story-sec-02 .story-02-01-wrap .story-02-01 .txt-wrap {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .story-sec-02 .story-02-01-wrap {
    display: block;
    margin: 40px 0 0;
  }
  .story-sec-02 .story-02-01-wrap::before {
    width: 69.3333333333vw;
    height: 550px;
    right: -20px;
    top: unset;
    bottom: calc(100% - 174px);
  }
  .story-sec-02 .story-02-01-wrap .img {
    border-radius: 12px;
    margin: 0 0 -35px;
    width: 100%;
  }
  .story-sec-02 .story-02-01-wrap .story-02-01 {
    width: 100%;
    border-radius: 13px;
    padding: 20px;
  }
  .story-sec-02 .story-02-01-wrap .story-02-01 .ttl-txt {
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
  }
  .story-sec-02 .story-02-01-wrap .story-02-01 .ttl-txt .box-ttl {
    width: 100%;
  }
  .story-sec-02 .story-02-01-wrap .story-02-01 .txt-wrap {
    line-height: 1.78;
  }
}
.story-sec-02 .story-02-02-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 80px;
  margin-right: -10px;
}
.story-sec-02 .story-02-02-wrap .story-02-02 {
  border-radius: 25px 0 0 25px;
  width: 74.6705710102vw;
  padding: 46px 9.1508052709vw 40px 7.3206442167vw;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .ttl-txt {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .ttl-txt .box-ttl {
  flex: 1;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap {
  line-height: 1.9;
  overflow: hidden;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-01 .img {
  float: right;
  margin-left: 50px;
  width: 180px;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-02 {
  margin-top: 48px;
}
.story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-02 .img {
  float: left;
  margin-right: 50px;
  width: 350px;
}
@media screen and (max-width: 767px) {
  .story-sec-02 .story-02-02-wrap {
    display: block;
    margin: 20px 0 0;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 {
    border-radius: 13px;
    width: 100%;
    padding: 20px;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .ttl-txt {
    align-items: flex-end;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .ttl-txt .box-ttl {
    width: 100%;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap {
    line-height: 1.78;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-01 .img {
    margin: 0 0 10px 10px;
    width: 91px;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-02 {
    margin-top: 20px;
  }
  .story-sec-02 .story-02-02-wrap .story-02-02 .txt-wrap.txt-02 .img {
    float: unset;
    margin: 0 auto 20px;
    width: 75.3333333333vw;
  }
}

.story-02-03-wrap {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.story-02-03-wrap::before {
  background: #f5f5f5;
  content: "";
  display: block;
  width: 49.7803806735vw;
  height: 495px;
  position: absolute;
  left: 0;
  top: -235px;
  z-index: 1;
}
.story-02-03-wrap .story-02-03 {
  max-width: 1074px;
  margin: 0 auto;
  padding: 40px 96px 30px 80px;
  position: relative;
  z-index: 2;
}
.story-02-03-wrap .story-02-03 .ttl-txt {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 16px;
}
.story-02-03-wrap .story-02-03 .ttl-txt .box-ttl {
  flex: 1;
}
.story-02-03-wrap .story-02-03 .box-col-wrap {
  display: flex;
  gap: 50px;
  margin-top: 32px;
}
.story-02-03-wrap .story-02-03 .box-col-wrap .txt-wrap {
  flex: 1;
  line-height: 1.9;
}
.story-02-03-wrap .story-02-03 .box-col-wrap .img-wrap {
  width: 275px;
}
.story-02-03-wrap .story-02-03 .box-col-wrap .img-wrap .img figcaption {
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .story-02-03-wrap {
    margin-top: 20px;
  }
  .story-02-03-wrap::before {
    width: 69.3333333333vw;
    height: 550px;
    left: -20px;
    top: unset;
    bottom: calc(100% - 174px);
  }
  .story-02-03-wrap .story-02-03 {
    padding: 20px;
    width: 100%;
  }
  .story-02-03-wrap .story-02-03 .ttl-txt {
    align-items: flex-end;
    flex-direction: column;
    gap: 20px;
  }
  .story-02-03-wrap .story-02-03 .ttl-txt .box-ttl {
    width: 100%;
  }
  .story-02-03-wrap .story-02-03 .box-col-wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .story-02-03-wrap .story-02-03 .box-col-wrap .txt-wrap {
    line-height: 1.78;
  }
  .story-02-03-wrap .story-02-03 .box-col-wrap .img-wrap {
    width: 100%;
  }
  .story-02-03-wrap .story-02-03 .box-col-wrap .img-wrap .img figcaption {
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

.story-sec-03 {
  margin-top: 125px;
}
.story-sec-03 .sec-ttl-box {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding-left: 10px;
}
.story-sec-03 .sec-ttl-box .ttl-img {
  border-radius: 25px 0 0 25px;
  overflow: hidden;
  width: 54.9048316252vw;
  margin-left: -17.9355783309vw;
  position: relative;
  z-index: 1;
}
.story-sec-03 .sec-ttl-box .ttl-txt {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 744px;
  padding: 64px 70px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .story-sec-03 {
    margin-top: 40px;
  }
  .story-sec-03 .sec-ttl-box {
    flex-direction: column;
    padding: 0 20px;
  }
  .story-sec-03 .sec-ttl-box .ttl-img {
    border-radius: 13px 0 0 13px;
    width: calc(100% + 20px);
    margin: 0 -20px -90px 0;
  }
  .story-sec-03 .sec-ttl-box .ttl-txt {
    border-radius: 13px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.16);
    width: 100%;
    padding: 30px 20px;
  }
}

.story-last-sec {
  margin-top: 120px;
  padding: 0 10px;
}
.story-last-sec .lead-wrap {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 2.238;
  text-align: center;
}
.story-last-sec .lead-wrap p + p {
  margin-top: 2.1em;
}
.story-last-sec .logo-wrap {
  margin: 64px auto 0;
  width: 269px;
}
@media screen and (max-width: 767px) {
  .story-last-sec {
    margin-top: 80px;
    padding: 0 20px;
  }
  .story-last-sec .lead-wrap {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.78;
  }
  .story-last-sec .lead-wrap p + p {
    margin-top: 1.7em;
  }
  .story-last-sec .logo-wrap {
    margin-top: 35px;
    width: 172px;
  }
}

.story-lineup-sec {
  margin-top: 110px;
}
.story-lineup-sec .sec-inner {
  border-top: 1px solid #b6b6b6;
  max-width: 1124px;
  margin: 0 auto;
  padding: 110px 10px 0;
}
.story-lineup-sec .lineup-ttl {
  margin-bottom: 80px;
  text-align: center;
}
.story-lineup-sec .lineup-ttl .en-ttl {
  color: #00aa8d;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.story-lineup-sec .lineup-ttl .jp-ttl {
  font-size: 3.4rem;
  font-weight: bold;
}
.story-lineup-sec .lineup-list {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .story-lineup-sec {
    margin-top: 40px;
    padding: 0 20px;
  }
  .story-lineup-sec .sec-inner {
    padding: 45px 0 0;
  }
  .story-lineup-sec .lineup-ttl {
    margin-bottom: 24px;
  }
  .story-lineup-sec .lineup-ttl .en-ttl {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .story-lineup-sec .lineup-ttl .jp-ttl {
    font-size: 2rem;
  }
}

/* /story *//*# sourceMappingURL=module.css.map */