@charset "UTF-8";
/*
クリニックブランディア専用CSS
/service/clinic-brandia/
とその配下でのみ読み込まれる
*/



/*************************** 01. 共通 ***********************/

/* ルートフォント設定 */
html {
  /* インナー幅＋余白+1px ~ */
  font-size: 100%;
  scroll-behavior: smooth;
}

/* 768px ~ インナー幅＋余白 */
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}

/* 376px ~ 767px */
@media (max-width: 767px) {
  html {
    font-size: 100%;
  }
}

/* ~ 375px */
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw; /* 16 ÷ 375 × 100 */
  }
}

:root{
  --black: #313131;
  --red: #B92B27;
  --font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  --font-sub: "Poppins", "Noto Sans JP", "Meiryo", sans-serif;
  --lh1: 1;
  --lh15: 1.5;
  --lh18: 1.8;
  --lh2: 2;
  --size10: 0.625rem;
  --size12: 0.75rem;
  --size14: 0.875rem;
  --size15: 0.9375rem;
  --size16: 1rem;
  --size18: 1.125rem;
  --size20: 1.25rem;
  --size22: 1.375rem;
  --size24: 1.5rem;
  --size25: 1.5625rem;
  --size26: 1.625rem;
  --size28: 1.75rem;
  --size30: 1.875rem;
  --size32: 2rem;
  --size36: 2.25rem;
  --size38: 2.375rem;
  --size40: 2.5rem;
  --size42: 2.625rem;
  --size48: 3rem;
  --size50: 3.125rem;
  --size60: 3.75rem;
  --size70: 4.375rem;
  --size72: 4.5rem;
  --size80: 5rem;
  --size84: 5.25rem;
  --size96: 6rem;
  --size100: 6.25rem;
  --size150: 9.375rem;
  --size170: 10.625rem;
  --size200: 12.5rem;
  --size270: 16.875rem;
  --size300: 18.75rem;
  --size330: 20.625rem;
  --size380: 23.75rem;
  --size400: 25rem;
}

/* ========================================
  共通パーツ
======================================== */

.l-inner{
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: var(--size25);
}
@media (max-width: 767px) {
  .l-inner{
    padding-inline: var(--size15);
  }
}

.c-title-1{
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size38);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .c-title-1{
    font-size: var(--size26);
  }
}


.c-title-2{
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size30);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .c-title-2{
    font-size: var(--size22);
  }
}

.c-title-en {
  color: var(--red);
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  line-height: var(--lh15);
  letter-spacing: 0.18em;
}

.c-text-1{
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .c-text-1{
    font-size: var(--size16);
  }
}

.c-text-2{
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.c-red {
  color: #B92B27;
}

.c-bg {
  background-color: #B92B27;
  color: #FFF;
  padding-inline: 5px;
}

.c-br{
  display: inline-block;
}


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

@media screen and (max-width: 1023px) {
  .c-tab{
    display: block;
  }
}

.c-sp{
  display: none;
}
@media screen and (max-width: 767px) {
  .c-sp{
    display: block;
  }
}

/* ========================================
  打消し
======================================== */
#body_wrap.clinic-brandia,
#body_wrap.clinic-brandia .l-content,
#body_wrap.clinic-brandia .l-container {
  position: static !important;
  z-index: auto !important;
}

html, body {
  /* -webkit-overflow-scrolling: touch; */
  /* transform: translateZ(0); Safariでのz-indexバグ対策 */
}

.swell-block-fullWide.has-bg-img:before {
  display: none;
}

/*************************** 02. h1,h2見出し *******************/


/*************************** 03. form  ***********************/
/*************************** 04. header ***********************/

/* ========================================
  ヘッダー
======================================== */
body.is-menu-open {
  overflow: hidden;
  height: 100vh;
}

.p-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFF;
  z-index: 100000;
  padding-block: var(--size10);
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-block: 5px;
  }
}
.p-header__inner {
  max-width: 1570px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-inline: 1rem;
  }
}

.p-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.75rem;
}

.p-header__logo {
  max-width: var(--size400);
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .p-header__logo {
    max-width: var(--size330);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 20rem;
    position: relative;
    z-index: 2001;
  }
}

.p-header__logo-link {
  margin-top: 0.5rem;
}

.p-header__logo-text {
  text-align: center;
  font-size: var(--size14);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #313131;
  font-weight: 500;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
@media screen and (max-width: 1440px) {
  .p-header__logo-text {
    font-size: var(--size12);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo-text {
    font-size: var(--size10);
  }
}

.p-header__pc-btns {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 1440px) {
  .p-header__pc-btns {
    gap: var(--size30);
  }
}
@media screen and (max-width: 767px) {
  .p-header__pc-btns {
    display: none;
  }
}

.p-header__pc-btn {
  max-width: 22.5rem;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  .p-header__pc-btn {
    max-width: var(--size270)
  }
}
.p-header__pc-btn a{
  width:100%;
  height: max-content;
  display: block;
  transition: 0.3s;
}
.p-header__pc-btn a:hover{
  opacity: 0.6;
}

.p-header__hamburger {
  position: relative;
  width: 28px;
  height: 22px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 300000;
  display: none;
}
@media (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #B92B27;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.p-header__hamburger span:nth-child(1) {
  top: 0;
}
.p-header__hamburger span:nth-child(2) {
  top: 10px;
}
.p-header__hamburger span:nth-child(3) {
  bottom: 0;
}

.p-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.p-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

.p-header__nav {
  margin-top: var(--size10);
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__nav.active {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }
}

.p-header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__menu {
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
  }
}

.p-header__list a {
  font-size: var(--size16);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #313131;
  font-weight: 700;
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}

.p-header__sp-btns {
  display: none;
}
@media (max-width: 767px) {
  .p-header__sp-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.875rem;
  }
}
.p-header__sp-btn {
  max-width: 22.5rem;
  width: 90%;
}

/* 地方 */
.page-id-6514 .p-header__bottom {
  display: none;
}
.page-id-6515 .p-header__bottom {
  display: none;
}
.page-id-6516 .p-header__bottom {
  display: none;
}
.page-id-6517 .p-header__bottom {
  display: none;
}
.page-id-6518 .p-header__bottom {
  display: none;
}
.page-id-6519 .p-header__bottom {
  display: none;
}
.page-id-6520 .p-header__bottom {
  display: none;
}
.page-id-6521 .p-header__bottom {
  display: none;
}

