@charset "UTF-8";

.half {
  display: inline-block;
}
img {
  vertical-align: bottom;
}
.txt-blue {
  color: #008CCE;
}
.footer-wrap {
  margin-top: 0 !important;
}

/* section-inner */
.section-inner {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}

/* section-inner-title */
.section-inner-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.47;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-inner-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 374px) {
  .section-inner-title {
    font-size: 22px;
  }
}

/* Btn */
.btn-default a {
  font-size: 15px;
  font-weight: 500;
  padding: 23px 54px 22px;
}

@media screen and (max-width: 374px) {
  .btn-default a {
    padding: 21px 34px 20px;
  }
}

/* 吹き出し */
.balloon-btn .lable {
  display: inline-block;
  background: #008CCE;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 12px 28px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.balloon-btn .lable::after {
  content: "";
  width: 39px;
  height: 21px;
  background: url(/common/img/smartclinic/nomocaaichat-icon12.png) no-repeat center top;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  z-index: -1;
}

/* check-list */
.check-list li {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 34px;
  position: relative;
}
.check-list li:not(:first-child) {
  margin-top: 17px;
}
.check-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/common/img/smartclinic/nomocaaichat-icon11.png) no-repeat top left;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 1px;
}

/* frame-box */
.frame-box {
  background: #fff;
  border-radius: 30px;
}
.frame-box .frame-box-head {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #008CCE;
  border-radius: 30px 30px 0 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 12px 20px 10px;
  box-sizing: border-box;
  position: relative;
}
.frame-box .frame-box-head.gray-bg {
  background: #5C5C5C;
}
.frame-box .frame-box-content {
  padding: 37px 32px 48px 38px;
}
.frame-box .frame-box-flex {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

@media screen and (max-width: 767px) {
  .frame-box .frame-box-flex {
    flex-direction: column;
    row-gap: 17px;
  }
}

/* 担当者インタビュー */
.interview-section .interview-flex-txtarea .interview-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.67;
}
.interview-section .interview-flex-txtarea p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #2E363F;
}

@media screen and (min-width: 768px) {
  .interview-section .interview-flex {
    display: flex;
  }
  .interview-section .interview-flex-images {
    width: 100%;
    max-width: 380px;
    margin: 8px 50px 0 0;
  }
  .interview-section .interview-flex-txtarea {
    width: 100%;
    max-width: 410px;
  }
}

@media screen and (max-width: 767px) {
  .interview-section .interview-flex-txtarea {
    max-width: 410px;
    margin: 45px auto 0;
  }
  .interview-section .interview-flex-txtarea .interview-title {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .interview-section .interview-flex-txtarea p {
    font-size: 16px;
  }
  .interview-section .interview-flex-txtarea .btn-default {
    text-align: center;
  }
}

/* よくある質問 */
.faq-section {
  padding-bottom: 92px;
}
.faq-section .faq-inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-section .section-inner-title {
  margin-bottom: 31px;
}
.accordion dl {
  border-radius: 39px;
  margin-bottom: 20px;
  overflow: hidden;
}
.accordion-trigger {
  min-height: 78px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 75px 10px 45px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.accordion-trigger::after {
  content: "";
  width: 21px;
  height: 12px;
  background: url(/common/img/smartclinic/nomocaaichat-icon13.png) no-repeat top right;
  background-size: contain;
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.3s;
}
.accordion-trigger.active::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-details {
  display: none;
  background: #fff;
  border-top: 1px solid #CDD4DD;
  font-size: 15px;
  line-height: 1.8;
  padding: 32px 45px 56px;
}

@media screen and (max-width: 767px) {
  .faq-section {
    padding-bottom: 70px;
  }
  .faq-section .faq-inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 429px) {
  .accordion-trigger {
    font-size: 15px;
    padding: 10px 55px 10px 35px;
  }
  .accordion-trigger::after {
    height: 9px;
    right: 25px;
  }
  .accordion-details {
    padding: 22px 35px 36px;
  }
}