@charset "UTF-8";
:root {
  --primarycolor: #FF5C00;
  --primary-variant1: #FFF9E9;
  --primary-variant2: #fafafa;
  --primary-variant3: #FEF4EE;
  --secondarycolor: #464646;
  --tertiarycolor: #008CAF;
  --quaternarycolor: #464646;
  --black: #222;
  --warning: #E60000;
  --notice:#FFFCD6;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 19rem;
  /* 固定ヘッダの高さ分 */
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  font-family: sans-serif;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
  padding-top: 12rem;
  /* header + nav 分 */
  scroll-behavior: smooth;
  line-height: 1.8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #464646;
  font-family: var(--unnamed-font-family-hiragino-sans);
}

ul {
  list-style: none;
}

a {
  color: #008CAF;
}
a:hover {
  opacity: 0.8;
}

.container {
  max-width: 109.6rem;
  margin: auto;
  padding: 0 2.4rem;
}
.container.w880 {
  max-width: 88rem;
}

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

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
.cta {
  background-color: var(--primary-variant1);
}
.cta_inner {
  text-align: center;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cta_inner {
    padding: 4rem 2.4rem;
  }
}
.cta .btn {
  margin: 0 2.4rem;
}
.cta .dl-btn-list {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta .dl-btn-list_item a {
  display: block;
}
.cta .dl-btn-list img {
  height: auto;
}
.cta .dl-btn-list .google-play {
  width: 17rem;
}
@media screen and (max-width: 768px) {
  .cta .dl-btn-list .google-play {
    width: unset;
    height: 4.5rem;
  }
}
.cta .dl-btn-list .apple {
  width: 13.6rem;
}
@media screen and (max-width: 768px) {
  .cta .dl-btn-list .apple {
    width: unset;
    height: 4.5rem;
  }
}
.cta .dl-btn-list .qrcored {
  width: 9rem;
}
@media screen and (max-width: 768px) {
  .cta .dl-btn-list .qrcored {
    width: 80%;
  }
}

.attention-list_item {
  padding-left: 2.8rem;
  position: relative;
  margin: 1.6rem 0;
}
.attention-list_item::before {
  content: "";
  background-image: url(../img/icon-attention.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 2rem;
  height: 2rem;
  left: 0;
  top: 0.4rem;
}

.btn {
  display: inline-block;
  padding: 1.6rem 4rem;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1607843137);
  border-radius: 99px;
  font: normal normal normal 16px/22px Hiragino Sans;
  letter-spacing: 0px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  min-width: 24rem;
  text-align: center;
}
.btn--primary {
  border: 2px solid var(--tertiarycolor);
  background-color: #FF5C00;
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--hovercolor);
  border: var(--hovercolor) solid 2px;
}
.btn--secondary {
  border: 2px solid var(--primarycolor);
  color: var(--primarycolor);
  background: #fff;
}
.btn--secondary::after {
  content: url(../img/icon16_arrowR_bk.svg);
  vertical-align: middle;
  padding-left: 8px;
}
.btn--secondary:hover {
  background-color: var(--primary-variant1);
}
.btn--anchor {
  border: 2px solid var(--primarycolor);
  color: var(--primarycolor);
  background: #fff;
  padding-right: 5.6rem;
  position: relative;
  min-width: unset;
  width: calc((100% - 8rem) / 3);
  box-sizing: border-box;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .btn--anchor {
    width: auto;
  }
}
.btn--anchor::after {
  content: url(../img/icon16_arrowR_bk.svg);
  vertical-align: middle;
  right: 2.2rem;
  position: absolute;
  transform: rotate(90deg);
  width: 1.6rem;
}
.btn.small {
  min-width: unset;
  padding: 1.2rem 4rem;
}
.btn.minmum {
  min-width: unset;
  padding: 0.8rem 1.6rem;
}

.list_item {
  margin-top: 2.4rem;
  position: relative;
  padding-left: 1.8rem;
  font-weight: 600;
}
.list_item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}
.list_item ul li {
  padding-left: 1.8rem;
  position: relative;
}
.list_item ul li::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: solid 2px var(--secondarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}