/* エリア */
.page-id-6409 .p-header__bottom {
  display: none;
}

/* ダウンロード */
.page-id-8483 .p-header__bottom,
.page-id-8483 .p-header__pc-btns {
  display: none;
}

/*************************** 04. footer ***********************/
/*************************** 04. 下層エリアページ  ***********************/

/* ========================================
  メインビュー
======================================== */
.p-cb-mv {
  padding-block: var(--size15);
  position: relative;
}
@media (max-width: 1023px) {
  .p-cb-mv {
    padding-block: 0;
  }
}

.p-cb-mv::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 24.0625rem;
  background-image: url("../../../images/mv-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media (max-width: 1440px) {
  .p-cb-mv::after {
    height: 18rem;
    top: 40%;
  }
}

@media (max-width: 1023px) {
  .p-cb-mv::after {
    top: auto;
    bottom: 11%;
    height: 15rem;
    background-color: var(--red);
    background-image: none;
  }
}
@media (max-width: 767px) {
  .p-cb-mv::after {
    display: none;
  }
}

.p-cb-mv__wrapper {
  display: flex;
  justify-content: space-between;
  gap: var(--size60);
  max-width: 1520px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media (max-width: 1023px) {
  .p-cb-mv__wrapper {
    flex-direction: column-reverse;
    padding-inline: 0;
    align-items: center;
    gap: var(--size40);
  }
}

.p-cb-mv__block {
  width: 55%;
}
@media (max-width: 1440px) {
  .p-cb-mv__block {
    width: 60%;
  }
}
@media (max-width: 1023px) {
  .p-cb-mv__block {
    width: 100%;
  }
}

.p-cb-mv__lead {
  color: #313131;
  font-family: var(--font-family);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}
@media (max-width: 1440px) {
  .p-cb-mv__lead {
    font-size: clamp(22px, 2vw, 28px);
  }
}

@media (max-width: 1023px) {
  .p-cb-mv__lead {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-cb-mv__lead {
    font-size: clamp(20px, 2.5vw, 24px);
  }
}

.p-cb-mv__lead--38{
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.18em;
}
@media (max-width: 1440px) {
  .p-cb-mv__lead--38{
    font-size: clamp(24px, 2vw, 36px);
  }
}
@media (max-width: 767px) {
  .p-cb-mv__lead--38{
    font-size: clamp(20px, 3vw, 30px);
  }
}

.p-cb-mv__title {
  color: #313131;
  font-family: var(--font-family);
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.18em;
  margin-top: 1rem;
}
@media (max-width: 1440px) {
  .p-cb-mv__title {
    font-size: clamp(32px, 3vw, 46px);
  }
}
@media (max-width: 1023px) {
  .p-cb-mv__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-cb-mv__title {
    font-size: clamp(24px, 4vw, 40px);
  }
}

.p-cb-mv__points {
  margin-top: var(--size100);
  display: grid;
  grid-template-columns: repeat(3 ,1fr);
  gap: var(--size20);
}
@media (max-width: 1440px) {
  .p-cb-mv__points {
    margin-top: var(--size30);
  }
}
@media (max-width: 1023px) {
  .p-cb-mv__points {
    width: 90%;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .p-cb-mv__points {
    grid-template-columns: 1fr;
    gap: var(--size40);
    margin-top: 4rem;
    background-color: var(--red);
    width: 100%;
    padding-block: var(--size40);
    padding-inline: var(--size20);
  }
}


.p-cb-mv__point {
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--size16) 5px;
  position: relative;
}
@media (max-width: 1440px) {
  .p-cb-mv__point {
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .p-cb-mv__point {
    background-color: #FFF;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-cb-mv__point::after{
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-image: url("../../../images/polygon-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.p-cb-mv__point::before{
  content: "";
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background-image: url("../../../images/polygon-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

.p-cb-mv__point-text{
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.p-cb-mv__point-text--18{
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-cb-mv__point-text--red{
  color: #B92B27;
  font-family: var(--font-family);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-cb-mv__point-text--28{
  color: #313131;
  font-family: var(--font-family);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-cb-mv__btns {
  display: flex;
  align-items: center;
  gap: var(--size50);
  margin-top: var(--size80);
}
@media (max-width: 1440px) {
  .p-cb-mv__btns {
    gap: var(--size40);
    margin-top: var(--size30);
  }
}
@media (max-width: 1023px) {
  .p-cb-mv__btns {
    margin-top: var(--size40);
  }
}

@media (max-width: 767px) {
  .p-cb-mv__btns {
    flex-direction: column;
    gap: var(--size30);
    margin-top: var(--size30);
  }
}

.p-cb-mv__btn {
  width: 50%;
}
.p-cb-mv__btn a{
  width:100%;
  height: max-content;
  display: block;
  transition: 0.3s;
}
.p-cb-mv__btn a:hover{
  opacity: 0.6;
}
@media (max-width: 767px) {
  .p-cb-mv__btn {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-cb-mv__btn--side{
  position: relative;
}

.p-cb-mv__btn--side::after{
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 115px;
  height: 76px;
  background-image: url("../../../images/btn-side.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-cb-mv__btn--side::after{
    right: -5%;
  }
}

.p-cb-mv__img {
  width: 40%;
}
@media (max-width: 1440px) {
  .p-cb-mv__img {
    width: 35%;
  }
}
@media (max-width: 1023px) {
  .p-cb-mv__img {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .p-cb-mv__img {
    height: 300px;
  }
}

.p-cb-mv__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ========================================
  リード文
======================================== */

.p-cb-lead {
  margin-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-lead {
    margin-block: var(--size40);
  }
}

.p-cb-lead__block {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: var(--size60);
}
@media (max-width: 767px) {
  .p-cb-lead__block {
    flex-direction: column-reverse;
    gap: var(--size30);
  }
}

.p-cb-lead__text {
  width: calc(742 / 1200 * 100%);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-lead__text {
    width: 100%;
  }
}

.p-cb-lead__figure {
  width: calc(374 / 1200 * 100%);
}
@media (max-width: 767px) {
  .p-cb-lead__figure {
    width: 100%;
  }
}

.p-cb-lead__works {
  margin-top: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-lead__works {
    margin-top: var(--size40);
  }
}

.p-cb-lead__works-heading {
  color: var(--black);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .p-cb-lead__works-heading {
    font-size: var(--size16);
  }
}

.p-cb-lead__works-heading span{
  color: var(--red);
}

.p-cb-lead__works-list {
  display: flex;
  align-items: center;
  gap: var(--size80);
  margin-top: var(--size20);
}
@media (max-width: 767px) {
  .p-cb-lead__works-list {
    flex-direction: column;
    gap: var(--size40);
    justify-content: center;
  }
}

.p-cb-lead__works-item {
  width: 50%;
}
@media (max-width: 767px) {
  .p-cb-lead__works-item {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}

.p-cb-lead__works-name {
  color: var(--black);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size12);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-top: var(--size20);
}
@media (max-width: 767px) {
  .p-cb-lead__works-name {
    font-size: var(--size14);
    margin-top: var(--size10);
  }
}


/* ========================================
  エリアセクション
======================================== */
.p-cb-area {
  padding-block: var(--size80);
  background-color: #F0F0F0;
}
@media (max-width: 767px) {
  .p-cb-area {
    padding-block: var(--size40);
  }
}

.p-cb-area__content-block {
  background-color: #fff;
  border-radius: var(--size10);
  display: flex;
  justify-content: space-between;
  padding: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-area__content-block {
    flex-direction: column-reverse;
    gap: var(--size20);
    padding: var(--size20);
  }
}

.p-cb-area__content {
  width: calc(800 / 1200 * 100%);
}
@media (max-width: 767px) {
  .p-cb-area__content {
    width: 100%;
  }
}

.p-cb-area__title {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size20);
}
@media (max-width: 767px) {
  .p-cb-area__title {
    gap: var(--size10);
  }
}

.p-cb-area__title span{
  display: inline-block;
  background-color: var(--red);
  width: 12px;
  height: 30px;
  border-radius: 6px;
}

.p-cb-area__text {
  margin-block: var(--size70);
}
@media (max-width: 767px) {
  .p-cb-area__text {
    margin-block: 0;
    margin-top: var(--size20);
  }
}
.p-cb-area__image {
  width: calc(350 / 1200 * 100%);
  align-self: end;
}
@media (max-width: 767px) {
  .p-cb-area__image {
    width: 100%;
  }
}

.p-cb-area__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cb-area__city {
  margin-top: var(--size40);
  padding: var(--size30);
  background-color: #FFF;
  border-radius: var(--size10);
}

.p-cb-area__city--area{
  padding: 0;
  background-color: initial;
  border-radius: 0;
}

.p-cb-area__city-wrapper {
  /* max-width: 750px;
  width: 100%;
  margin-inline: auto; */
}

.p-cb-area__prefecture{
  margin-top: var(--size40);
  padding: var(--size30);
  background-color: #FFF;
  border-radius: var(--size10);
}

.p-cb-area__region{
  margin-top: var(--size80);
}

.p-cb-area__city-title {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-area__city-title {
    font-size: var(--size20);
  }
}

.p-cb-area__city-title span{
  border-bottom: 1px solid var(--red);
}

.p-cb-area__city-title--prefecture{
  text-align: left;
}

.p-cb-area__city-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size10);
  margin-top: var(--size30);
}

.p-cb-area__city-list--area{
  padding: var(--size30);
  background-color: #FFF;
  border-radius: var(--size10);
}


.p-cb-area__city-list--area:first-child{
  margin-top: 0;
}

.p-cb-area__city-item a{
  display: inline-block;
  color: #FFF;
  background-color: #BCBCBC;
  border-radius: 5px;
  padding: var(--size10);
  font-family: var(--font-family);
  font-size: var(--size16);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.p-cb-area__note {
  margin-top: var(--size20);
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.area-top .p-cb-area__city-wrapper{
  padding: var(--size30);
  background-color: #FFF;
  border-radius: var(--size10);
}

.area-top .p-cb-area__city-item a{

}

.area-top .p-cb-area__city-item:first-child a {
  color: #FFF;
  background-color: var(--red);
  font-weight: 700;
}

.area-top .p-cb-area__city-list{
  background-color: initial;
  padding: 0;
}


/* ========================================
  お悩みセクション
======================================== */

.p-cb-intro {
  margin-top: var(--size72);
  margin-bottom: var(--size48);
}
@media (max-width: 767px) {
  .p-cb-intro {
    margin-top: var(--size40);
    margin-bottom: var(--size30);
  }
}

.p-cb-intro__en {
  color: var(--red);
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  line-height: var(--lh15);
  letter-spacing: 0.18em;
}

.p-cb-intro__title {
  text-align: center;
}

.p-cb-intro__group {
  margin-top: var(--size60);
}
@media (max-width: 767px) {
  .p-cb-intro__group {
    margin-top: var(--size40);
  }
}

.p-cb-intro__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size20);
}
@media (max-width: 767px) {
  .p-cb-intro__sub {
    gap: var(--size10);
  }
}

.p-cb-intro__sub span {
  display: inline-block;
  background-color: var(--red);
  width: 12px;
  height: 30px;
  border-radius: 6px;
}
.p-cb-intro__sub--bg span{
  background-color: #4A4C85;
}

.p-cb-intro__list {
  margin-top: var(--size36);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size30) var(--size72);
}
@media (max-width: 767px) {
  .p-cb-intro__list {
    grid-template-columns: 1fr;
    gap: var(--size30);
    margin-top: var(--size20);
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-cb-intro__item {
  border-radius: 10px;
  border: 2px solid #313131;
  padding: var(--size14) var(--size20);
  color: var(--black);
  font-family: "var(--font-family)";
  font-size: var(--size16);
  font-weight: 600;
  line-height: var(--lh15);
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: var(--size14);
}

.p-cb-intro__item p {
  flex: 1;
}

.p-cb-intro__item span{
  display: inline-block;
  background-color: var(--red);
  mask-image: url("../../../images/question.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 52px;
  height: 58px;
}

.p-cb-intro__item--navy span{
  background-color: #4A4C85;
}

.p-cb-intro__arrow{
  display: block;
  background-image: url("../../../images/bottom-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 100px;
  margin-top: var(--size60);
  margin-bottom: var(--size30);
  margin-inline: auto;
}
@media (max-width: 767px) {
  .p-cb-intro__arrow{
    width: 300px;
    height: 60px;
    margin-top: var(--size40);
    margin-bottom: var(--size20);
  }
}

.p-cb-intro__bottom {
  width: 100%;
  height: 400px;
  background-image: url("../../../images/intro-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-cb-intro__bottom {
    height: 250px;
  }
}

.p-cb-intro__bottom-title {
  color: #FFF;
  font-family: var(--font-family);
  font-size: var(--size38);
  font-weight: 600;
  line-height: var(--lh15);
  letter-spacing: 0.18em;
  padding-inline: var(--size25);
}
@media (max-width: 767px) {
  .p-cb-intro__bottom-title {
    font-size: var(--size22);
    text-align: center;
  }
}

/* ========================================
  選ばれるセクション
======================================== */

.p-cb-cause {
  margin-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-cause {
    margin-block: var(--size40);
  }
}

.p-cb-cause__title {
  text-align: center;
}

.p-cb-cause__list {
  margin-top: var(--size60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size40) var(--size80);
}
@media (max-width: 767px) {
  .p-cb-cause__list {
    grid-template-columns: 1fr;
    gap: var(--size40);
    max-width: 400px;
    margin-inline: auto;
  }
}

.p-cb-cause__item {
  border-radius: 10px;
  background-color: #F4F4F4;
  padding: 10px 20px;
  position: relative;
}
.p-cb-cause__item::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-image: url(../../../images/polygon-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transform: rotate(160deg);
}

.p-cb-cause__header {
  display: flex;
  align-items: center;
  gap: var(--size20);
  padding-bottom: 10px;
  border-bottom: 1px solid #BCBCBC;
}
@media (max-width: 767px) {
  .p-cb-cause__header {
    gap: var(--size10);
  }
}

.p-cb-cause__num-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.p-cb-cause__num {
  color: var(--red);
  font-family: var(--font-sub);
  font-size: var(--size40);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .p-cb-cause__num {
    font-size: var(--size30);
  }
}

.p-cb-cause__num-bottom {
  color: var(--red);
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.p-cb-cause__heading {
  color: var(--black);
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .p-cb-cause__heading {
    font-size: var(--size18);
  }
}

.p-cb-cause__text {
  color: var(--black);
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 500;
  line-height: var(--lh18);
  letter-spacing: 0.12em;
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-cause__text {
    margin-top: var(--size20);
  }
}

.p-cb-cause__img {
  max-width: 335px;
  width: 100%;
  margin-inline: auto;
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-cause__img {
    margin-top: var(--size20);
  }
}

/* ========================================
  サービス範囲セクション
======================================== */

.p-cb-range {
  margin-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-range {
    margin-block: var(--size40);
  }
}

.p-cb-range__img {
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-range__img {
    margin-top: var(--size20);
  }
}

.p-cb-range__text {
  text-align: center;
  margin-top: var(--size50);
}
@media (max-width: 767px) {
  .p-cb-range__text {
    margin-top: var(--size30);
  }
}

/* ========================================
  CTAセクション
======================================== */

.p-cb-cta {
  padding-block: var(--size80);
  background-color: var(--red);
}
@media (max-width: 767px) {
  .p-cb-cta {
    padding-block: var(--size40);
  }
}

.p-cb-cta__block {
  background-color: #fff;
  border-radius: 40px;
  padding: var(--size30);
}
@media (max-width: 767px) {
  .p-cb-cta__block {
    border-radius: var(--size10);
    padding: var(--size20);
  }
}

.p-cb-cta__text {
  text-align: center;
}

.p-cb-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size96);
  margin-top: var(--size30);
}
@media (max-width: 767px) {
  .p-cb-cta__btns {
    flex-direction: column;
    gap: var(--size40);
    margin-top: var(--size20);
  }
}

.p-cb-cta__btn {
  max-width: 360px;
  width: 100%;
}

.p-cb-cta__btn--side{
  position: relative;
}
.p-cb-cta__btn a{
  width:100%;
  height: max-content;
  display: block;
  transition: 0.3s;
}
.p-cb-cta__btn a:hover{
  opacity: 0.6;
}

.p-cb-cta__btn--side::after{
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 115px;
  height: 76px;
  background-image: url("../../../images/btn-side.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

/* ========================================
  勝てるセクション
======================================== */

.p-cb-howto {
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-howto {
    padding-block: var(--size40);
  }
}


.p-cb-howto__title {
  text-align: center;
}

.p-cb-howto__lead {
  margin-top: var(--size80);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-howto__lead {
    margin-top: var(--size40);
  }
}

.p-cb-howto__top-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size70);
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-howto__top-list {
    flex-wrap: wrap;
    gap: var(--size20);
    margin-top: var(--size20);
  }
}

.p-cb-howto__top-item {
  width: var(--size200);
}
@media (max-width: 767px) {
  .p-cb-howto__top-item {
    width: var(--size150);
    margin-inline: auto;
  }
}

.p-cb-howto__top-item--center {
  padding-bottom: var(--size200);
}
@media (max-width: 767px) {
  .p-cb-howto__top-item--center {
    padding-bottom: 0;
  }
}

.p-cb-howto__bottom-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size70);
  margin-top: -100px;
}
@media (max-width: 767px) {
  .p-cb-howto__bottom-list {
    flex-wrap: wrap;
    gap: var(--size20);
    margin-top: var(--size20);
  }
}

.p-cb-howto__bottom-item {
  width: var(--size200);
}
@media (max-width: 767px) {
  .p-cb-howto__bottom-item {
    width: var(--size150);
    margin-inline: auto;
  }
}

.p-cb-howto__text {
  text-align: center;
  margin-top: var(--size40);
}

/* ========================================
  施術メニューセクション
======================================== */

.p-cb-menu {
  background-color: #F4F4F4;
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-menu {
    padding-block: var(--size40);
  }
}

.p-cb-menu__title {
  text-align: center;
  line-height: 1.8;
}


.p-cb-menu__lead {
  margin-top: var(--size70);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-menu__lead {
    margin-top: var(--size40);
  }
}


.p-cb-menu__catch {
  margin-top: var(--size80);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-menu__catch {
    margin-top: var(--size40);
    font-size: var(--size12);
  }
}

.p-cb-menu__subhead {
  text-align: center;
}

.p-cb-menu__steps {
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-menu__steps {
    margin-top: var(--size20);
  }
}

.p-cb-menu__step {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .p-cb-menu__step {
    flex-direction: column-reverse;
    gap: var(--size20);
  }
}

.p-cb-menu__step:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__step:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.p-cb-menu__step:not(:first-child) {
  margin-top: var(--size60);
}
@media (max-width: 767px) {
  .p-cb-menu__step:not(:first-child) {
    margin-top: var(--size40);
  }
}

.p-cb-menu__content {
  background-color: #FFF;
  border-radius: var(--size10);
  width: calc(830 / 1200 * 100%);
  padding: var(--size100) var(--size80);
  padding-right: 170px;
}
@media (max-width: 767px) {
  .p-cb-menu__content {
    width: 100%;
    padding: var(--size60) var(--size20);
    margin-top: -60px;
  }
}

.p-cb-menu__step:nth-child(even) .p-cb-menu__content {
  padding-left: var(--size170);
  padding-right: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-menu__step:nth-child(even) .p-cb-menu__content {
    padding-left: var(--size20);
    padding-right: var(--size20);
  }
}

.p-cb-menu__header {
  display: flex;
  align-items: center;
  gap: var(--size20);
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: var(--size20);
}

.p-cb-menu__num-wrap {

}

.p-cb-menu__num-top {
  display: block;
  color: #B92B27;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.p-cb-menu__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size40);
  height: var(--size40);
  background-color: var(--red);
  color: #FFF;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size18);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50%;
}

.p-cb-menu__heading {

}

.p-cb-menu__text {
  margin-top: var(--size40);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__text {
    margin-top: var(--size20);
  }
}

.p-cb-menu__img {
  width: calc(430 / 1200 * 100%);
  margin-left: -6.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__img {
    width: 90%;
    margin-left: 0;
  }
}

.p-cb-menu__step:nth-child(even) .p-cb-menu__img {
  margin-left: 0;
  margin-right: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__step:nth-child(even) .p-cb-menu__img {
    margin-right: 0;
  }
}

.p-cb-menu__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-cb-menu__flow {
  margin-top: var(--size100);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow {
    margin-top: var(--size50);
  }
}

.p-cb-menu__flow-title {
  text-align: center;
}

.p-cb-menu__flow-wrapper {
  margin-top: var(--size40);
  background-color: #FFF;
  padding: var(--size70) var(--size96);
  border-radius: var(--size10);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-wrapper {
    padding: var(--size40) var(--size20);
    margin-top: var(--size20);
  }
}

.p-cb-menu__flow-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-cb-menu__flow-steps {
  display: flex;
  flex-direction: column;
  gap: var(--size30);
}

.p-cb-menu__flow-step {
  display: flex;
  align-items: center;
  gap: var(--size20);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-step {
    gap: var(--size10);
  }
}

.p-cb-menu__flow-header {
  display: flex;
  flex-direction: column;
  width: var(--size60);
}

.p-cb-menu__flow-step-num {
  display: inline-block;
  color: #B92B27;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
}


.p-cb-menu__flow-icon {
  display: inline-block;
}

.p-cb-menu__flow-step-content {
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-step-content {
    display: block;
    width: 80%;
  }
}

.p-cb-menu__flow-text--red {
  color: #B92B27;
  background-color: #FFF0F0;
  padding: var(--size14) var(--size20);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-text--red {
    padding: 0;
  }
}

.p-cb-menu__flow-tag {
  margin-left: var(--size20);
  border-radius: var(--size30);
  background: #B92B27;
  color: #FFF;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size14);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: var(--size10) var(--size20);
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-tag {
    margin-left: 0;
    margin-top: var(--size10);
  }
}

.p-cb-menu__flow-arrow {
  width: 13%;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-arrow {
    display: none;
  }
}

.p-cb-menu__flow-bottom{
  margin-top: var(--size60);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cb-menu__flow-bottom{
    margin-top: var(--size30);
  }
}

/* ========================================
  制作実績セクション
======================================== */

.p-cb-works {
  margin-block: var(--size80);
}
@media screen and (max-width: 767px) {
  .p-cb-works {
    margin-block: var(--size40);
  }
}

.p-cb-works__title {
  text-align: center;
}

.p-cb-works__clinic span{
  display: inline-block;
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size12);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.p-cb-works__items {

}

.p-cb-works__item {
  margin-top: var(--size100);
}

@media screen and (max-width: 767px) {
  .p-cb-works__item {
    margin-top: var(--size50);
  }
}

.p-cb-works__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--size40);
}
@media screen and (max-width: 767px) {
  .p-cb-works__main {
    flex-direction: column;
    gap: var(--size30);
  }
}

.p-cb-works__body {
  width: calc(1200 / 590 * 100%);
}
@media screen and (max-width: 767px) {
  .p-cb-works__body {
    width: 100%;
  }
}

.p-cb-works__header {
  display: flex;
  align-items: center;
  gap: var(--size30);
}
@media screen and (max-width: 767px) {
  .p-cb-works__header {
    gap: var(--size20);
    flex-direction: column;
    text-align: center;
  }
}

.p-cb-works__label {
  color: #FFF;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  letter-spacing: 0.18em;
  border-radius:var(--size30);
  background: #B92B27;
  padding: var(--size10);
}

.p-cb-works__clinic {

}

.p-cb-works__points {
  display: flex;
  flex-direction: column;
  gap: var(--size20);
  margin-top: var(--size70);
  margin-left: var(--size80);
}
@media screen and (max-width: 767px) {
  .p-cb-works__points {
    margin-left: 0;
    margin-top: var(--size40);
  }
}

.p-cb-works__point{
  display: flex;
  align-items: center;
  gap: var(--size10);
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size16);
  font-weight: 600;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .p-cb-works__point{
    text-align: left;
  }
}

.p-cb-works__point-icon {
  display: inline-block;
  background-image: url(../../../images/ck.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: var(--size20);
  height: var(--size20);
}

.p-cb-works__thumb {
  width: calc(1200 / 560 * 100%);
}
@media screen and (max-width: 767px) {
  .p-cb-works__thumb {
    width: 100%;
  }
}

.p-cb-works__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size30);
  border-radius: var(--size20);
  background: #F4F4F4;
  padding: var(--size50) var(--size30);
  margin-top: var(--size40);
}
@media screen and (max-width: 767px) {
  .p-cb-works__gallery {
    grid-template-columns: 1fr;
    padding: var(--size30) var(--size20);
    margin-top: var(--size20);
  }
}

.p-cb-works__gallery-img {
  text-align: center;
}

.p-cb-works__img-caption{
  display: inline-block;
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size12);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.p-cb-works__gallery--case {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cb-works__gallery--case {
    grid-template-columns: 1fr;
  }
}

/* ========================================
  その他実績セクション
======================================== */

.p-cb-more {
  background-color: #989898;
  padding-block: var(--size70);
}
@media screen and (max-width: 767px) {
  .p-cb-more {
    padding-block: var(--size40);
  }
}

.p-cb-more__inner {

}

.p-cb-more__title {
  text-align: center;
  color: #FFF;
}

.p-cb-more__title span{
  color: #FFF;
  font-family: "Hiragino Sans";
  font-size: var(--size22);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 767px) {
  .p-cb-more__title span{
    font-size: var(--size18);
  }
}

.p-cb-more__list {
  font-size: var(--size16);
  color: #FFF;
  text-align: center;
  overflow: hidden;
  max-height: 120px;
  transition: max-height 0.4s ease;
  margin-top: var(--size30);
  background: linear-gradient(181deg, #FFF 52.62%, #989898 98.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-cb-more__list.is-open {
  max-height: 1000px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #FFF;
}

.p-cb-more__item {

}

.p-cb-more__btn {
  text-align: center;
  margin-top: var(--size20);
}

.p-cb-more__btn a {
  position: relative;
  padding-inline: var(--size30);
}

.p-cb-more__btn a::before,
.p-cb-more__btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s ease;
}

.p-cb-more__btn a::before {
  left: 0;
}

.p-cb-more__btn a::after {
  right: 0;
}

.p-cb-more__btn a.is-open::before,
.p-cb-more__btn a.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.p-cb-more__btn a:hover {

}

.p-cb-more__btn-text {
  color: #FFF;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-cb-more__btn-text {
    font-size: var(--size18);
  }
}

/* ========================================
  マーケティング事情セクション
======================================== */

.p-cb-market {
  padding-block: var(--size80);
  background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
  .p-cb-market {
    padding-block: var(--size40);
  }
}

.p-cb-market__title {
  text-align: center;
}

.p-cb-market__text {
  padding: var(--size30);
  margin-top: var(--size60);
  text-align: left;
  line-height: 2;
  padding-inline: var(--size20);
  /* background-image: url("../../../images/market-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  background-color: #FFF;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-cb-market__text {
    padding-block: var(--size20);
    margin-top: var(--size30);
    line-height: 2.5;
  }
}

/* ========================================
  公開セクション
======================================== */

.p-cb-flow {
  padding-block: var(--size80);
  background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
  .p-cb-flow {
    padding-block: var(--size40);
  }
}

.p-cb-flow__title {
  text-align: center;
}

.p-cb-flow__lead {
  text-align: center;
  margin-top: var(--size60);
  font-size: var(--size18);
}
@media screen and (max-width: 767px) {
  .p-cb-flow__lead {
    margin-top: var(--size30);
  }
}

.p-cb-flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--size50);
  margin-top: var(--size60);
}
@media screen and (max-width: 767px) {
  .p-cb-flow__list {
    grid-template-columns: 1fr;
    gap: var(--size30);
    max-width: 400px;
    margin-inline: auto;
    margin-top: var(--size30);
  }
}

.p-cb-flow__item {
  background-color: #FFF;
  text-align: center;
  padding: var(--size40);
  border-radius: var(--size10);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cb-flow__item {
    padding: var(--size20);
  }
}

.p-cb-flow__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.5rem;
  transform: translateY(-50%);
  width: var(--size24);
  height: var(--size24);
  background-image: url("../../../images/right-arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-cb-flow__item::after {
    right: var(--size10);
    top: auto;
    right: 50%;
    transform: translateX(-50%);
    bottom: -1.25rem;
    rotate: -150deg;
  }
}

.p-cb-flow__item:last-child::after {
  display: none;
}

.p-cb-flow__step {
  color: #B92B27;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.p-cb-flow__icon {
  margin-top: var(--size30);
}

.p-cb-flow__name {
  margin-top: var(--size20);
  color: #313131;
  text-align: center;
  font-family: var(--font-family);;
  font-size: var(--size14);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.p-cb-flow__text {
  text-align: center;
  margin-top: var(--size60);
  font-size: var(--size18);
}

/* ========================================
  料金セクション
======================================== */

.p-cb-price {
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-price {
    padding-block: var(--size40);
  }
}

.p-cb-price__inner {
  max-width: 1050px;
  width: 100%;
}
@media (max-width: 767px) {
  .p-cb-price__inner {
      max-width: 400px;
  }
}

.p-cb-price__sub {

}

.p-cb-price__title {
  text-align: center;
}

.p-cb-price__plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size60);
  margin-top: var(--size60);
  align-items: stretch;
}
@media (max-width: 767px) {
  .p-cb-price__plans {
    grid-template-columns: 1fr;
    gap: var(--size30);
    margin-top: var(--size30);
  }
}

.p-cb-price__plan {
  border: 2px solid #B92B27;
  border-radius: var(--size20);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-cb-price__plan {
  }
}

.p-cb-price__head {
  text-align: center;
  padding: var(--size20);
  border-bottom: 2px solid #B92B27;
}

.p-cb-price__label {
  color: #B92B27;
  font-family: var(--font-sub);
  font-size: var(--size12);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p-cb-price__name {
  color: #B92B27;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-cb-price__name {
    font-size: var(--size18);
  }
}

.p-cb-price__desc {
  color: var(--red);
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-cb-price__list {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-inline: var(--size30);
  margin-top: var(--size50);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--size10);
}
@media (max-width: 767px) {
  .p-cb-price__list {
    font-size: var(--size18);
    margin-top: var(--size30);
    padding-inline: var(--size20);
  }
}

.p-cb-price__item{
  display: flex;
  align-items: center;
  gap: var(--size14);
}

.p-cb-price__item--center {
  text-align: center;
  color: #B9274D;
}

.p-cb-price__item-icon {
  display: inline-block;
  background-image: url(../../../images/ck-red.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--size18);
  height: var(--size18);
}

.p-cb-price__plan--recommend {
  position: relative;
  background-color: #FFF6F6;
}

.p-cb-price__recommend-tag {
  position: absolute;
  left: 0;
  top: 10px;
  padding: 5px 15px;
  color: #B92B27;
  background-color: #fff;
  font-family: var(--font-family);
  font-size: var(--size12);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p-cb-price__head--recommend{
  background-color: #B92B27;
  border-radius: var(--size20) var(--size20) 0 0;
}

.p-cb-price__head--recommend .p-cb-price__label,
.p-cb-price__head--recommend .p-cb-price__name,
.p-cb-price__head--recommend .p-cb-price__desc {
  color: #FFF;
}

.p-cb-price__price {
  text-align: center;
  margin-top: var(--size30);
  margin-bottom: var(--size70);
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .p-cb-price__price {
    font-size: var(--size12);
    margin-top: var(--size20);
    margin-bottom: var(--size40);
  }
}

.p-cb-price__price-block{
  display: inline-block;
  border-bottom: 4px solid #B92B27;
}

.p-cb-price__price--1{
  color: #B92B27;
  font-family: var(--font-family);
  font-size:var( --size30);
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .p-cb-price__price--1{
    font-size: var(--size22);
  }
}

.p-cb-price__price--2{
  color: #B92B27;
  font-family: var(--font-family);
  font-size:var( --size22);
  font-weight: 600;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .p-cb-price__price--2{
    font-size: var(--size18);
  }
}

.p-cb-price__option {
  margin-top: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-price__option {
    margin-top: var(--size40);
  }
}

.p-cb-price__option-head {
  padding: var(--size20);
  background-color: var(--red);
  border-radius: var(--size20);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-price__option-head {
    padding: var(--size10);
  }
}

.p-cb-price__option-label {
  color: #FFF;
  font-family: var(--font-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p-cb-price__option-name {
  color: #FFF;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .p-cb-price__option-name {
    font-size: var(--size18);
  }
}

.p-cb-price__option-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size30);
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-price__option-list {
    grid-template-columns: 1fr;
    gap: var(--size20);
  }
}

.p-cb-price__option-item {
  border-radius: var(--size20);
  border: 2px solid #B92B27;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  padding: var(--size50) var(--size20);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-cb-price__option-item {
    padding: var(--size30) var(--size20);
  }
}
.p-cb-price__option-text {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: var(--size14);
}
@media (max-width: 767px) {
  .p-cb-price__option-text {
    font-size: var(--size18);
  }
}

.p-cb-price__option-text-icon {
  display: inline-block;
  background-image: url(../../../images/ck-red.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--size18);
  height: var(--size18);
}

.p-cb-price__option-price {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-top: var(--size10);
}

.p-cb-price__option-price--1{
  color: #B92B27;
  font-family: var(--font-family);
  font-size: var(--size30);
  font-weight: 700;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .p-cb-price__option-price--1{
    font-size: var(--size22);
  }
}

.p-cb-price__option-price--2{
  color: #B92B27;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .p-cb-price__option-price--2{
    font-size: var(--size18);
  }
}

/* ========================================
  対応可能セクション
======================================== */

.p-cb-support {
  background-color: #F4F4F4;
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-support {
    padding-block: var(--size40);
  }
}


.p-cb-support__title {
  text-align: center;
  line-height: 1.8;
}

.p-cb-support__box {
  margin-top: var(--size80);
  border-radius: var(--size10);
  background-color: #FFF;
  padding: var(--size20) var(--size50);
}
@media (max-width: 767px) {
  .p-cb-support__box {
    margin-top: var(--size40);
    padding: var(--size20) var(--size20);
  }

.p-cb-support__clinics {
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 3.5;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .p-cb-support__clinics {
    font-size: var(--size12);
    line-height: 2.5;
  }
}
}

.p-cb-support__note{
  color: #313131;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 3.5;
  letter-spacing: 0.12em;
}
@media (max-width: 767px) {
  .p-cb-support__note{
    font-size: var(--size12);
    line-height: 2.5;
  }
}

.p-cb-support__message {
  margin-top: var(--size70);
  text-align: center;
}
@media (max-width: 767px) {
  .p-cb-support__message {
    margin-top: var(--size40);
  }
}


/* ========================================
  質問セクション
======================================== */

.p-cb-faq {
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-faq {
    padding-block: var(--size40);
  }
}

.p-cb-faq__inner {
  max-width: 1050px;
}

.p-cb-faq__sub {

}

.p-cb-faq__title {
  text-align: center;
}

.p-cb-faq__list {
  margin-top: var(--size80);
  display: flex;
  flex-direction: column;
  gap: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-faq__list {
    margin-top: var(--size40);
    gap: var(--size20);
  }
}

.p-cb-faq__item {
  border-radius: var(--size10);
  border: 1px solid  #F0F0F0;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.25);
  padding-inline:var(--size40);
}
@media (max-width: 767px) {
  .p-cb-faq__item {
    padding:var(--size10);
  }
}
.p-cb-faq__question-title {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--size30);
  cursor: pointer;

}
@media (max-width: 767px) {
  .p-cb-faq__question-title {
    font-size: var(--size16);
    gap: var(--size20);
  }
}

