@charset "utf-8";

:root {
  --c-blue: #006ebc;
  --c-lblue: #EEFAFF;
  --c-gblue: #0077C1;
  --c-green: #3BB9B4;
  --c-gray: #B8B8B8;

  --c-grade: linear-gradient(45deg, var(--c-green), #C6E9FF);
  --c-grade--btn: linear-gradient(45deg, var(--c-gblue), var(--c-green));
  --c-grade--cta: linear-gradient(45deg, var(--c-green), #8AD2FF);

  --t-fade: 300ms;
  --t-slow: 1000ms;

  --fw-black: 900;
  --fw-bold: 700;
  --fw-sbold: 600;
  --fw-normal: 400;
}

/* common */

/* l-レイアウト */
/* body */
.l-body {
  display: block;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 1.4em;
}
.l-body__wrap {
  display: block;
  position: relative;
  margin: 0 auto;
}
.l-body img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
.l-body a {
  text-decoration: none;
}

/* l-main */
.l-main {
  font-size: 16px;
  line-height: 2;
  font-weight: var(--fw-sbold);
}

/* header */
.l-header {
  font-size: 16px;
  line-height: 1.4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.js-header {
  transition: transform var(--t-fade);
}
.js-header:not(.js-is-float) {
  transform: translateY(-100%);
}
.l-header__float {
  background-color: #ffffff;
  width: 100%;
}
.l-header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  max-width: 1920px;
  margin-inline: auto;
  gap: 65px;
}
.l-header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 30px;
}
.l-header__logo > li {
  max-width: 145px;
}
.l-hdrNav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.l-hdrNav__toggles {
  display: block;
  position: relative;
}
.l-hdrNav__toggle--txt {
  position: relative;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: color var(--t-fade);
}
.l-hdrNav__toggle--txt::before {
  content: "";
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background-color: var(
  --c-blue);
  transition: width var(--t-fade);
}
.l-hdrNav__toggle--txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  border-color: var(--c-blue);
  border-style: solid;
  border-left: 3px;
  border-bottom: 3px;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  transform: translateY(calc(-50% - (3px * 1.4142))) rotate(135deg);
}
.l-hdrNav__toggle--txt:hover {
  color: var(--c-blue);
}
.l-hdrNav__toggle--hum {
  display: block;
  position: relative;
  width: 40px;
  height: 24px;
}
.l-hdrNav__toggle--hum > i,
.l-hdrNav__toggle--hum::before,
.l-hdrNav__toggle--hum::after {
  display: block;
  position: absolute;
  width: 40px;
  height: 4px;
  transform: translate(-50%, -50%);
  background-color: var(--c-blue);
  border-radius: 999px;
  transition: transform var(--t-fade) ,top var(--t-fade) ,bottom var(--t-fade);
}
.l-hdrNav__toggle--hum::before,
.l-hdrNav__toggle--hum::after {
  content: '';
}
.l-hdrNav__toggle--hum > i {
  top: 50%;
  left: 50%;
}
.l-hdrNav__toggle--hum::before {
  top: 2px;
  left: 50%;
}
.l-hdrNav__toggle--hum::after {
  bottom: -2px;
  left: 50%;
}
.l-hdrNav_menus .c-accordion + .c-accordion {
  margin-top: 0;
}
.l-hdrNav_menus__wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px 72px;
  width: 100%;
}
.l-hdrNav_menu__ttl {
  font-weight: var(--fw-bold);
  color: #000000;
}
.l-hdrNav_menu__links {
  padding-top: 12px;
}
.l-hdrNav_menu__links > li {
  padding: 12px 0;
}
.l-hdrNav__close {
  content: "";
  visibility: hidden;
  display: block;
  position: fixed;
  z-index: -999;
  font-size: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity var(--t-fade), visibility var(--t-fade);
}
.js-hdrNav.js-is-open .l-hdrNav__toggle--txt {
  color: var(--c-blue);
}
.js-hdrNav.js-is-open .l-hdrNav__toggle--txt::before {
  width: 100%;
}
.js-hdrNav.js-is-open .l-hdrNav__toggle--hum > i,
.js-hdrNav.js-is-open .l-hdrNav__toggle--hum::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(26deg);
}
.js-hdrNav.js-is-open .l-hdrNav__toggle--hum::after {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%) rotate(-26deg);
}
.js-hdrNav.js-is-open .l-hdrNav__close {
  visibility: visible;
  opacity: 0.5;
}
@media screen and (min-width: 769px) {
  .l-hdrNav__toggle--hum {
    display: none;
  }

  .js-hdrNav .l-hdrNav_menus {
    position: absolute;
    z-index: -10;
    transition: top var(--t-fade);
    background-color: #ffffff;
    padding: 50px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    top: -100vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .l-hdrNav_menus__wrap {
    max-height: 70vh;
    overflow-y: auto;
  }
  .l-hdrNav_menu__ttl::after {
    content: "";
    display: block;
    position: relative;
    left: 0;
    right: 0;
    background-color: var(--c-gray);
    margin-top: 24px;
    height: 1px;
  }
  .js-hdrNav.js-is-open .l-hdrNav_menus {
    top: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__wrap {
    padding: 20px;
  }
  .l-header__logo > li {
    width: calc(50% - 15px);
  }
  .l-hdrNav__toggle--txt {
    display: none;
  }

  .js-hdrNav .l-hdrNav__cont {
    position: absolute;
    z-index: -10;
    left: 0;
    right: 0;
    transition: top var(--t-fade);
    background-color: #ffffff;
    padding: 30px 20px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    top: -100vh;
  }
  .js-hdrNav.js-is-open .l-hdrNav__cont {
    top: 100%;
  }
  .l-hdrNav__cont__wrap {
    max-height: 70vh;
    overflow-y: auto;
  }
  .l-hdrNav_menus__wrap {
    flex-direction: column;
    align-items: center;
  }
  .l-hdrNav_menu {
    width: 100%;
  }
  .l-hdrNav_menu::after {
    content: "";
    display: block;
    position: relative;
    left: 0;
    right: 0;
    background-color: var(--c-gray);
    margin-top: 24px;
    height: 1px;
  }
  .l-hdrNav_menu__links {
    padding-left: 1em;
  }
  .l-hdrNav_btns {
    margin-top: 40px;
  }
}

/* cta */
.l-cta {
  padding: 100px 50px;
  background: var(--c-grade--cta);
  line-height: 1.4;
}
.l-cta__wrap {
  width: auto;
  max-width: 1200px;
  margin-inline: auto;
}
.l-cta__ttl {
  font-size: 43px;
  font-weight: var(--fw-black);
  color: #ffffff;
  margin-bottom: 32px;
  text-align: center;
}
.l-cta__desc {
  font-size: 18px;
  font-weight: var(--fw-sbold);
  color: #ffffff;
  margin-bottom: 55px;
  text-align: center;
}
.l-cta__grid {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 40px 25px;
}
.l-cta__card {
  display: block;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
}
.l-cta__btn {
  font-size: 26px;
  font-weight: var(--fw-bold);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
a.l-cta__btn:has(> .c-link--arrow) {
  padding: 0;
}
a.l-cta__btn > .c-link.c-link--arrow {
  margin: 0 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
a.l-cta__btn:has(> .c-link--arrow):hover,
a.l-cta__btn > .c-link.c-link--arrow:hover {
  color: inherit;
}
.l-cta__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px 100px;
}
.l-cta__tel__tela {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}
.l-cta__tel__subttl {
  font-size: 24px;
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
}
.l-cta__tel__ttl {
  font-size: 32px;
  font-weight: var(--fw-black);
}
.l-cta__tel__link {
  transition: opacity var(--t-fade);
  max-width: 380px;
}
.l-cta__tel__link:hover {
  opacity: 0.5;
}
.l-cta__tel__note {
  display: flex;
  gap: 10px;
}
.l-cta__tel__noteTtl {
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .l-cta__tel__link {
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .l-cta {
    padding: 50px 15px;
  }
  .l-cta__ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .l-cta__desc {
    margin-bottom: 30px;
  }
  .l-cta__grid {
    gap: 20px;
  }
  .l-cta__card {
    padding: 20px;
  }
  .l-cta__btn {
    font-size: 18px;
  }
  .l-cta__tel {
    flex-direction: column;
  }
  .l-cta__tel__subttl {
    font-size: 18px;
  }
  .l-cta__tel__ttl {
    font-size: 24px;
  }
}

/* .l-footer */
.l-footer-s {
  display: block;
  position: relative;
  padding: 30px 15px 15px;
  background-color: #0084ca;
}
.l-footer-s__toTop {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: right;
  width: calc(100% - 30px);
  max-width: 950px;
}
.l-footer-s__toTop__img {
  max-height: 23px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.l-footer-s__toTop__btn {
  display: block;
  width: 85%;
  margin: 0 auto 20px;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  background: #0d86d1;
  color: #fff;
  font-weight: var(--fw-bold);
  text-align: center;
}
.l-footer-s__toTop__btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 0 8px;
  border-style: solid;
  border-width: 0 5px 7px 5px;
  border-color: transparent transparent #ffffff transparent;
}
.l-footer-s__main {
  display: block;
  position: relative;
}
.l-footer-s__footer,
.l-footer-s__footer a {
  color: #fff;
  text-decoration: none;
}
.l-footer-s__footer {
  display: block;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  font-size: small;
}
.l-footer-s__info {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  justify-items: start;
}
.l-footer-s__linkList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px 14px;
}
.l-footer-s__copy {
  margin-top: 6px;
  grid-area: 2/1/3/3;
}
.l-footer-s__logo {
  max-width: 105px;
}
@media screen and (min-width: 769px) {
  .l-footer-s__toTop__btn {
    display: none !important;
  }

  .l-footer-s__linkList > li::before {
    list-style-type: none;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 12px;
    margin-bottom: 1px;
    border-style: solid;
    border-width: 0.3em 0 0.3em 0.5em;
    border-color: transparent transparent transparent  #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-s__toTop__img {
    display: none !important;
  }
  .l-footer-s__toTop > button {
    width: 100%;
  }

  .l-footer-s {
    padding: 20px 12px 12px;
    background-color: var(--c-blue);
  }
  .l-footer-s__toTop {
    position: relative;
  }
  .l-footer-s__linkList > li::after {
    list-style-type: none;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    background-image: url(/living/sumaiselection/assets/img/icon_pcpage_white.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .l-footer-s__info {
    justify-items: center;
    align-items: start;
  }
  .l-footer-s__linkList {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-footer-s__logo {
    margin-top: 24px;
  }
  .l-footer-s__copy {
    margin-top: 12px;
    font-size: 9px;
    grid-area: 2/1/3/3;
  }
}

/* l-cont */
.l-cont {
  position: relative;
  padding: 0px 50px 200px;
}
.l-cont:first-child,
.l-cont:not(.u-bc--lblue) + .l-cont.u-bc--lblue,
.l-cont.u-bc--lblue + .l-cont:not(.u-bc--lblue, .u-bcEnd--lblue) {
  padding-top: 200px;
}
.l-cont__wrap {
  display: block;
  margin-inline: auto;
  max-width: 1200px;
}
.l-cont__wrap--wide {
  max-width: 1440px;
}
.l-cont__wrap.l-cont__wrap--roundbox {
  max-width: 1440px;
  padding: 130px 60px;
  background-color: var(--c-lblue);
  border-radius: 40px;
}
.l-cont__cont.l-cont__cont--roundbox {
  display: block;
  max-width: 1200px;
  margin-inline: auto;
}
.l-cont__ttl {
  display: block;
  text-align: center;
  font-size: 42px;
  line-height: 1.4;
  font-weight: var(--fw-black);
  margin-bottom: 25px;
}
.l-cont__ttl ruby {
  ruby-position: under;
  ruby-align: center;
}
.l-cont__ttl ruby > rt {
  font-size: 0.7em;
  font-weight: var(--fw-sbold);
  color: var(--c-blue);
  margin-top: 5px;
}
.l-cont__desc {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .l-cont {
    padding: 0 15px 100px;
  }
  .l-cont__wrap.l-cont__wrap--roundbox {
    padding: 50px 15px;
    border-radius: 20px;
  }
  .l-cont:first-child,
  .l-cont:not(.u-bc--lblue) + .l-cont.u-bc--lblue,
  .l-cont.u-bc--lblue + .l-cont:not(.u-bc--lblue, .u-bcEnd--lblue) {
    padding-top: 100px;
  }
  .l-cont__ttl {
    font-size: 24px;
  }
}

/* s-セクション */
/* about */
.s-about {
  position: relative;
  margin-bottom: 150px;
}
.s-about::after {
  content: "";
  position: absolute;
  display: block;
  background: var(--c-grade);
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  top: 0;
  bottom: 0;
  transform: translateY(150px);
  left: clamp(calc(-1 * (100vw - 100%)/2), calc(-1 * (100vw - 100%)/2), 0px);
  right: clamp(-213px, calc(-1 * (100vw - 100%)/4), 0px);
  z-index: -5;
}
.s-about__card {
  padding: 60px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0px 2px 8px 3px hsla(0, 0%, 0%, 0.16);
}
.s-about__card.js-scrollAnime {
  transition: transform var(--t-slow), opacity var(--t-slow);
}
.s-about__card.js-scrollAnime:not(.js-is-show) {
  transform: translateY(25%);
  opacity: 0;
}
.s-about__wrap {
  display: block;
  max-width: 970px;
  margin-inline: auto;
}
.s-about__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px 100px;
}
.s-about__txta {
  max-width: 412px;
}
.s-about__imga {
  max-width: 458px;
}
.s-adout__ttl {
  font-size: 28px;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  margin-bottom: 32px;
}
.s-about__txt + .s-about__txt {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .s-about {
    padding: 30px 15px;
    margin-bottom: 75px;
  }
  .s-about::after {
    transform: translateY(75px);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    left: -15px;
    right: 20%;
  }
  .s-adout__ttl {
    font-size: 20px;
    text-align: center;
  }

  .s-about__card {
    padding: 35px 20px;
  }
}

/* flow */
.l-flow {
  display: block;
  position: relative;
  z-index: 0;
}
.l-flow__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
.l-flow:not(:first-child),
.l-flow__desc {
  margin-top: 55px;
}
.l-flow__list > li {
  position: relative;
  width: calc((100% - (40px * 3)) / 4);
}
.l-flow__list > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border: solid 20px var(--c-blue);
  border-right-width: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  transform: translateY(-50%);
  top: 50%;
  right: -30px;
}
.l-flow .c-btn.c-btn--grad {
  font-size: 22px;
  font-weight: var(--fw-bold);
  padding: 22px;
  min-width: 330px;
}
@media screen and (max-width: 768px) {
  .l-flow .c-btn.c-btn--grad {
    min-width: unset;
  }
  .l-flow__list {
    flex-direction: column;
    align-items: center;
  }
  .l-flow__list > li {
    width: 100%;
    max-width: 500px;
  }
  .l-flow__list > li:not(:last-child)::after {
    transform: translate(50%, 0) rotate(90deg);
    top: 100%;
    right: 50%;
  }
}

/* slider */
.s-slider {
  display: block;
  position: relative;
  z-index: 0;
}
.s-slider .swiper {
  padding: 10px;
  margin-inline: 120px;
}
.s-service-list .swiper-slide {
  height: auto;
}
.s-swiper__button--prev,
.s-swiper__button--next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 10;
  background-color: #ECE80E;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  cursor: pointer;
}
.s-swiper__button--prev:hover,
.s-swiper__button--next:hover,
.s-swiper__button--prev.swiper-button-disabled,
.s-swiper__button--next.swiper-button-disabled {
  opacity: 0.5;
}
.s-swiper__button--prev {
  left: 0;
}
.s-swiper__button--next {
  right: 0;
}
.s-swiper__button--prev::before,
.s-swiper__button--next::before,
.s-swiper__button--prev::after,
.s-swiper__button--next::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #333333;
  width: 5px;
  height: 14px;
  border-radius: 999px;
  top: 50%;
  left: 50%;
}
.s-swiper__button--prev::before {
  transform: translate(-75%, -75%) rotate(45deg);
}
.s-swiper__button--prev::after{
  transform: translate(-75%, -25%) rotate(-45deg);
}
.s-swiper__button--next::before {
  transform: translate(-25%, -25%) rotate(45deg);
}
.s-swiper__button--next::after {
  transform: translate(-25%, -75%) rotate(-45deg);
}
.s-swiper__pagination {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.swiper-horizontal > .swiper-pagination-bullets.s-swiper__pagination .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.s-swiper__pagination .swiper-pagination-bullet {
  margin: 0;
}
.s-swiper__pagination > .swiper-pagination-bullet {
  background-color: #fff;
  border: 1px solid var(--c-blue);
  width: 16px;
  height: 16px;
  opacity: 1;
}
.s-swiper__pagination > .swiper-pagination-bullet-active {
  background-color: var(--c-blue);
}
@media screen and (max-width: 768px) {
  .s-slider .swiper {
    margin-inline: 50px;
  }
  .s-swiper__button--prev,
  .s-swiper__button--next {
    width: 40px;
    height: 40px;    
  }
  .s-swiper__pagination {
    gap: 15px 20px;
  }
  .s-swiper__pagination > .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/* c-コンポーネント */
/* spliter */
.c-split--img01 {
  margin-bottom: clamp(0px, calc(100% * (573 / 1920)), 573px);
}
.c-split--img01::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  padding-top: clamp(0px, calc(100% * (573 / 1920)), 573px);
  left: 0;
  right: 0;
  background-image: url(/living/sumaiselection/assets/img/img_split_01.png);
  background-size: cover;
  background-position: center;
}
.c-split--beforeline::before {
  content: "";
  display: block;
  margin: 24px auto;
  width: 100%;
  height: 1px;
  background-color: var(--c-gray);
}
@media screen and (max-width: 768px) {
  .c-split--img01 {
    margin-bottom: calc(100% * (420/768));
  }
  .c-split--img01::after {
    padding-top: calc(100% * (420/768));
  }
}

/* card */
.c-card {
  display: block;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-card.c-card--merit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 40px;
}
.c-card--merit .c-card__ttla {
  flex: 1;
}
.c-card--merit .c-card__subttl {
  text-align: center;
  line-height: 1.6;
  font-weight: var(--fw-bold);
  color: var(--c-blue);
  margin-bottom: 12px;
}
.c-card--merit .c-card__ttl {
  text-align: center;
  font-size: clamp(12px, calc(100vw * (20/1200)), 20px);
  line-height: 1.6;
  font-weight: var(--fw-bold);
  margin-bottom: 32px;
}
.c-card--merit .c-card__txt {
  margin-top: 32px;
  flex: 1;
}
.c-card.c-card--service {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 12px 20px 25px;
}
.c-card.c-card--service:hover {
  color: initial;
}
.c-card.c-card--service:hover .c-btn {
  color: #fff;
  background-color: var(--c-blue);
}
.c-card.c-card--service .c-btn {
  width: 100%;
  max-width: 280px;
}
.c-card--service .c-card__ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: var(--c-blue);
  line-height: 1.4;
  font-weight: var(--fw-bold);
  padding-bottom: calc((18px * 2) + 1px);
}
.c-card--service .c-card__ttl::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--c-gray);
  bottom: 18px;
}
.c-card--service .c-card__icon {
  width: 75px;
  max-height: 65px;
  margin-right: 15px;
}
.c-card--service .c-card__txt {
  margin-bottom: 16px;
  line-height: 1.4;
  flex-grow: 1;
}
.c-card.c-card--flow {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.4;
}
.c-card--flow .c-card__ttl {
  font-size: 20px;
  line-height: 1.4;
  font-weight: var(--fw-sbold);
  text-align: center;
  margin-bottom: 32px;
}
.c-card--flow .c-card__imga {
  display: grid;
  align-items: center;
  flex-grow: 1;
  max-width: 95px;
}
.c-card--flow .c-card__txt {
  margin-top: 32px;
  flex-grow: 1;
}
/* .c-card.c-card--voice {
  margin: 10px;
} */
.c-card__tag {
  font-size: 14px;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 12px;
}
.c-card__tag.c-card__tag--kodate {
  color: var(--c-blue);
  background-color: #D5F3FF;
}
.c-card__tag.c-card__tag--mansion {
  color: #DF4B0F;
  background-color: #FFEBE3;
}
.c-card__tag.c-card__tag--kodateMansion {
  color: #EBAB00;
  background-color: #FFF4D8;
}
.c-card.js-scrollAnime {
  transition: transform var(--t-slow), opacity var(--t-slow);
}
.c-card.js-scrollAnime:not(.js-is-show) {
  transform: translateY(25%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-card--merit .c-card__ttl {
    font-size: 24px;
  }
  .c-card--flow .c-card__ttl {
    font-size: 22px;
  }
  .c-card--service .c-card__ttl {
    font-size: 18px;
  }
  .c-card--service .c-card__icon {
    width: 55px;
  }
}

/* button */
.c-btn,
a.c-btn {
  display: block;
  position: relative;
  z-index: 0;
  text-decoration: none;
  color: var(--c-blue);
  margin-inline: auto;
  border: 1px solid var(--c-blue);
  padding: 8px 10px;
  width: fit-content;
  /* max-width: 280px; */
  text-align: center;
  border-radius: 999px;
  transition: color var(--t-fade), background-color var(--t-fade);
}
.c-btn:hover,
a.c-btn:hover {
  color: #ffffff;
  background-color: var(--c-blue);
}
.c-btn.c-btn--grad {
  overflow: hidden;
  color: #ffffff;
  background-color: transparent;
  min-width: 210px;
  border: 1px solid var(--c-gblue);
}
.c-btn.c-btn--grad::after {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-grade--btn);
  transition: opacity var(--t-fade);
}
.c-btn.c-btn--grad:hover {
  color: var(--c-gblue);
  background-color: #ffffff;
}
.c-btn.c-btn--grad:hover::after {
  opacity: 0;
}

