/*------------------------------------------
  Component
------------------------------------------*/
/* Button01 角丸 */
.cm-button-round a {
  display: block;
  max-width: 545px;
  width: 100%;
  height: 100px;
  line-height: 100px;
  color: var(--c-white);
  text-align: center;
  position: relative;
  border-radius: 105px;
  background: var(--c-primary);
  font-size: 22px;
  font-weight: var(--fw-bold);
  box-shadow: 4px 3px 0 rgba(0, 0, 0, .16);
  transition: .3s;
}
.cm-button-round.type02 a {
  background: var(--c-tertiary);
}
.cm-button-round a:hover {
  box-shadow: none;
}
.cm-button-round a svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .cm-button-round a {
    font-size: 18px;
    height: 70px;
    line-height: 70px;
  }
}

/* Button02 角あり */
.cm-button-square a {
  display: block;
  width: 100%;
  height: 58px;
  line-height: 56px;
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  transition: .3s;
  text-align: center;
}
.cm-button-square.type02 a {
  background: var(--c-tertiary);
  border: 1px solid var(--c-tertiary);
}
.cm-button-square a:hover {
  color: var(--c-primary);
  background: var(--c-white);
}
.cm-button-square.type02 a:hover {
  color: var(--c-tertiary);
}

/* Tel */
.cm-tel {
  text-align: left;
  padding-left: 40px;
}
.cm-tel .txt {
  font-size: var(--fs-small);
}
.cm-tel .num {
  font-size: 40px;
  line-height: 1;
  position: relative;
}
.cm-tel .num svg {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
}
.cm-tel .num svg path {
  fill: var(--c-primary);
}
@media only screen and (max-width: 767px) {
  .cm-tel {
    padding-left: 25px;
  }
  .cm-tel .txt {
    font-size: var(--fs-xsmall);
  }
  .cm-tel .num {
    font-size: 30px;
  }
  .cm-tel .num svg {
    width: 25px;
    height: 25px;
    left: -25px;
  }
}