.p-cb-faq__question-q{
  color: var(--red);
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size42);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .p-cb-faq__question-q{
    font-size: var(--size32);
  }
}

.p-cb-faq__question-a{
  color: var(--red);
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size42);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .p-cb-faq__question-a{
    font-size: var(--size32);
  }
}

.p-cb-faq__question-text {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: var(--size30);
}
@media (max-width: 767px) {
  .p-cb-faq__question-text {
    font-size: var(--size16);
    gap: var(--size20);
  }
}

.p-cb-faq__question-icon {
  display: block;
  position: relative;
  width: var(--size40);
  height: var(--size40);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .p-cb-faq__question-icon {
    width: var(--size30);
    height: var(--size30);
  }
}

.p-cb-faq__question-icon::before{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: var(--red);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.p-cb-faq__question-icon::after{
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--red);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.p-cb-faq__question-icon.is-open::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-cb-faq__answer{
  display: flex;
  align-items: center;
  gap: var(--size30);
}
@media (max-width: 767px) {
  .p-cb-faq__answer{
    gap: var(--size20);
    margin-top: var(--size20);
  }
}

.p-cb-faq__answer-text {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .p-cb-faq__answer-text {
    font-size: var(--size16);
    gap: var(--size20);
  }
}

/* ========================================
  メッセージセクション
======================================== */

.p-cb-message {
  padding-block: var(--size70);
  background-color: var(--red);
  position: relative;
}
@media (max-width: 767px) {
  .p-cb-message {
    padding-block: var(--size40);
  }
}

.p-cb-message__inner {
  max-width: 900px;
}


.p-cb-message::after {
  content: "！";
  position: absolute;
  top: 0;
  left: 0;
  color: #D75551;
  text-align: center;
  font-family: var(--font-sub);
  font-size: var(--size300);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .p-cb-message::after {
    display: none;
  }
}

.p-cb-message__title {
  text-align: center;
  color: #FFF;
}

.p-cb-message__block {
  margin-top: var(--size40);
  text-align: center;
  overflow: hidden;
  max-height: 120px;
  transition: max-height 0.4s ease;
  background: linear-gradient(181deg, #FFF 52.62%, #E55652 98.89%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .p-cb-message__block {
    margin-top: var(--size20);
  }
}

.p-cb-message__block.is-open {
  max-height: 1500px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #FFF;
}

.p-cb-message__text {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.18em;
  margin-top: var(--size20);
}

.p-cb-message__text--title{
  font-size: var(--size18);
  margin-bottom: var(--size20);
  display: block;
}

.p-cb-message__text--highlight {
  display: block;
  color: #B92B27;
  background-color: #FFF;
  padding: var(--size10);
  position: relative;
}

.p-cb-message__text--highlight::after{
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background-image: url("../../../images/polygon-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transform: rotate(100deg);
}

.p-cb-message__text--highlight::before{
  content: "";
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background-image: url("../../../images/polygon-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transform: rotate(100deg);
}

.p-cb-message__text--bg{
  color: #B92B27;
  background-color: #FFF;
  padding: 5px;
}

.p-cb-message__btn {
  text-align: center;
  margin-top: var(--size20);
}

.p-cb-message__btn a {
  position: relative;
  padding-inline: var(--size50);
  background-color: #fff;
  color: #313131;
}

.p-cb-message__btn a::before,
.p-cb-message__btn a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #444;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s ease;
  z-index: 1;
}

.p-cb-message__btn a::before {
  left: 5px;
}

.p-cb-message__btn a::after {
  right: 5px;
}

.p-cb-message__btn a.is-open::before,
.p-cb-message__btn a.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}


.p-cb-message__btn-text {
  color: #444;
  font-family: var(--font-family);
  font-size: var(--size22);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.18em;
  border-bottom: 1px solid #FFF;
}
@media (max-width: 767px) {
  .p-cb-message__btn-text {
    font-size: var(--size18);
  }
}

.p-cb-message__bottom {
  color: #FFF;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.18em;
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-message__bottom {
    font-size: var(--size16);
    margin-top: var(--size20);
  }
}

.p-cb-message__block.is-open ~ .p-cb-message__bottom {
  display: none;
}


/* ========================================
  画像セクション
======================================== */
.p-cb-images {

}

.p-cb-images__img img {
  width: 100%;
  height: auto;
}

/* ========================================
  お問い合わせセクション
======================================== */
.p-cb-contact {
  padding-block: var(--size80);
}
@media (max-width: 767px) {
  .p-cb-contact {
    padding-block: var(--size40);
  }
}

.p-cb-contact__inner {
  max-width: 1200px;
}

.p-cb-contact__title {
  text-align: center;
  line-height: 2;
}
@media (max-width: 767px) {
  .p-cb-contact__title {
    font-size: var(--size20);
  }
}

.p-cb-contact__catch {
  color: var(--black);
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size18);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-contact__catch {
    font-size: var(--size16);
    margin-top: var(--size20);
  }
}