/* link */
.c-link,
a.c-link {
  position: relative;
  text-decoration: none;
  transition: color var(--t-fade);
}
.c-link:hover,
a.c-link:hover {
  color: initial;
}
.c-link.c-link--arrow,
a.c-link.c-link--arrow {
  display: block;
  z-index: 0;
  padding-right: 2em;
}
.c-link.c-link--arrow::before,
.c-link.c-link--arrow::after {
  content: "";
  display: block;
  position: absolute;
}
.c-link.c-link--arrow::before {
  width: 0.4em;
  height: 0.4em;
  border: solid 2px var(--c-blue);
  border-bottom: none;
  border-left: none;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 0.5em;
  transition: border-color var(--t-fade);
}
.c-link.c-link--arrow::after {
  z-index: -99;
  width: 1.4em;
  height: 1.4em;
  background-color: var(--c-blue);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 999px;
  opacity: 0;
  transition: opacity var(--t-fade);
}
.c-link.c-link--arrow:hover {
  color: var(--c-blue);
}
.c-link.c-link--arrow:hover::before {
  border-color: #fff;
}
.c-link.c-link--arrow:hover::after {
  opacity: 1;
}
.c-link.c-link--rarrow,
a.c-link.c-link--rarrow {
  display: block;
  z-index: 0;
  padding-right: 2em;
}
.c-link.c-link--rarrow::before,
.c-link.c-link--rarrow::after {
  content: "";
  display: block;
  position: absolute;
}
.c-link.c-link--rarrow::before {
  width: 0.4em;
  height: 0.4em;
  border: solid 2px #fff;
  border-bottom: none;
  border-left: none;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 0.3em;
}
.c-link.c-link--rarrow::after {
  z-index: -99;
  width: 1em;
  height: 1em;
  background-color: var(--c-blue);
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border-radius: 999px;
}
.c-link.c-link--under,
a.c-link.c-link--under {
  text-decoration: underline;
}