/* Post List */
.cm-post-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}
.cm-post-list li {
  width: calc(50% - 10px);
  border: 1px solid var(--c-tertiary);
  background: var(--c-white);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  position: relative;
}
.cm-post-list li:after {
  content: "";
  width: 40px;
  height: calc(40px / 2);
  background: var(--c-tertiary);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(135deg);
  position: absolute;
  right: 2px;
  bottom: 12px;
}
.cm-post-list .label {
  width: calc(100% - 240px);
}
.cm-post-list .label .date {
  font-size: var(--fs-small);
  display: block;
}
.cm-post-list .label .cat {
  display: block;
  color: var(--c-white);
  background: var(--c-tertiary);
  width: 100px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  margin: .5rem 0 1rem;
}
.cm-post-list .label .post-title {
  font-weight: var(--fw-medium);
  display: block;
}
@media only screen and (max-width: 1280px) {
  .cm-post-list li {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cm-post-list li {
    padding: 10px;
  }
  .cm-post-list li:after {
    right: -4px;
    bottom: 7px;
  }
  .cm-post-list .thumb {
    width: 135px;
  }
  .cm-post-list .label {
    width: calc(100% - 150px);
  }
}

/* Area */
.cm-area {
  padding: 5rem 0 3rem;
}
.cm-area .inner {
  max-width: 955px;
  text-align: center;
}
.cm-area .box {
  border: 5px solid var(--c-primary);
  background: var(--c-white);
  position: relative;
  padding: 4rem 1rem 2rem;
  font-weight: var(--fw-bold);
}
.cm-area .area-title {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  font-size: 44px;
  background: var(--c-white);
  padding: 0 2rem;
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  margin: auto;
  white-space: nowrap;
}
.cm-area .area-txt01 {
  font-size: 32px;
  display: inline;
  border-bottom: 5px double var(--c-other04);
  line-height: 1.8;
}
.cm-area .area-txt02 {
  font-size: 22px;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .cm-area .box {
    padding: 3rem 1rem 1rem;
  }
  .cm-area .area-title {
    font-size: 24px;
    top: -20px;
    padding: 0 3rem;
  }
  .cm-area .area-title img {
    width: 40px;
  }
  .cm-area .area-txt01 {
    font-size: 20px;
  }
  .cm-area .area-txt02 {
    font-size: var(--fs-regular);
  }
}

/* SOS */
.cm-sos {
  padding-top: 3rem;
}
.cm-sos .img {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cm-sos .img:before,
.cm-sos .img:after {
  content: "";
  width: 616px;
  height: 588px;
  display: block;
  background: url(../images/common/cm_sos_hand@2x.png) no-repeat center / cover;
  position: absolute;
  z-index: 2;
}
.cm-sos .img:before {
  right: -100px;
  top: -48px;
}
.cm-sos .img:after {
  left: -25px;
  bottom: -65px;
  transform: scale(-1, -1) rotate(15deg);
}
.cm-sos .flex {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem 0;
  margin-top: 5rem;
}
.cm-sos .col {
  width: 32.813%;
  border: 1px solid var(--c-secondary);
}
.cm-sos .col .title {
  color: var(--c-white);
  background: var(--c-secondary);
  text-align: center;
  font-size: 22px;
  font-weight: var(--fw-bold);
  height: 50px;
  line-height: 48px;
}
.cm-sos .col .text {
  padding: 1rem;
}
.cm-sos .col .text span {
  color: var(--c-other01);
  font-weight: var(--fw-bold);
  line-height: 1.8;
}
@media only screen and (max-width: 1280px) {
  .cm-sos .img:before,
  .cm-sos .img:after {
    width: 400px;
    height: 382px;
  }
  .cm-sos .img:before {
    top: 120px;
  }
  .cm-sos .col {
    width: 49%;
  }
  .cm-sos .col img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cm-sos {
    padding-top: 0;
  }
  .cm-sos .img:before,
  .cm-sos .img:after {
    width: 150px;
    height: 143px;
  }
  .cm-sos .img:before {
    top: 90px;
    right: -25px;
  }
  .cm-sos .flex {
    gap: 1rem 0;
  }
  .cm-sos .col {
    width: 100%;
  }
  .cm-sos .col .title {
    font-size: 18px;
  }
}

/* Step */
.cm-step {
  text-align: center;
  padding: 5rem 0 10rem;
  position: relative;
}
.cm-step .sp-img {
  display: none;
}
.cm-step .catch {
  font-size: 36px;
  font-weight: var(--fw-bold);
  line-height: 1.7;
}
.cm-step .catch .large {
  font-size: 64px;
}
.cm-step .catch .small {
  font-size: 55px;
}
.cm-step .color01 {
  color: var(--c-other01);
  position: relative;
}
.cm-step .color01:before {
  content: "・・";
  font-weight: var(--fw-regular);
  position: absolute;
  left: 0;
  right: 0;
  top: -55px;
  margin: auto;
}
.cm-step .color02 {
  color: var(--c-tertiary);
}
.cm-step .text {
  font-size: 22px;
  line-height: 2;
  margin: 3rem 0;
}
.cm-step .line {
  background: var(--c-secondary);
  color: var(--c-other02);
  font-size: 38px;
  font-weight: var(--fw-bold);
  padding: 1.5rem 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.cm-step img.sp {
  display: none;
}
@media only screen and (max-width: 1280px) {
  .cm-step .catch .large {
    font-size: 44px;
  }
  .cm-step .catch .small {
    font-size: 34px;
  }
  .cm-step .color01:before {
    top: -37px;
  }
}
@media only screen and (max-width: 767px) {
  .cm-step {
    padding: 0 0 10rem;
  }
  .cm-step .sp-img {
    display: block;
    width: 100%;
  }
  .cm-step .catch {
    text-align: left;
    font-size: 22px;
    line-height: 1.5;
  }
  .cm-step .catch .large {
    font-size: 34px;
    display: block;
    margin-top: 1.5rem;
    line-height: 1.2;
  }
  .cm-step .catch .small {
    font-size: 28px;
  }
  .cm-step .color01:before {
    top: -20px;
  }
  .cm-step .text {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
    margin: 1.5rem 0;
  }
  .cm-step img.pc {
    display: none
  }
  .cm-step img.sp {
    width: 100%;
    display: block;
  }
  .cm-step .line {
    font-size: 24px;
    line-height: 1.4;
    padding: 1rem;
  }
}

/* Point */
.cm-point {
  padding: 10rem 0;
  text-align: center;
}
.cm-point .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1;
}
.cm-point .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: -35px;
  top: -20px;
  transform: rotate(-28deg);
}
.cm-point .title .jp span {
  color: var(--c-other01);
  font-size: 100px;
}
.cm-point .flex {
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
  text-align: left;
  margin-top: 5rem;
}
.cm-point .block {
  position: relative;
}
.cm-point .block .text {
  max-width: 900px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.cm-point .block:nth-of-type(even) .text {
  left: auto;
  right: 0;
}
.cm-point .block .img {
  padding-top: 15px;
  text-align: right;
}
.cm-point .block:nth-of-type(even) .img {
  text-align: left;
}
.cm-point .block .en-text {
  color: var(--c-other01);
  font-weight: var(--fw-bold);
}
.cm-point .block .color-text {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--c-tertiary);
}
.cm-point .block .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  margin: 1rem 0 1.5rem;
  display: inline-block;
  background: linear-gradient(transparent 80%, var(--c-other02) 80%);
}
.cm-point .block .title span {
  font-size: 84px;
  color: var(--c-other01);
}
.cm-point .block .sub-title {
  font-size: 34px;
  font-weight: var(--fw-bold);
}
.cm-point .block .txt {
  line-height: 2;
  margin-top: 1rem;
}
@media only screen and (max-width: 1280px) {
  .cm-point .block .title {
    font-size: 36px;
    display: inline;
    line-height: 1.3;
  }
  .cm-point .block .title span {
    font-size: 70px;
  }
  .cm-point .block .sub-title {
    font-size: 28px;
    margin-top: 1.5rem;
  }
  .cm-point .block:nth-of-type(even) .text {
    left: 0;
    right: auto;
  }
  .cm-point .block:nth-of-type(even) .img {
    text-align: right;
  }
  .cm-point .block:nth-of-type(even) .img img {
    transform: scale(-1, 1);
  }
}
@media only screen and (max-width: 767px) {
  .cm-point {
    padding: 5rem 0;
  }
  .cm-point .title {
    font-size: 24px;
    line-height: 1.2;
  }
  .cm-point .title .en {
    font-size: 18px;
    left: -10px;
    top: -30px;
  }
  .cm-point .title .jp span {
    font-size: 50px;
  }
  .cm-point .flex {
    margin-top: 4rem;
    gap: 5rem 0;
  }
  .cm-point .block .text {
    position: static;
  }
  .cm-point .block .en-text {
    font-size: var(--fs-small);
  }
  .cm-point .block .color-text {
    font-size: 26px;
  }
  .cm-point .block .title {
    font-size: 32px;
  }
  .cm-point .block .title span {
    font-size: 50px;
  }
  .cm-point .block .sub-title {
    font-size: 24px;
    line-height: 1.2;
  }
  .cm-point .block .img {
    width: 100%;
    position: absolute;
    z-index: -1;
    top: -2rem;
    right: -100px;
  }
}