.p-cb-contact__form {
  margin-top: var(--size30);
  max-width: 850px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--size30);
}
@media (max-width: 767px) {
  .p-cb-contact__form {
    gap: var(--size20);
  }
}

.p-cb-contact__group {
  display: flex;
  align-items: center;
  gap: var(--size40);
}
@media (max-width: 767px) {
  .p-cb-contact__group {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size20);
  }
}

.p-cb-contact__label {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size20);
}
@media (max-width: 767px) {
  .p-cb-contact__label {
    width: 100%;
    gap: var(--size10);
    justify-content: flex-start;
  }
}

.p-cb-contact__required {
  color: #fff;
  background-color: var(--red);
  border-radius: 3px;
  padding: 5px 10px;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.p-cb-contact__input,
.p-cb-contact__textarea {
  display: block;
  color: var(--black);
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  border-radius: 6px;
  border: 1px solid #BCBCBC;
  padding: var(--size15) var(--size25);
  background-color: #FFF;
  width: 100%;
}
@media (max-width: 767px) {
  .p-cb-contact__input,
  .p-cb-contact__textarea {
    width: 100%;
    padding: var(--size10) var(--size15);
  }
}

.p-cb-contact__input::placeholder{
  color: #BCBCBC;
}

.p-cb-contact__data{
  width: 100%;
}

.p-cb-contact__optional {
  color: #FFF;
  background-color: #BCBCBC;
  border-radius: 3px;
  padding: 5px 10px;
  font-family: var(--font-family);
  font-size: var(--size14);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.p-cb-contact__textarea {
  height: var(--size200);
}

.p-cb-contact__privacy {
  color: #313131;
  font-family: var(--font-family);
  font-size: var(--size12);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-align: center;

}

.p-cb-contact__privacy-label label{
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-cb-contact__privacy-checkbox{
  margin-right: var(--size10);
}

.p-cb-contact__privacy-link{
  text-decoration: underline;
  color: #666AE5;
  text-align: center;
  font-family: var(--font-family);
  font-size: var(--size12);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.p-cb-contact__privacy-checkbox{
  display: block;
  width: var(--size14);
}

.p-cb-contact__btn {
  text-align: center;
}

.c-contact{
  display: inline-block;
  padding: var(--size20);
  max-width: 360px;
  width: 100%;
  border-radius: var(--size70);
  background-color: #313131;
  color: #FFF;
  font-family: var(--font-family);
  font-size: var(--size30);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .c-contact{
    font-size: var(--size22);
    max-width: 100%;
    padding: var(--size15);
  }
}

.c-contact:hover {
  opacity: 0.7;
}

span.wpcf7-spinner {
  display: block;
}

.p-cb-download .p-cb-contact__group{
  flex-direction: column;
  text-align: left;
  gap: var(--size20);
}

.p-cb-download .p-cb-contact__label{
  width: 100%;
  justify-content: flex-start;
}