/* icon */
.c-afterIcon--pdf,
.c-afterIcon--blank {
  display: inline-block;
  position: relative;
}
.c-afterIcon--pdf::after,
.c-afterIcon--blank::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: baseline;
  margin-bottom: -0.1em;
  margin-left: 1em;
}
.c-afterIcon--pdf::after {
  background-image: url(/parts/img/icon/icon_pdf2.svg);
}
.c-afterIcon--blank::after {
  background-image: url(/living/sumaiselection/assets/img/icon_blank_blue.svg);
}

/* accordion */
.c-accordion + .c-accordion {
  margin-top: 24px;
}
.c-accordion--faq {
  padding: 25px 35px;
  display: block;
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
  overflow: hidden;
}
.c-accordion__ttl {
  display: block;
  position: relative;
  line-height: 1.4;
  padding-right: 35px;
  padding-top: clamp(0px, calc(20px - 1.4em), 20px);
  cursor: pointer;
}
.c-accordion--faq .c-accordion__cont {
  position: relative;
  display: block;
  padding-top: 40px;
}
.c-accordion--faq .c-accordion__cont::before {
  content: "";
  position: absolute;
  display: block;
  border-top: 4px dotted #cccccc;
  top: 18px;
  left: 0;
  right: 0;
}
.c-accordion--faq .c-accordion__ttl:has(.c-accordion__icon),
.c-accordion--faq .c-accordion__cont:has(.c-accordion__icon) {
  padding-left: 45px;
}
.c-accordion--faq .c-accordion__ttl:has(.c-accordion__icon) {
  padding-top: calc((30px - 1em) / 2);
  padding-bottom: calc((30px - 1em) / 2);
}
.c-accordion--faq .c-accordion__cont:has(.c-accordion__icon) {
  padding-top: calc(((30px - 1em) / 2) + 40px);
  padding-bottom: calc((30px - 1em) / 2);
}
.c-accordion__icon {
  position: absolute;
  font-size: 30px;
  line-height: 1;
  font-weight: var(--fw-bold);
  left: 0;
}
.c-accordion__icon--q {
  color: var(--c-blue);
  top: 0;
}
.c-accordion__icon--a {
  color: var(--c-green);
  top: 40px;
}