/* Voice List */
.cm-voice-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px 10px;
  width: 100%;
}
.cm-voice-list .col {
  width: 32.813%;
  border: 1px solid var(--c-secondary);
  background: var(--c-white);
  padding: 15px 15px 3rem;
  position: relative;
}
.cm-voice-list .col .voice-title {
  display: inline-block;
  font-size: 22px;
  color: var(--c-white);
  background: var(--c-secondary);
  border-radius: 20px;
  height: 40px;
  line-height: 38px;
  padding: 0 2rem;
  position: absolute;
  left: 5px;
  top: 5px;
}
.cm-voice-list .col .voice-text {
  margin-top: 1rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cm-voice-list {
    flex-direction: column;
  }
  .cm-voice-list .col {
    width: 100%;
    padding: 15px 15px 1rem;
  }
  .cm-voice-list .col img {
    width: 100%;
  }
  .cm-voice-list .col .voice-title {
    font-size: 18px;
    border-radius: 15px;
    height: 30px;
    line-height: 28px;
  }
}

/* Works List */
.cm-works-list {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem 6.053%;
}
.cm-works-list .col {
  width: 29.298%;
  background: var(--c-white);
  border: 1px solid var(--c-tertiary);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cm-works-list .works-head {
  background: var(--c-tertiary);
  color: var(--c-white);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 18px;
  font-weight: var(--fw-bold);
  gap: .5rem 0;
}
.cm-works-list .works-cat {
  background: var(--c-text);
  border-radius: 14px;
  color: var(--c-white);
  padding: 0 1rem;
}
.cm-works-list .works-title {
  margin-left: auto;
}
.cm-works-list .works-text {
  padding: 15px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px 0;
  height: 100%;
}
@media only screen and (max-width: 1280px) {
  .cm-works-list {
    gap: 2rem 2%;
  }
  .cm-works-list .col {
    width: 32%;
  }
}
@media only screen and (max-width: 767px) {
  .cm-works-list .col {
    width: 100%;
  }
}

/* Pick Up */
.cm-pickup {
  background: var(--c-other03);
  text-align: center;
  padding: 5rem 0;
}
.cm-pickup .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1;
}
.cm-pickup .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: -55px;
  top: -20px;
  transform: rotate(-28deg);
}
.cm-pickup .flex {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px 0;
  margin-top: 5rem;
}
.cm-pickup .col {
  width: 32.813%;
  border: 1px solid var(--c-secondary);
}
.cm-pickup .pickup-title {
  color: var(--c-white);
  background: var(--c-secondary);
  font-size: 22px;
  padding: 1rem;
}
.cm-pickup .pickup-txt {
  text-align: left;
  padding: 15px;
}
@media only screen and (max-width: 1280px) {
  .cm-pickup .pickup-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cm-pickup .title {
    font-size: 24px;
    line-height: 1.2;
  }
  .cm-pickup .title .en {
    font-size: 18px;
  }
  .cm-pickup .flex {
    margin-top: 3rem;
  }
  .cm-pickup .col,
  .cm-pickup .col img {
    width: 100%;
  }
  .cm-pickup .pickup-title {
    font-size: 18px;
  }
}