.pane {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .pane {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.features-welby-mykrte2 {
  margin-top: 10rem;
  margin-bottom: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3.2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 1em;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  height: 12rem;
}

.headerLeft {
  display: flex;
  align-items: center;
  gap: 1em;
}

.headerTitle {
  padding: 20px 0 0 32px;
  letter-spacing: 0px;
  color: #464646;
}

.headerTitle p:first-child {
  line-height: 1.6rem;
}

.headerTitle p:nth-child(2) {
  font-size: 2rem;
  font-weight: 600;
}

.headerRight {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}

.logoPC {
  display: inline;
  width: 31.5rem;
}

.logoSP {
  display: none;
}

/* ナビゲーション固定 */
.navigation {
  position: fixed;
  top: 11rem;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navigation ul {
  display: flex;
  list-style: none;
  justify-content: center;
  letter-spacing: 0.8px;
  margin: 0;
  padding: 0;
}
.navigation li {
  width: 29.4rem;
  text-align: center;
  font-weight: 600;
  background: var(--secondarycolor) 0% 0% no-repeat padding-box;
}
.navigation li a {
  padding: 2.4rem 0;
  display: block;
  opacity: 1;
}
.navigation li:hover {
  background: var(--primary-variant1) 0% 0% no-repeat padding-box;
  cursor: pointer;
  color: var(--secondarycolor);
  opacity: 1;
}
.navigation li:has(a) {
  background: #fff 0% 0% no-repeat padding-box;
  color: var(--secondarycolor);
}
.navigation li:has(a) a {
  text-decoration: none;
  color: var(--secondarycolor);
}
@media screen and (max-width: 768px) {
  .navigation li:has(a) a {
    padding: 0;
  }
}
.navigation li:has(a.active) {
  background: var(--secondarycolor) 0% 0% no-repeat padding-box;
  color: #fff;
}
.navigation li:has(a.active) a {
  text-decoration: none;
  color: #fff;
}
.navigation li.current {
  background: var(--primarycolor) 0% 0% no-repeat padding-box;
}
.navigation li.current a {
  color: #fff;
  opacity: 1;
}

.main-visual {
  background-image: url(../img/link-dots.svg);
  background-color: var(--primary-variant1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .main-visual {
    padding: 1.6rem;
    background-size: 200%;
  }
}
.main-visual_inner {
  display: flex;
  justify-content: space-between;
  max-width: 117.6rem;
  margin: auto;
  padding: 6.4rem 0 1.6rem;
}
@media screen and (max-width: 768px) {
  .main-visual_inner {
    flex-direction: column;
    padding: 2.4rem 0 1.6rem;
  }
}
.main-visual_copy {
  line-height: 1.5;
}
.main-visual_copy .highlights {
  background-color: #fff;
  font-size: 4.8rem;
  padding: 0.4rem 0.8rem;
}
@media screen and (max-width: 768px) {
  .main-visual_copy .highlights {
    font-size: 4rem;
  }
}
.main-visual_subtitle {
  display: inline-block;
  margin-bottom: 0.8rem;
}
.main-visual_right-side {
  width: 62rem;
  text-align: right;
  background-image: url(../img/mv-img.png);
  background-repeat: no-repeat;
  background-size: 45rem;
}
@media screen and (max-width: 768px) {
  .main-visual_right-side {
    width: auto;
    background-size: contain;
  }
}
.main-visual_right-side img {
  width: 24rem;
}
@media screen and (max-width: 768px) {
  .main-visual_right-side img {
    width: 14rem;
  }
}
.main-visual_tmb {
  height: 24rem;
  position: relative;
}
.main-visual_tmb .tmb02 {
  position: absolute;
  left: 4.4rem;
  top: 2rem;
  width: 17.6rem;
}
@media screen and (max-width: 768px) {
  .main-visual_tmb .tmb02 {
    width: 12rem;
    top: unset;
    bottom: 2rem;
    left: unset;
    right: 2rem;
  }
}
.main-visual_tmb .tmb01 {
  position: absolute;
  right: 1rem;
  bottom: -4.3rem;
  width: 24rem;
}
@media screen and (max-width: 768px) {
  .main-visual_tmb .tmb01 {
    bottom: unset;
    width: 17rem;
    right: unset;
    left: 2.4rem;
    top: 2.4rem;
  }
}
.main-visual_poweredby {
  text-align: center;
}
.main-visual_poweredby img {
  width: 26rem;
}

.content {
  margin-top: 6rem;
  overflow: hidden;
}

.section-ttl {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    margin-bottom: 0;
  }
}
.section-ttl--type02 {
  background: var(--primary-variant3);
  line-height: 1;
  margin-bottom: 2.4rem;
  border-top: 0.4rem solid var(--primarycolor);
  text-align: left;
  font-size: 2.4rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .section-ttl--type02 {
    margin-bottom: 2.4rem;
    line-height: 1.4;
  }
}
.section-ttl--faq {
  color: var(--primarycolor);
  text-align: left;
  max-width: 109.6rem;
  margin: auto;
  padding-left: 8.8rem;
  position: relative;
  margin-top: 4rem;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
}
.section-ttl--faq::before {
  content: "";
  background-image: url(../img/qa-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 8rem;
  height: 5.5rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-ttl--features-welby-mykrte1 {
  color: var(--primarycolor);
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .section-ttl--features-welby-mykrte1 {
    font-size: 2.1rem;
  }
}
.section-ttl--features-welby-mykrte1 span {
  color: var(--primarycolor);
  display: block;
}
.section-ttl--features-welby-mykrte1 .sizeup {
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .section-ttl--features-welby-mykrte1 .sizeup {
    font-size: 2.8rem;
  }
}

.page-ttl-area {
  background-color: var(--primary-variant1);
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-ttl-area .page-ttl {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .page-ttl-area .page-ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.tab-ttl {
  display: inline-block;
  color: #fff;
  background-color: var(--primarycolor);
  font-size: 2.8rem;
  padding: 1.6rem 5.6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .tab-ttl {
    line-height: 1.4;
  }
}

.tab-container {
  text-align: center;
  border-bottom: 4px solid var(--primarycolor);
}

.notice-area {
  background-color: var(--notice);
  padding: 3.2rem 2.4rem;
  border: solid 2px var(--secondarycolor);
  margin-top: 6.4rem;
}
@media screen and (max-width: 768px) {
  .notice-area {
    margin: 1.6rem;
  }
}
.notice-area .list_item::before {
  background-color: var(--warning);
}
.notice-area--oneline {
  background-color: var(--secondarycolor);
  padding: 0.8rem;
  margin: 0;
}
.notice-area--oneline .notice-area_inner {
  background-color: #FFFCD6;
  border-radius: 99px;
  padding: 0;
}
.notice-area--oneline .notice-area_inner a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .notice-area--oneline .notice-area_inner a {
    justify-content: center;
  }
}
.notice-area--oneline .notice-area_para {
  color: var(--warning);
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
.notice-area--oneline .notice-area_para::before {
  content: url(../img/icon-warning.svg);
  padding-right: 0.8rem;
  vertical-align: middle;
}
.notice-area_ttl {
  font-size: 2.2rem;
}
.notice-area_ttl::before {
  content: url(../img/icon-warning.svg);
  padding-right: 0.8rem;
  vertical-align: middle;
}
.notice-area_para {
  font-weight: 600;
  margin: 1.6rem 0;
}
.notice-area_label {
  font-weight: 600;
}
.notice-area_label::after {
  content: url(../img/icon16_arrowR_black.svg);
  vertical-align: middle;
  padding-left: 8px;
}

.description-area {
  background-color: #f8f8f8;
  padding: 4rem 3.2rem;
  margin-top: 4rem;
}

.about-sub-list {
  position: absolute;
  top: 18rem;
  left: 3rem;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.about-sub-ttl {
  position: absolute;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 600;
}

.aboutNote {
  width: 100%;
  padding: 32px 24px;
  background: #FFFCD6;
  border: 1px solid #464646;
}

.aboutNote p {
  font: normal bold normal 22px Hiragino Sans;
  letter-spacing: 1.1px;
  margin-bottom: 27px;
  line-height: 22px;
}

.aboutNote p::before {
  content: url(../img/icon24_attention.svg);
  padding-right: 8px;
  vertical-align: middle;
}

.aboutNote ul {
  list-style-image: url(../img/icon16_listDot_M_red.svg);
  font: normal normal normal 16px Hiragino Sans;
  letter-spacing: 0px;
  margin-left: 16px;
}

.aboutNote li:first-child span {
  color: #E60000;
}

.aboutNote li:nth-child(2) span {
  color: #008CAF;
}

.features-points {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.point-list_item {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.point-list_item .container {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
}
.point-list_item:nth-child(odd) {
  background-color: #FAFAFA;
}
.point-list_item:first-child .point-list_info {
  background-image: url(../img/no1.svg);
  background-position: left 5.6rem top 0;
  background-size: 5.4rem 17.3rem;
}
.point-list_item:nth-child(2) .container {
  background-image: url(../img/list-no2-img.svg);
  background-repeat: no-repeat;
  background-position: bottom 0 right 14.4rem;
}
.point-list_item:nth-child(2) .point-list_info {
  background-image: url(../img/no2.svg);
  background-position: left 5.6rem top 0;
  background-size: 10.6rem 17.6rem;
}
.point-list_item:nth-child(3) .container {
  gap: 10rem;
}
.point-list_item:nth-child(3) .point-list_info {
  background-image: url(../img/no3.svg);
  background-position: left 5.6rem top 0;
  background-size: 10.6rem 17.6rem;
}
.point-list_item:nth-child(3) .point-list_graphic {
  width: 42.8rem;
}
.point-list_item:nth-child(4) .container {
  background-image: url(../img/list-no4-img.svg);
  background-repeat: no-repeat;
  background-position: bottom 0 right 18rem;
}
.point-list_item:nth-child(4) .point-list_info {
  background-image: url(../img/no4.svg);
  background-position: left 5.6rem top 0;
  background-size: 10.6rem 17.6rem;
}
.point-list_item:nth-child(4) .point-list_graphic {
  width: 42.8rem;
}
.point-list_item:nth-child(5) .point-list_info {
  background-image: url(../img/no5.svg);
  background-position: left 5.6rem top 0;
  background-size: 10.6rem 17.6rem;
}
.point-list_item:nth-child(5) .point-list_graphic {
  width: 42.8rem;
}
.point-list_item:nth-child(6) {
  padding-bottom: 0;
}
.point-list_item:nth-child(6) .point-list_info {
  background-image: url(../img/no6.svg);
  background-position: left 5.6rem top 0;
  background-size: 10.6rem 17.6rem;
}
.point-list_item:nth-child(6) .point-list_graphic {
  width: 42.8rem;
}
.point-list_info {
  background-repeat: no-repeat;
  flex: 1;
}
.point-list_graphic {
  margin-right: 8rem;
  width: 16.4rem;
}
.point-list_ttl {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 3.2rem;
}
.point-list_ttl::before {
  content: "";
  background-image: url(../img/pin.svg);
  background-size: contain;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  left: 0;
}
.point-list_btn-area {
  margin-top: 4rem;
}

.dl-btn-list {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.dl-btn-list_item img {
  height: 5.6rem;
  width: auto;
}

.data-list_ttl {
  font-weight: 600;
  margin-top: 2.4rem;
}
.data-list_data {
  margin-top: 0.8rem;
}

.worried_inner {
  background-image: url(../img/moyamoya.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worried_inner {
    padding: 3.2rem 2.4rem 4rem;
    background-position: center bottom;
    margin-bottom: 24rem;
    background-image: url(../img/moyamoya-sp.svg);
    background-size: 94%;
  }
}
.worried_inner::before {
  content: "";
  background-image: url(../img/worried-woman.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 21.2rem;
  height: 29.2rem;
  position: absolute;
  bottom: 6rem;
  left: 11rem;
}
@media screen and (max-width: 768px) {
  .worried_inner::before {
    width: 12rem;
    height: 16rem;
    bottom: -140px;
  }
}

.worried-list {
  margin: auto;
  width: 44rem;
}
.worried-list_item {
  font-size: 2rem;
  position: relative;
  padding-left: 2.4rem;
  margin-top: 1.6rem;
  left: 4.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .worried-list_item {
    left: unset;
  }
}
.worried-list_item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primarycolor);
  position: absolute;
  top: 1.3rem;
  left: 0;
}
.worried-list--sizedown {
  width: 50rem;
}
@media screen and (max-width: 768px) {
  .worried-list--sizedown {
    width: auto;
  }
}
.worried-list--sizedown .worried-list_item span {
  background: linear-gradient(transparent 50%, #FFEE1C 50%);
}

.functions_tr {
  display: flex;
  border: solid #fff 0.8rem;
}
.functions_tr.patient {
  border-bottom: none;
}
.functions_tr.patient .functions_th {
  background-color: #FEF4EE;
}
.functions_tr.patient .functions_tmb {
  padding: 4rem 8rem 0;
}
.functions_tr.patient .functions-list_item:before {
  background-color: var(--tertiarycolor);
}
.functions_th {
  width: 25.6rem;
  background-color: var(--primary-variant1);
  border-right: solid #fff 0.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.functions_td {
  flex: 1;
  background-color: var(--primary-variant2);
  padding: 2.4rem;
}
.functions_tmb {
  padding: 4rem 4rem 0;
}

.functions-list {
  max-width: 37rem;
  margin: auto;
}
.functions-list_item {
  padding-left: 2.4rem;
  position: relative;
  font-size: 1.8rem;
  margin: 1rem 0;
}
.functions-list_item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}

.fn-child-list_item {
  margin: 1rem 0;
  position: relative;
  padding-left: 2.4rem;
}
.fn-child-list_item::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border: solid 1px var(--secondarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}

.solution_top {
  display: flex;
  gap: 6.4rem;
  max-width: 78rem;
  margin: auto;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .solution_top {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.solution_ttl {
  flex: 1;
  text-align: center;
}
.solution_ttl span {
  font-size: 3.4rem;
}
.solution_ttl span:first-of-type {
  position: relative;
  top: 0.85rem;
}
@media screen and (max-width: 768px) {
  .solution_ttl span:first-of-type {
    top: 0.4rem;
    font-size: 2.4rem;
    margin-left: 0.4rem;
  }
}
.solution_ttl img {
  width: 47rem;
}
@media screen and (max-width: 768px) {
  .solution_ttl img {
    width: 90%;
  }
}
.solution_tmb {
  width: 19rem;
}
.solution_list {
  border-top: 0.4rem solid var(--primarycolor);
  padding-top: 4rem;
}
.solution_list .card-list {
  gap: 9.6rem;
}
.solution_list .card-list_item img {
  height: 12rem;
}
.solution_list .card-list_ttl {
  margin: 1.2rem 0;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6.4rem;
}
.card-list_item {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .card-list_item {
    flex: unset;
    width: 100%;
  }
}
.card-list_item img {
  height: 14rem;
  width: auto;
}
.card-list_ttl {
  font-size: 2.7rem;
  color: var(--primarycolor);
}
@media screen and (max-width: 768px) {
  .card-list_ttl {
    margin-top: 1.6rem;
  }
}

.detail-list {
  text-align: left;
}
.detail-list_item {
  position: relative;
  padding-left: 2rem;
}
.detail-list_item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}

.about-welby-mykrte {
  background-image: url(../img/about-welby-mykrte-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90rem;
}
@media screen and (max-width: 768px) {
  .about-welby-mykrte {
    background-size: 100%;
    background-image: url(../img/about-welby-mykrte-bg-sp.png);
    background-position: left -2.4rem center;
  }
}
@media screen and (max-width: 768px) {
  .about-welby-mykrte_inner {
    padding: 2.4rem 6.4rem;
  }
}
.about-welby-mykrte_para {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .about-welby-mykrte_para {
    text-align: left;
    margin-top: 2.4rem;
  }
}
.about-welby-mykrte_annotation {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about-welby-mykrte_annotation {
    text-align: left;
    margin-top: 2.4rem;
  }
}

.daybar_b_spImg {
  display: none;
}

.daybar_a_spImg {
  display: none;
}

.signin {
  text-align: center;
  border-bottom: 12px solid var(--secondarycolor);
}

.signin h1 {
  background: var(--primary-variant1);
  height: 92px;
  line-height: 92px;
  margin-bottom: 80px;
}

.signinNote {
  margin-bottom: 64px;
  font: normal bold normal 28px Hiragino Sans;
  letter-spacing: 1.4px;
}

.signinNote span,
.signinNote ruby {
  color: #008CAF;
}

.signinText--pc {
  display: block;
}

.signinText--sp {
  display: none;
  font: normal normal normal 16px Hiragino Sans;
  letter-spacing: 0px;
}

.signinSupplement {
  font: normal normal normal 14px Hiragino Sans;
  letter-spacing: 0px;
  color: #008CAF;
}

.signinConfirmation {
  margin: 64px 0;
  background: #FAFAFA;
  padding: 32px 40px;
  text-align: left;
}

.signinConfirmation > p {
  position: relative;
  left: -1rem;
  font: normal normal normal 22px Hiragino Sans;
  letter-spacing: 1.1px;
  margin-bottom: 32px;
}

.signinConfirmation > p::before {
  content: url(../img/icon26_pin.svg);
  padding-right: 4px;
  vertical-align: -5px;
}

.signinConfirmationInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  counter-reset: item;
  margin-bottom: 32px;
}

.signinConfirmationInfo.start-4 {
  counter-reset: item 3;
  width: 620px;
}

.signinConfirmationInfoWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 33px;
  padding-top: 33px;
  border-top: #999 solid 1px;
}

.signinConfirmation li {
  position: relative;
  width: 240px;
  counter-increment: item;
  text-align: center;
  min-height: 504px;
}

.signinConfirmation li::before {
  font: normal normal bold 12px Roboto;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 2px;
  left: 0;
  background: #464646;
  border-radius: 2px;
  color: #fff;
  width: 24px;
  height: 19px;
  line-height: 19px;
  text-align: center;
}

.signinConfirmationInfo li > p {
  padding: 0 0 12px 2em;
  font-size: 16px;
  line-height: 1.5;
  min-height: 108px;
  text-align: left;
}

.signinConfirmationInfo.start-4 li > p {
  min-height: 132px;
  /* 24px × 3 = 72px + 12px */
}

.signinConfirmationInfo li > a {
  font: normal normal normal 12px Hiragino Sans;
  letter-spacing: 0px;
  color: #008CAF;
}

.passwordResetNote {
  background-color: #FFFCD6;
  border: 1px solid #464646;
  padding: 20px 16px 32px;
  max-width: 326px;
  max-height: 464px;
}

.passwordResetNote p:first-child {
  font: normal normal normal 16px Hiragino Sans;
  margin-bottom: 28px;
  line-height: 16px;
}

.passwordResetNote p:first-child::before {
  content: url(../img/icon24_attention.svg);
  vertical-align: -6px;
  padding-right: 4px;
}

.passwordResetNote p:nth-child(2) {
  margin-bottom: 24px;
}

.img_passFollow_pc {
  display: block;
  margin: 0 auto;
}

.img_passFollow_sp {
  display: none;
}

.faq-head {
  margin: auto;
  max-width: 86rem;
  padding: 1.6rem;
}

.index-btn-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .index-btn-inner {
    flex-direction: column;
  }
}

.faq-bottom {
  margin-top: 8rem;
  margin-bottom: 10rem;
  padding: 1.6rem;
}

.faq-list {
  max-width: 109.6rem;
  margin: auto;
}
.faq-list p {
  margin-top: 1.6rem;
}
.faq-list_item {
  list-style: none;
}
.faq-list_item:first-child .faq-list_q::before {
  content: "01）";
}
.faq-list_item:nth-child(2) .faq-list_q::before {
  content: "02）";
}
.faq-list_item:nth-child(3) .faq-list_q::before {
  content: "03）";
}
.faq-list_item:nth-child(4) .faq-list_q::before {
  content: "04）";
}
.faq-list_item:nth-child(5) .faq-list_q::before {
  content: "05）";
}
.faq-list_item:nth-child(6) .faq-list_q::before {
  content: "06）";
}
.faq-list_item:nth-child(7) .faq-list_q::before {
  content: "08）";
}
.faq-list_item:nth-child(8) .faq-list_q::before {
  content: "08）";
}
.faq-list_item:nth-child(9) .faq-list_q::before {
  content: "09）";
}
.faq-list_item:nth-child(10) .faq-list_q::before {
  content: "10）";
}
.faq-list_item:nth-child(11) .faq-list_q::before {
  content: "11）";
}
.faq-list_item:nth-child(12) .faq-list_q::before {
  content: "12）";
}
.faq-list_item:nth-child(13) .faq-list_q::before {
  content: "13）";
}
.faq-list_item:nth-child(14) .faq-list_q::before {
  content: "02）";
}
.faq-list_item:nth-child(14) .faq-list_q::before {
  content: "14）";
}
.faq-list_item:nth-child(15) .faq-list_q::before {
  content: "15）";
}
.faq-list_item:nth-child(16) .faq-list_q::before {
  content: "17）";
}
.faq-list_item:nth-child(18) .faq-list_q::before {
  content: "18）";
}
.faq-list_item:nth-child(19) .faq-list_q::before {
  content: "19）";
}
.faq-list_item:nth-child(20) .faq-list_q::before {
  content: "20）";
}
.faq-list_q {
  background-color: var(--primary-variant1);
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .faq-list_q {
    padding: 1.6rem;
  }
}
.faq-list_a {
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .faq-list_a {
    padding: 1.6rem;
  }
}
.faq-list_a .dl-btn-list {
  margin: 4rem 0;
  align-items: center;
}
.faq-list_a .dl-btn-list_item:last-child img {
  height: 10rem;
}

.customer-support_annotation {
  display: block;
  margin-top: 2.4rem;
}

.customer-support-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .customer-support-list {
    gap: 4rem;
  }
}
.customer-support-list_item {
  position: relative;
  width: 77rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .customer-support-list_item {
    width: auto;
  }
}
.customer-support-list_item:nth-child(1) .customer-support-list_ttl::before {
  background-image: url(../img/icon-form.svg);
}
.customer-support-list_item:nth-child(2) .customer-support-list_ttl::before {
  background-image: url(../img/icon-mall.svg);
}
.customer-support-list_item:nth-child(3) .customer-support-list_ttl::before {
  background-image: url(../img/icon-tel.svg);
}
.customer-support-list_ttl {
  padding-left: 7.2rem;
  font-size: 2.2rem;
  line-height: 5.8rem;
  position: relative;
  width: 35rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .customer-support-list_ttl {
    width: auto;
    font-size: 2rem;
  }
}
.customer-support-list_ttl::before {
  content: "";
  background-size: contain;
  position: absolute;
  width: 5.8rem;
  height: 5.8rem;
  left: 0;
}
.customer-support-list_telnum {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--primarycolor);
  text-decoration: none;
}

.customerSupport {
  width: 640px;
  margin: 80px auto 0;
  background: #fff;
  border: 4px solid #008CAF;
  border-radius: 16px;
  margin: 0 auto;
  text-align: left;
  padding: 32px;
}

.customerSupportTitle {
  font: normal normal normal 20px Hiragino Sans;
}

.customerSupportTitle,
.customerSupportMail,
.customerSupportForm {
  display: flex;
  align-items: center;
}

.customerSupportTitle,
.customerSupportMail {
  margin-bottom: 24px;
}

.customerSupportMail {
  margin-top: 24px;
}

.customerSupportMail,
.customerSupportForm {
  font: normal normal normal 16px Hiragino Sans;
  letter-spacing: 0px;
  color: #8C8C8C;
}

.customerSupportTitle::before {
  content: url(../img/icon32_operator.svg);
  width: 32px;
  height: 32px;
  padding-right: 8px;
}

.customerSupportMail::before {
  content: url(../img/icon32_mail.svg);
  width: 32px;
  height: 32px;
  padding-right: 8px;
}

.customerSupportForm::before {
  content: url(../img/icon32_webform.svg);
  width: 32px;
  height: 32px;
  padding-right: 8px;
}

.features-list {
  background-image: url(../img/mockup-sp1.png);
  background-size: 23%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 90rem;
}
@media screen and (max-width: 768px) {
  .features-list {
    background-size: 30%;
    height: 48rem;
  }
}
.features-list img {
  width: 24rem;
}
@media screen and (max-width: 768px) {
  .features-list img {
    width: 10rem;
  }
}
.features-list_item {
  position: absolute;
}
.features-list_item:nth-child(1) {
  left: 24rem;
  top: 0;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(1) {
    left: 8rem;
    top: 3.5rem;
  }
}
.features-list_item:nth-child(1) .features-list_ttl {
  left: -9rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(1) .features-list_ttl {
    left: -2rem;
    top: -2rem;
  }
}
.features-list_item:nth-child(2) {
  left: 11rem;
  top: 24rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(2) {
    left: 1.6rem;
    top: 16rem;
  }
}
.features-list_item:nth-child(2) .features-list_ttl {
  left: -2rem;
  top: -2.7rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(2) .features-list_ttl {
    top: -3.7rem;
  }
}
.features-list_item:nth-child(3) {
  left: 10rem;
  top: 50rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(3) {
    left: 1.6rem;
    top: 29rem;
  }
}
.features-list_item:nth-child(3) .features-list_ttl {
  left: -5rem;
  top: -4rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(3) .features-list_ttl {
    left: -1.1rem;
    top: -3.1rem;
  }
}
.features-list_item:nth-child(4) {
  left: 26rem;
  top: 72rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(4) {
    left: 9.4rem;
    top: 40rem;
  }
}
.features-list_item:nth-child(4) .features-list_ttl {
  left: -1.2rem;
  top: -0.9rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(4) .features-list_ttl {
    left: -5.2rem;
    top: -1.7rem;
  }
}
.features-list_item:nth-child(5) {
  right: 22rem;
  top: 73rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(5) {
    right: 5rem;
    top: 42rem;
  }
}
.features-list_item:nth-child(5) .features-list_ttl {
  left: 0;
  top: -4rem;
  width: 27rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(5) .features-list_ttl {
    width: 11rem;
  }
}
.features-list_item:nth-child(6) {
  right: 10rem;
  top: 48rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(6) {
    right: 1.6rem;
    top: 29rem;
  }
}
.features-list_item:nth-child(6) .features-list_ttl {
  left: -4rem;
  top: -3rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(6) .features-list_ttl {
    left: 0;
  }
}
.features-list_item:nth-child(7) {
  right: 12rem;
  top: 24rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(7) {
    right: 1.6rem;
    top: 16rem;
  }
}
.features-list_item:nth-child(7) .features-list_ttl {
  left: -2rem;
  top: 1rem;
  white-space: pre;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(7) .features-list_ttl {
    left: -1rem;
    top: -2rem;
  }
}
.features-list_item:nth-child(8) {
  right: 25rem;
  top: 5.3rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(8) {
    right: 4.3rem;
    top: 6rem;
  }
}
.features-list_item:nth-child(8) .features-list_ttl {
  left: -6rem;
}
@media screen and (max-width: 768px) {
  .features-list_item:nth-child(8) .features-list_ttl {
    left: 1rem;
    top: -1.6rem;
    width: 13rem;
  }
}
.features-list_ttl {
  position: absolute;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .features-list_ttl {
    font-size: 1.2rem;
    width: 12rem;
  }
}

.features-welby-mykrte2 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .features-welby-mykrte2 .section-ttl {
    margin-bottom: 4rem;
  }
}
.features-welby-mykrte2_list {
  margin: 4rem auto;
}
.features-welby-mykrte2_list img {
  height: 10rem;
}
.features-welby-mykrte2_para {
  font-size: 2rem;
  margin-top: 4rem;
}

.screen-capture-list {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .screen-capture-list {
    flex-direction: column;
    gap: 4rem;
    align-items: center;
  }
}
.screen-capture-list_item {
  width: 19rem;
}

.connecting-info {
  display: flex;
  max-width: 109.6rem;
  margin: auto;
  text-align: left;
  background-color: var(--primary-variant2);
  padding: 2.4rem 5.6rem;
}
@media screen and (max-width: 768px) {
  .connecting-info {
    flex-direction: column;
    gap: 4rem;
  }
}
.connecting-info_left-area {
  flex: 1;
}
.connecting-info_right-area {
  flex: 1;
}
.connecting-info_ttl {
  color: var(--primarycolor);
  border-bottom: var(--primarycolor) solid 2px;
  display: inline-block;
  position: relative;
  padding: 0.4rem;
  margin-bottom: 3.2rem;
  font-size: 2.4rem;
}
.connecting-info_ttl::before {
  content: "";
  background-image: url(../img/line-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.8rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  bottom: -1.8rem;
  transform: translateX(-50%);
}
.connecting-info_sub-ttl {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
}
.connecting-info_para {
  margin-bottom: 1.6rem;
}

.connecting-list {
  margin-bottom: 1.6rem;
}
.connecting-list_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}
.connecting-list_item li {
  padding-left: 2rem;
  position: relative;
}
.connecting-list_item li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: var(--primarycolor);
  position: absolute;
  top: 1rem;
  left: 0;
}

.step-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6.4rem;
  position: relative;
}
.step-list::before {
  content: "";
  position: absolute;
  height: 110%;
  width: 0.3rem;
  background-color: var(--primarycolor);
  left: 5.7rem;
  top: 2rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .step-list::before {
    left: 3.8rem;
  }
}
.step-list::after {
  content: "";
  position: absolute;
  height: 1.4rem;
  width: 2.5rem;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 4.6rem;
  bottom: -7.5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step-list::after {
    left: 2.7rem;
    bottom: -10rem;
  }
}
.step-list_item {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .step-list_item {
    display: block;
  }
}
.step-list_info {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .step-list_info {
    padding-left: 8.8rem;
  }
}
.step-list_para {
  margin-top: 2.4rem;
}
.step-list_order {
  background-color: var(--primarycolor);
  width: 11.6rem;
  height: 11.6rem;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .step-list_order {
    width: 8rem;
    height: 8rem;
    position: absolute;
  }
}
.step-list_order span {
  color: #fff;
}
.step-list_order img {
  width: auto;
}
@media screen and (max-width: 768px) {
  .step-list_order img {
    width: 50%;
  }
}
.step-list_ttl {
  margin-top: 1rem;
}

.more-convenient {
  margin-bottom: 2.4rem;
}

.registration-step .container {
  padding-bottom: 8rem;
}

.footer {
  background: var(--secondarycolor);
  padding: 1px 0;
}
.footer_top-navi {
  border-bottom: solid 2px #fff;
}
.footer_top-navi .footer-navi-list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 2.4rem 0;
}
@media screen and (max-width: 768px) {
  .footer_top-navi .footer-navi-list {
    flex-direction: column;
    gap: 0;
  }
}
.footer_top-navi .footer-navi-list_item a {
  text-decoration: underline;
}
.footer_bottom-navi {
  display: flex;
  gap: 8.8rem;
  justify-content: center;
  margin: 4rem 0;
}
@media screen and (max-width: 768px) {
  .footer_bottom-navi {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.footer_left-side {
  display: flex;
  gap: 5.6rem;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer_left-side {
    gap: 2.4rem;
  }
}
.footer .copy {
  color: #fff;
  display: block;
  text-align: center;
  margin-bottom: 3.2rem;
}

.footer-navi-list.top {
  position: relative;
}
.footer-navi-list.top::before {
  content: "/";
  color: #fff;
  left: calc(50% + 3rem);
  top: 1rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .footer-navi-list.top::before {
    display: none;
  }
}
.footer-navi-list_item {
  margin: 0.8rem 0;
  color: #fff;
  font-weight: 600;
}
.footer-navi-list_item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* ハンバーガーメニューのスタイル */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  padding: 1em;
  cursor: pointer;
}

.menu-toggle:focus {
  outline: none;
}

/* モバイル対応（タブレット含む） */
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 68px;
    /* 固定ヘッダの高さ分 */
  }
  body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 8.4rem;
    /* header + nav 分 */
    scroll-behavior: smooth;
  }
  .logoPC {
    display: none;
  }
  .logoSP {
    display: inline;
    width: 9.7rem;
  }
  .menu-toggle {
    display: inline;
    padding: 0;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: #fff;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1607843137);
    border: 1px solid #ED6D23;
    border-radius: 0.6rem;
    width: 3.6rem;
    height: 3.6rem;
    line-height: 0;
  }
  .menu-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.47);
  }
  .menu-icon--close {
    opacity: 0;
    transform: scale(0.47);
  }
  .menu-toggle.menu-toggle--close .menu-icon--open {
    opacity: 0;
    transform: scale(0.47);
  }
  .menu-toggle.menu-toggle--close .menu-icon--close {
    opacity: 1;
  }
  .navigation {
    display: inline;
    top: 68px;
    left: 0px;
    width: 100%;
    padding: 0px;
  }
  .navigation ul {
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .navigation ul.show {
    display: flex;
  }
  .navigation li {
    border-top: 1px solid #ccc;
    padding: 1em;
    text-align: center;
    width: 100%;
  }
  .navigation li:last-child {
    display: block;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  .headerLeft {
    align-items: flex-start;
  }
  .headerRight {
    display: none;
  }
  .headerTitle {
    padding: 0px 0 0 0px;
    display: inline;
  }
  .headerTitle p:first-child {
    font-size: 1.1rem;
  }
  .headerTitle p:nth-child(2) {
    font-size: 1.1rem;
  }
  .aboutMain,
  .aboutSub {
    padding: 1.6rem 0 1.6rem 0;
    margin: 0;
  }
  .content {
    margin-top: 0;
    width: 100%;
  }
  .aboutMain {
    background: url(../img/img_mv_sp.svg);
    padding-bottom: 0;
    background-size: contain;
  }
  .aboutInfo {
    width: 100%;
    padding: 20px 16px 16px 16px;
  }
  .aboutInfoText br {
    display: none;
  }
  .aboutInfoText {
    font: normal normal normal 12px Hiragino Sans;
  }
  .aboutInfoTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
}/*# sourceMappingURL=index.css.map */