.c-accordion__toggle {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-accordion__toggle::before,
.c-accordion__toggle::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  background-color: var(--c-blue);
}
.c-accordion__toggle::before {
  transform: translate(-50%, -50%);
}
.c-accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--t-fade);
}
.js-accordion.js-is-open .c-accordion__toggle::after {
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .js-accordion--sp .c-accordion__ttl {
    padding-right: 0;
  }
  .js-accordion--sp .js-accordion__target {
    pointer-events: none;
  }
  .js-accordion--sp .c-accordion__toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-accordion--faq {
    padding: 15px;
    font-size: 14px;
  }
  .c-accordion__ttl {
    padding-right: 25px;
  }
  .c-accordion__icon {
    font-size: 20px;
  }
  .c-accordion--faq .c-accordion__ttl:has(.c-accordion__icon),
  .c-accordion--faq .c-accordion__cont:has(.c-accordion__icon) {
    padding-left: 30px;
    padding-bottom: calc((20px - 1em) / 2);
  }
  .c-accordion--faq .c-accordion__ttl:has(.c-accordion__icon) {
    padding-top: calc((20px - 1em) / 2);
  }
  .c-accordion--faq .c-accordion__cont:has(.c-accordion__icon) {
    padding-top: calc(((20px - 1em) / 2) + 40px);
  }
  .c-accordion__toggle {
    width: 15px;
    height: 15px;
  }
  .c-accordion__toggle::before,
  .c-accordion__toggle::after {
    width: 15px;
  }
  .js-accordion--pc .c-accordion__ttl {
    padding-right: 0;
  }
  .js-accordion--pc .js-accordion__target {
    pointer-events: none;
  }
  .js-accordion--pc .c-accordion__toggle {
    display: none;
  }
}