/* Flow */
.cm-flow {
  text-align: center;
  padding: 5rem 0;
}
.cm-flow .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1;
}
.cm-flow .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: -35px;
  top: -20px;
  transform: rotate(-28deg);
}
.cm-flow .flex {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px 0;
  margin-top: 5rem;
}
.cm-flow .col {
  width: 32.813%;
  border: 1px solid var(--c-primary);
}
.cm-flow .head {
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: var(--fw-bold);
  padding: 1rem 0 1.5rem;
  position: relative;
}
.cm-flow .head:after {
  content: "";
  height: calc(40px / 2);
  width: 40px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--c-primary);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  margin: auto;
}
.cm-flow .head .flow-step {
  font-size: 18px;
}
.cm-flow .head .flow-title {
  font-size: 30px;
}
.cm-flow .flow-text {
  padding: 15px;
  text-align: left;
}
@media only screen and (max-width: 1280px) {
  .cm-flow .head .flow-step {
    font-size: var(--fs-small);
  }
  .cm-flow .head .flow-title {
    font-size: 20px;
    margin-top: .5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-flow .title {
    font-size: 24px;
  }
  .cm-flow .title .en {
    font-size: 18px;
  }
  .cm-flow .flex {
    margin-top: 3rem;
  }
  .cm-flow .col,
  .cm-flow .col > img {
    width: 100%;
  }
}

/* Insurance */
.cm-insurance {
  padding: 5rem 0 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cm-insurance:before {
  content: "";
  width: 580px;
  height: 554px;
  display: block;
  background: url(../images/page/reform_insurance_left_img@2x.png) no-repeat center / cover;
  position: absolute;
  left: 0;
  bottom: -50px;
}
.cm-insurance:after {
  content: "";
  width: 580px;
  height: 583px;
  display: block;
  background: url(../images/page/reform_insurance_right_img@2x.png) no-repeat center / cover;
  position: absolute;
  right: 0;
  bottom: -50px;
}
.cm-insurance .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1;
  margin-bottom: 4rem;
}
.cm-insurance .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: -35px;
  top: -20px;
  transform: rotate(-28deg);
}
.cm-insurance .title:after {
  content: "";
  width: 317px;
  height: 72px;
  display: block;
  background: url(../images/page/reform_insurance_fukidashi@2x.png) no-repeat center / cover;
  position: absolute;
  bottom: -55px;
  left: -45px;
}
.cm-insurance .sub-title {
  font-size: 44px;
}
.cm-insurance .flex {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0 1rem;
  position: relative;
}
.cm-insurance .flex:before {
  content: "";
  width: 234px;
  height: 238px;
  display: block;
  background: url(../images/page/reform_insurance_char@2x.png) no-repeat center / cover;
  position: absolute;
  left: -30px;
  top: -235px;
}
.cm-insurance .col {
  width: 25%;
  position: relative;
}
.cm-insurance .col span {
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: 0;
  right: 0;
  top: 1rem;
  margin: auto;
  z-index: 2;
}
.cm-insurance .text-box {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.cm-insurance .txt01 {
  font-size: 32px;
  font-weight: var(--fw-bold);
}
.cm-insurance .txt01 span {
  position: relative;
  font-size: 44px;
}
.cm-insurance .txt01 span:before {
  content: "";
  width: 66px;
  height: 50px;
  display: block;
  background: url(../images/page/reform_.insurance_icon_home.png) no-repeat center / cover;
  position: absolute;
  left: -75px;
  top: 50%;
  transform: translateY(-50%);
}
.cm-insurance .txt02 {
  font-size: 22px;
}
.cm-insurance .txt02 span {
  position: relative;
}
.cm-insurance .txt02 span:before {
  content: "・・";
  color: var(--c-other01);
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  margin: auto;
}
@media only screen and (max-width: 1700px) {
  .cm-insurance:before {
    width: 350px;
    height: 334px;
    bottom: -30px;
  }
  .cm-insurance:after {
    width: 350px;
    height: 352px;
    bottom: -30px;
  }
}
@media only screen and (max-width: 1280px) {
  .cm-insurance .sub-title {
    font-size: 24px;
  }
  .cm-insurance .flex:before {
    width: 165px;
    height: 168px;
    top: -165px;
  }
  .cm-insurance .col span {
    font-size: var(--fs-regular);
  }
  .cm-insurance .txt01 {
    font-size: 20px;
  }
  .cm-insurance:before {
    width: 200px;
    height: 192px;
    bottom: -15px;
  }
  .cm-insurance:after {
    width: 200px;
    height: 202px;
    bottom: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .cm-insurance {
    padding: 3rem 0 10rem;
  }
  .cm-insurance .title {
    font-size: 24px;
  }
  .cm-insurance .title:after {
    width: 180px;
    height: 40px;
    bottom: -40px;
    left: -15px;
  }
  .cm-insurance .title .en {
    font-size: 18px;
  }
  .cm-insurance .sub-title {
    width: calc(100% - 100px);
    margin-left: auto;
    text-align: left;
    line-height: 1.5;
    font-size: 20px;
  }
  .cm-insurance .flex {
    margin: 1rem 0;
  }
  .cm-insurance .flex:before {
    width: 90px;
    height: 92px;
    top: -88px;
    left: 0;
  }
  .cm-insurance .col {
    width: 50%;
  }
  .cm-insurance .col img {
    width: 100%;
  }
  .cm-insurance .col span {
    font-size: var(--fs-small);
  }
  .cm-insurance .text-box {
    gap: 1.5rem 0;
  }
  .cm-insurance .txt01 {
    font-size: 18px;
  }
  .cm-insurance .txt01 span {
    font-size: 30px;
  }
  .cm-insurance .txt01 span:before {
    width: 50px;
    height: 38px;
    position: static;
    display: inline-block;
    transform: none;
    vertical-align: text-top;
    margin-right: 5px;
  }
  .cm-insurance .txt02 {
    font-size: 18px;
    text-align: left;
  }
  .cm-insurance .txt03 {
    font-size: var(--fs-small);
    text-align: left;
  }
  .cm-insurance:before {
    width: 142px;
    height: 137px;
    bottom: -10px;
  }
  .cm-insurance:after {
    width: 142px;
    height: 142px;
    bottom: -10px;
  }
}

/* Price */
.cm-price {
  background: url(../images/common/footer_price_bg.png) no-repeat center / cover;
  text-align: center;
  padding: 5rem 0 10rem;
}
.cm-price .title {
  font-size: 44px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
.cm-price .title .en {
  color: var(--c-other01);
  font-size: 22px;
  font-weight: var(--fw-bold);
  position: absolute;
  left: 28px;
  top: -20px;
  transform: rotate(-28deg);
}
.cm-price .overview {
  font-size: 22px;
  margin: 1rem 0 3rem;
}
.cm-price .flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.cm-price .col {
  width: 29.298%;
  text-align: left;
  background: var(--c-white);
  border: 1px solid var(--c-secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.cm-price .price-title {
  color: var(--c-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  background: var(--c-secondary);
  text-align: center;
  padding: 1rem 0;
}
.cm-price .txt {
  padding: 15px;
}
.cm-price .bottom-box {
  padding: 0 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  margin-top: auto;
}
.cm-price .dl-box {
  border-top: 1px solid var(--c-secondary);
  margin-top: auto;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
}
.cm-price .dl-box dl {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.cm-price .dl-box dt {
  color: var(--c-white);
  background: var(--c-tertiary);
  border-radius: 5px;
  width: 110px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
.cm-price .dl-box .num {
  font-size: 30px;
}
.cm-price .opa0 {
  opacity: 0;
}
@media only screen and (max-width: 1280px) {
  .cm-price .col {
    width: 32%;
  }
  .cm-price .price-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cm-price {
    padding: 5rem 0;
  }
  .cm-price .overview {
    font-size: 16px;
    text-align: left;
  }
  .cm-price .title {
    font-size: 24px;
  }
  .cm-price .title .en {
    font-size: 18px;
    left: 10px;
  }
  .cm-price .flex {
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }
  .cm-price .col {
    width: 100%;
  }
}

/*------------------------------------------
  Pagination
------------------------------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 5px;
  margin: 7rem 0 0;
  font-size: var(--fs-small);
}
.pagination span,
.pagination a {
  display: block;
  width: auto;
  padding: 10px 13px;
  border: 1px solid var(--c-black);
  background-color: var(--c-white);
  text-align: center;
  line-height: 1;
  transition: .3s;
}
/* ホバー時 & 現在のページ */
.pagination a:hover,
.pagination .current {
  color: var(--c-white);
  border-color: var(--c-black);
  background-color: var(--c-black);
}
/* 前へ */
.pagination a.prev {
  margin-right: 1rem;
}
/* 次へ */
.pagination a.next {
  margin-left: 1rem;
}
/* Page x of y */
.pagination span.page_num {
  display: none;
}

/*------------------------------------------
  Form
------------------------------------------*/
.form-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: auto;
}
.form-block dl {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 22px;
}
.form-block dt {
  width: 200px;
}
.form-block dd {
  width: calc(100% - 200px);
}
.form-block input[type="text"],
.form-block textarea,
.form-block .zip input[type="tel"] {
  background: #F2F2F2;
  width: 100%;
  padding: 8px 10px;
  border: none;
}
.form-block .privacy {
  text-align: center;
  margin: 0 0 3rem;
}
.form-block .submit {
  display: block;
  max-width: 545px;
  width: 100%;
  position: relative;
  margin: auto;
}
.form-block .submit input[type="submit"] {
  width: 100%;
  height: 100px;
  line-height: 100px;
  color: var(--c-white);
  text-align: center;
  border-radius: 105px;
  background: var(--c-primary);
  font-size: 22px;
  font-weight: var(--fw-bold);
  box-shadow: 4px 3px 0 rgba(0, 0, 0, .16);
  border: none;
  transition: .3s;
}
.form-block .submit input[type="submit"]:hover {
  box-shadow: none;
  cursor: pointer;
}
.form-block .submit svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .form-block {
    gap: 20px 0;
  }
  .form-block dl {
    font-size: 18px;
  }
  .form-block dt {
    width: 100%;
    margin-bottom: .5rem;
  }
  .form-block dd {
    width: 100%;
  }
  .form-block .submit input[type="submit"] {
    font-size: 18px;
    height: 70px;
    line-height: 70px;
  }
}

/*------------------------------------------
  Call to action
------------------------------------------*/
.cta {
  background: var(--c-primary);
  height: 270px;
  color: var(--c-white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .catch {
  font-size: 44px;
  font-weight: var(--fw-bold);
}
.cta .flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  margin-top: 1.5rem;
}
.cta .tel {
  text-align: left;
}
.cta .tel a {
  font-size: 54px;
  font-weight: var(--fw-bold);
  color: var(--c-white);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 5px;
  line-height: 1.2;
}
.cta .tel path {
  fill: var(--c-white);
}
.cta .tel .txt {
  font-size: var(--fs-small);
}
.cta .btn a {
  height: 80px;
  background: var(--c-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  padding: 0 3rem;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, .16);
}
@media only screen and (max-width: 1280px) {
  .cta {
    height: auto;
    padding: 1.5rem 0 2rem;
  }
  .cta .flex {
    flex-direction: column;
    gap: 1.5rem 0;
  }
  .cta .catch {
    font-size: 34px;
  }
  .cta .tel {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .cta .catch {
    font-size: 24px;
  }
  .cta .tel a {
    font-size: 34px;
  }
  .cta .tel svg {
    width: 25px;
    height: 25px;
  }
  .cta .btn a {
    height: 65px;
    font-size: 16px;
    padding: 0 1rem;
  }
}

/*------------------------------------------
  Fixed Call to action
------------------------------------------*/
.fixed-cta {
  position: fixed;
  left: 0;
  bottom: -120px;
  z-index: 97;
  width: 100%;
  height: 120px;
  opacity: 0;
  transition: .5s;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-cta .inner {
  max-width: 1000px;
}
.fixed-cta.active {
  bottom: 0;
  opacity: 1;
}
.fixed-cta .flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.fixed-cta .btn a {
  height: 80px;
  background: var(--c-white);
  font-size: 22px;
  font-weight: var(--fw-bold);
  color: var(--c-primary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  padding: 0 3rem;
  box-shadow: 4px 5px 0 rgba(0, 0, 0, .16);
}
.fixed-cta .pagetop {
  width: 112px;
  height: 112px;
  background: var(--c-other04);
  border-radius: 50%;
  box-shadow: 0 6px 5px rgba(0, 0, 0, .4);
  font-size: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -64px;
  color: var(--c-white);
  line-height: 1;
}
.fixed-cta .cm-tel .num {
  color: var(--c-white);
}
.fixed-cta .cm-tel .num path {
  fill: var(--c-white);
}
@media only screen and (max-width: 1280px) {
  .fixed-cta .btn a {
    font-size: 18px;
    padding: 0 2rem;
  }
  .fixed-cta .pagetop {
    display: none;
  } 
}
@media (max-width: 767px) {
  .fixed-cta {
    height: 100px;
  }
  .fixed-cta .cm-tel {
    padding-left: 0;
  }
  .fixed-cta .cm-tel .num svg {
    left: 0;
  }
  .fixed-cta .cm-tel .num span {
    padding-left: 25px;
  }
  .fixed-cta .btn a {
    font-size: var(--fs-xsmall);
    text-align: center;
    flex-direction: column-reverse;
    padding: .5rem;
    line-height: 1.2;
  }
}