/* modal */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
.c-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 100px);
  max-width: 975px;
  height: auto;
  padding: 40px 40px 50px;
  border-radius: 20px;
  background: #ffffff;
}
.c-modal__inner {
  width: auto;
  max-height: calc(100vh - 300px);
  overflow: auto;
}
.c-modal__close {
  display: block;
  position: absolute;
  z-index: 0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  top: -25px;
  right: -25px;
  cursor: pointer;
  background-color: var(--c-blue);
}
.c-modal__close::before,
.c-modal__close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 20px;
  height: 4px;
  background-color: #fff;
  border-radius: 999px;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__cover {
  display: block;
  position: absolute;
  z-index: -99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  cursor: pointer;
}

/* note */
.c-note:not(:first-child) {
  margin-top: 1em;
}
.c-note__list li{
  font-size: 12px;
  line-height: 24px;
  padding-left: 1em;
  text-indent: -1em;
}
.c-note__list li + li{
  margin-top: 8px;
}

/* u-ユーティリティ */
/* background color */
.u-bc--lblue {
  background-color: var(--c-lblue);
}
.u-bc--grade {
  background: var(--c-grade) !important;
}
.u-bcEnd--lblue {
  position: relative;
  z-index: 0;
}
.u-bcEnd--lblue::after {
  position: absolute;
  z-index: -99;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 50%;
  background-color: var(--c-lblue);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
/* display */
.u-d--iblock {
  display: inline-block !important;
}

.u-radius--10 {
  border-radius: 10px;
  overflow: hidden;
}

/* margin */
.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--md {
  margin-top: 56px;
}

.is-notLink {
  pointer-events: none;
}

/* is-状態 */
/* display */
.is-none {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .is-none--pc {
    display: none !important;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 768px) {
  .is-none--sp {
    display: none !important;
    opacity: 0;
    visibility: hidden;
  }
}
/* overfow */
.is-hidden {
  overflow: hidden !important;
}
