@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(30deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(30deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(30deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(50) rotate(30deg);
    opacity: 0;
  }
}
@keyframes yure {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
@keyframes scalePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (min-width: 515px) {
  .main {
    display: grid;
    grid-template-columns: minmax(0, 660fr) 515px minmax(0, 325fr);
    align-items: stretch;
  }
}
.pc_container_l,
.pc_container_r {
  display: none;
}

@media screen and (min-width: 515px) {
  .pc_container_l {
    display: block;
    position: relative;
  }
  .pc_container_l .inner {
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    background: #e3f9ff url(../images/logo.svg) no-repeat 50% 50%;
  }
  .pc_container_l .inner .cta_section {
    text-align: center;
  }
  .pc_container_l .inner .cta_section .balloon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    padding: 0 14px;
    font-size: 18px;
    font-weight: bold;
  }
  .pc_container_l .inner .cta_section .balloon::before, .pc_container_l .inner .cta_section .balloon::after {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 70%;
    background: #585858;
    content: "";
    transform: translateY(-50%) rotate(-25deg);
  }
  .pc_container_l .inner .cta_section .balloon::after {
    left: auto;
    right: 0;
    transform: translateY(-50%) rotate(25deg);
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap {
    display: flex;
    gap: 18px;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c60000;
    width: 270px;
    height: 85px;
    background: #fff;
    border-radius: 8px;
    color: #c60000;
    font-weight: bold;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn::after {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 13px;
    height: 18px;
    background: #c60000;
    content: "";
    transform: translateY(-50%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn .text_sml {
    font-size: 10px;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn .text_med {
    font-size: 15px;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn .text_big {
    font-size: 20px;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn.tel::before {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 33px;
    height: 33px;
    background: url(../images/icon_phone.svg) no-repeat 50% 50%/contain;
    content: "";
    transform: translateY(-50%);
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn.line {
    border-color: #00b900;
    color: #00b900;
  }
  .pc_container_l .inner .cta_section .cta_btn_wrap .btn.line::after {
    background: #00b900;
  }
  .pc_container_r {
    display: block;
    position: relative;
  }
  .pc_container_r .inner {
    overflow: hidden;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 35px;
    text-align: center;
  }
  .pc_container_r .inner .content {
    margin-bottom: 20px;
  }
  .pc_container_r .inner .content .payment {
    max-width: none;
  }
  .pc_container_r .inner .content .menu {
    display: table;
    margin: 120px auto 0;
  }
  .pc_container_r .inner .content .menu > li {
    margin-bottom: 5px;
    border-bottom: 1px solid #606060;
    text-align: left;
  }
  .pc_container_r .inner .content .menu > li:last-child {
    margin-bottom: 0;
  }
  .pc_container_r .inner .content .menu > li a {
    display: block;
    position: relative;
    padding: 5px 28px 5px 5px;
    font-size: 15px;
  }
  .pc_container_r .inner .content .menu > li a::after {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 6px;
    height: 8px;
    background: #3ba7d8;
    content: "";
    transform: translateY(-50%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }
  .pc_container_r .inner .campaign_banner {
    width: 250px;
  }
  .pc_container_r .inner .campaign_banner > .notes {
    text-align: left;
    margin-top: 5px;
    font-size: 9px;
  }
}
.main_sp_container {
  position: relative;
  z-index: 10;
  background-color: #fff;
  max-width: 515px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.main__container {
  padding: 0 3.8vw;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 515px) {
  .main__container {
    padding: 0 20px;
  }
}
.bold {
  font-weight: bold;
}

.white {
  color: #fff;
}

.blue {
  color: #3BA7D8;
}

.red {
  color: #c50000;
}

.header {
  position: relative;
  z-index: 100;
  background-color: #fff;
}
.header .header__inner {
  padding: 12px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 33px;
  color: #FFF;
  background-color: #FF6060;
  border-radius: 10px;
  font-size: 11px;
}

@media screen and (min-width: 515px) {
  .header {
    display: none;
  }
  .header .header__inner {
    padding: 12px 16px;
  }
  .header .header__logo {
    flex: 0 0 161px;
  }
}
.cta__section {
  position: fixed;
  left: 0;
  right: 0;
  max-width: 390px;
  z-index: 99;
  background-color: #fff;
  bottom: 0;
  padding: 10px 6px;
  color: #fff;
}
.cta__section .register {
  margin-bottom: 2px;
  display: block;
  width: 100%;
  background-color: #3BA7D8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  padding: 7px 0;
}
.cta__section .group {
  display: flex;
  gap: 2px;
}
.cta__section .line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background-color: #00B900;
  border-bottom-left-radius: 5px;
  height: 74px;
  width: 107px;
  font-size: 14px;
  font-weight: bold;
}
.cta__section .contact {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  gap: 14px;
  background-color: #C60000;
  border-bottom-right-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 7px 13px;
}
.cta__section .contact .phone {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}
.cta__section .contact .time {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .cta__section {
    left: 64px;
    bottom: 30px;
    right: unset;
  }
}
.section__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .section__title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}
.fv {
  padding: 0 0 10.2vw;
  text-align: center;
}
.fv .head_text_red {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2vw;
  background: #c50000;
  color: #fff;
  font-weight: bold;
  font-size: 4.8vw;
}
.fv .head_text_red::before, .fv .head_text_red::after {
  display: block;
  width: 1.1em;
  height: 1.1em;
  margin: -0.1em 0.4em 0;
  background: url(../images/icon_alert.svg) no-repeat 50% 50%/contain;
  content: "";
  animation: blink 1.5s ease-in-out infinite;
}
.fv .head_text {
  padding: 2vw 3.8vw 3.5vw;
  font-weight: bold;
  font-size: 5.3vw;
}
.fv .image {
  width: 100%;
  height: auto;
}
.fv .belt {
  margin-bottom: 3.8vw;
  padding: 1.2vw;
  background: linear-gradient(-225deg, #1a5eae 0%, #5f96d6 50%, #094285 100%);
  color: #fff;
  font-weight: bold;
  font-size: 4.8vw;
}
.fv .tag_list {
  display: inline-flex;
  gap: 2vw;
  margin-bottom: 1vw;
}
.fv .tag_list > li {
  padding: 0.7vw 2.5vw;
  background: #11308b;
  color: #fff;
  font-weight: bold;
  font-size: 3.2vw;
  border-radius: 1.2vw;
}
.fv .category {
  margin-bottom: 2vw;
  line-height: 1.2;
  font-size: 10.7vw;
  font-weight: bold;
}
.fv .campaign > .title {
  margin: 0 auto;
  padding: 0.7vw;
  width: 76.9vw;
  border: 0.8vw solid #c50000;
  background: #fff;
  font-size: 3.5vw;
  border-radius: 100vh;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.fv .campaign > .title > span {
  color: #c50000;
}
.fv .campaign .price_warp {
  display: inline-flex;
  align-items: center;
  gap: 1.2vw;
}
.fv .campaign .price_warp .left .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.fv .campaign .price_warp .left .price.strikethrough::before, .fv .campaign .price_warp .left .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.fv .campaign .price_warp .left .price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.fv .campaign .price_warp .left .price .number {
  font-size: 5.6vw;
  color: #3ba7d8;
}
.fv .campaign .price_warp .left .price .unit {
  line-height: 1;
  font-size: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fv .campaign .price_warp .left .price .unit span {
  font-size: 1.5vw;
}
.fv .campaign .price_warp .left .arrow {
  position: relative;
  margin: 0 3vw 0 0;
  padding: 1vw 2vw;
  background: #11308b;
  font-size: 2.5vw;
  color: #fff;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
}
.fv .campaign .price_warp .left .arrow::after {
  position: absolute;
  right: calc(-3vw + 1px);
  top: 0;
  width: 3vw;
  height: 100%;
  background: #11308b;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
}
.fv .campaign .price_warp .right .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
}
.fv .campaign .price_warp .right .price .number {
  font-size: 13.8vw;
  color: #c50000;
}
.fv .campaign .price_warp .right .price .unit {
  line-height: 1;
  font-size: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fv .campaign .price_warp .right .price .unit span {
  font-size: 3vw;
}
.fv .campaign .notes {
  padding: 0 3.8vw;
  text-align: right;
  font-size: 2.5vw;
}
.fv .price_wrap {
  display: inline-flex;
  flex-direction: column;
}
.fv .price_wrap .top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 4.3vw;
  gap: 3.5vw;
}
.fv .price_wrap .top .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
}
.fv .price_wrap .top .price .number {
  font-size: 8.2vw;
  color: #3ba7d8;
}
.fv .price_wrap .top .price .unit {
  line-height: 1;
  font-size: 4.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fv .price_wrap .top .price .unit span {
  font-size: 1.5vw;
}
.fv .price_wrap .top .price.strikethrough::before, .fv .price_wrap .top .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.8vw);
  width: calc(100% + 3.4vw);
  height: 2px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.fv .price_wrap .top .price.strikethrough::after {
  top: calc(50% + 0.8vw);
}
.fv .price_wrap .middle {
  display: flex;
  align-items: center;
}
.fv .price_wrap .middle .items {
  margin-right: 1.5vw;
  padding: 0.4vw 2vw;
  background: #3ba7d8;
  font-size: 8.2vw;
  font-weight: bold;
  color: #fff;
  border-radius: 1.5vw;
}
.fv .price_wrap .middle .items2 {
  margin-right: 1.5vw;
  padding: 0.8vw 2.5vw;
  border-radius: 1vw;
  background: #c50000;
  font-weight: bold;
  color: #fff;
  font-size: 5.3vw;
  line-height: 1;
}
.fv .price_wrap .middle .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1.2;
}
.fv .price_wrap .middle .price .number {
  font-size: 13.8vw;
  color: #c60000;
}
.fv .price_wrap .middle .price .unit {
  line-height: 1;
  font-size: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fv .price_wrap .middle .price .unit span {
  font-size: 3vw;
}
.fv .price_wrap .bottom {
  margin-top: 1vw;
  padding: 0.3vw;
  background: #009c36;
  color: #fff;
  font-size: 3.8vw;
  font-weight: bold;
}
.fv > .notes {
  margin-top: 2vw;
  padding: 0 3.8vw;
  text-align: right;
  font-size: 2.5vw;
}

@media screen and (min-width: 515px) {
  .fv {
    padding: 0 0 50px;
  }
  .fv .head_text_red {
    padding: 5px;
    font-size: 25px;
  }
  .fv .head_text {
    padding: 10px 20px 15px;
    font-size: 28px;
  }
  .fv .belt {
    margin-bottom: 20px;
    padding: 5px;
    font-size: 25px;
  }
  .fv .tag_list {
    gap: 10px;
    margin-bottom: 5px;
  }
  .fv .tag_list > li {
    padding: 5px 14px;
    font-size: 16px;
    border-radius: 7px;
  }
  .fv .category {
    margin-bottom: 8px;
    font-size: 54px;
  }
  .fv .campaign > .title {
    padding: 5px;
    width: 395px;
    border: 4px solid #c50000;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .fv .campaign .price_warp {
    gap: 10px;
  }
  .fv .campaign .price_warp .left .price.strikethrough::before, .fv .campaign .price_warp .left .price.strikethrough::after {
    top: calc(50% - 3px);
    width: calc(100% + 12px);
    height: 2px;
  }
  .fv .campaign .price_warp .left .price.strikethrough::after {
    top: calc(50% + 3px);
  }
  .fv .campaign .price_warp .left .price .number {
    font-size: 28px;
  }
  .fv .campaign .price_warp .left .price .unit {
    font-size: 16px;
  }
  .fv .campaign .price_warp .left .price .unit span {
    font-size: 6px;
  }
  .fv .campaign .price_warp .left .arrow {
    margin: 0 15px 0 0;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 0 3px 3px 0;
  }
  .fv .campaign .price_warp .left .arrow::after {
    right: -14px;
    width: 15px;
  }
  .fv .campaign .price_warp .right .price .number {
    font-size: 70px;
  }
  .fv .campaign .price_warp .right .price .unit {
    font-size: 38px;
  }
  .fv .campaign .price_warp .right .price .unit span {
    font-size: 16px;
  }
  .fv .campaign .notes {
    padding: 0 20px;
    font-size: 12px;
  }
  .fv .price_wrap .top {
    font-size: 20px;
    gap: 20px;
  }
  .fv .price_wrap .top .price .number {
    font-size: 36px;
  }
  .fv .price_wrap .top .price .unit {
    font-size: 20px;
  }
  .fv .price_wrap .top .price .unit span {
    font-size: 8px;
  }
  .fv .price_wrap .top .price.strikethrough::before, .fv .price_wrap .top .price.strikethrough::after {
    top: calc(50% - 5px);
    width: calc(100% + 20px);
    height: 2px;
  }
  .fv .price_wrap .top .price.strikethrough::after {
    top: calc(50% + 5px);
  }
  .fv .price_wrap .middle .items {
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 40px;
    border-radius: 7px;
  }
  .fv .price_wrap .middle .items2 {
    margin-right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 24px;
  }
  .fv .price_wrap .middle .price .number {
    font-size: 70px;
  }
  .fv .price_wrap .middle .price .unit {
    font-size: 38px;
  }
  .fv .price_wrap .middle .price .unit span {
    font-size: 16px;
  }
  .fv .price_wrap .bottom {
    margin-top: 5px;
    padding: 2px;
    font-size: 19px;
  }
  .fv > .notes {
    margin-top: 10px;
    padding: 0 20px;
    font-size: 12px;
  }
}
.osaka {
  background-color: #E3F9FF;
  padding: 10.2vw 0 11.5vw;
  position: relative;
}
.osaka .guarantee_wrap {
  margin-bottom: 20.5vw;
}
.osaka .guarantee_wrap > .title {
  margin-bottom: 3.8vw;
  text-align: center;
  font-weight: bold;
  font-size: 6.6vw;
}
.osaka .guarantee_wrap .guarantee_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2vw;
}
.osaka .guarantee_wrap .guarantee_list > li {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  padding: 3.5vw 0 2vw;
  border: 0.5vw solid #3ba7d8;
  border-radius: 1.2vw;
  background: #fff;
}
.osaka .guarantee_wrap .guarantee_list > li .image {
  width: 100%;
  height: auto;
  margin-bottom: 2vw;
}
.osaka .guarantee_wrap .guarantee_list > li > .text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.2;
  font-size: 3vw;
  font-weight: bold;
}
.osaka .osaka__title_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80vw;
}
.osaka .osaka__title_wrap .osaka__title {
  font-size: 7.2vw;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 2vw;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}
.osaka .osaka__title_wrap .osaka__title .blue {
  font-size: 6.8vw;
}
.osaka .osaka__title_wrap .osaka__title .orange {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 0 4px;
  background: #FF5F00;
  color: #fff;
}
.osaka .osaka__title_wrap .osaka__image {
  width: 85%;
  position: absolute;
  top: 0;
  right: -1%;
  z-index: 1;
}
.osaka .osaka__desc {
  font-size: 3.5vw;
  font-weight: 500;
  margin: 6vw 0 9vw;
  padding-top: 3vw;
  z-index: 2;
  border-top: 1.2vw solid #3BA7D8;
}
.osaka .osaka__desc .notes {
  margin-top: 3vw;
  font-size: 3vw;
}
.osaka .area_wrap {
  overflow: hidden;
  margin-bottom: 10.2vw;
  border-radius: 2.5vw;
  border: 1px solid #3ba7d8;
  background: #fff;
}
.osaka .area_wrap > .title {
  padding: 2.5vw;
  text-align: center;
  background: #3ba7d8;
  color: #fff;
  font-weight: bold;
  font-size: 5.1vw;
}
.osaka .area_wrap > .contents {
  padding: 6.4vw 3.8vw;
  font-size: 2.8vw;
}
.osaka .area_wrap > .contents .prefecture {
  margin-bottom: 2vw;
  font-size: 4.1vw;
  font-weight: bold;
  color: #3ba7d8;
}
.osaka .area_wrap > .contents .municipalities {
  margin-bottom: 5.6vw;
}

@media screen and (min-width: 515px) {
  .osaka {
    padding: 50px 0 45px;
  }
  .osaka .guarantee_wrap {
    margin-bottom: 100px;
  }
  .osaka .guarantee_wrap > .title {
    margin-bottom: 15px;
    font-size: 32px;
  }
  .osaka .guarantee_wrap .guarantee_list {
    grid-column-gap: 10px;
  }
  .osaka .guarantee_wrap .guarantee_list > li {
    padding: 16px 0 8px;
    border: 3px solid #3ba7d8;
    border-radius: 6px;
  }
  .osaka .guarantee_wrap .guarantee_list > li .image {
    margin-bottom: 8px;
  }
  .osaka .guarantee_wrap .guarantee_list > li > .text {
    font-size: 15px;
  }
  .osaka .osaka__title_wrap {
    height: 400px;
  }
  .osaka .osaka__title_wrap .osaka__title {
    font-size: 34px;
    margin-left: 10px;
  }
  .osaka .osaka__title_wrap .osaka__title .blue {
    font-size: 32px;
  }
  .osaka .osaka__title_wrap .osaka__image {
    width: 393px;
  }
  .osaka .osaka__desc {
    font-size: 20px;
    margin: 25px 0 35px;
    padding-top: 10px;
    border-top: 5px solid #3BA7D8;
  }
  .osaka .osaka__desc .notes {
    margin-top: 10px;
    font-size: 14px;
  }
  .osaka .area_wrap {
    margin-bottom: 50px;
    border-radius: 10px;
  }
  .osaka .area_wrap > .title {
    padding: 12px;
    font-size: 24px;
  }
  .osaka .area_wrap > .contents {
    padding: 25px 20px;
    font-size: 14px;
  }
  .osaka .area_wrap > .contents .prefecture {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .osaka .area_wrap > .contents .municipalities {
    margin-bottom: 25px;
  }
}
.group_cta .attention {
  text-align: center;
  font-weight: bold;
  font-size: 5.6vw;
  color: #C60000;
  animation: blink 1.5s ease-in-out infinite;
}
.group_cta .cta_title {
  font-size: 5.6vw;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.5vw;
}
.group_cta .cta_title::before, .group_cta .cta_title::after {
  content: "";
  width: 2px;
  height: 1.2em;
  background-color: #585858;
  position: absolute;
  left: -0.8em;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
.group_cta .cta_title::after {
  left: auto;
  right: -0.8em;
  transform: translateY(-50%) rotate(30deg);
}
.group_cta .cta_title > span {
  position: relative;
  display: inline-block;
}
.group_cta .cta_title > span::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1vw;
  background: #C60000;
  content: "";
  transition: width 0.8s ease;
}
.group_cta .cta_title.show > span::before {
  width: 100%;
}
.group_cta .message {
  margin-bottom: 6.1vw;
  text-align: center;
  font-size: 4.1vw;
  font-weight: bold;
}
.group_cta .cta_btn {
  overflow: hidden;
  width: 100%;
  height: 30.2vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
.group_cta .cta_btn::after {
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transform: rotate(30deg);
  animation: shine 3s ease-in-out infinite;
  content: "";
}
.group_cta .cta_btn .content {
  position: relative;
  width: 100%;
  padding: 0 15.3vw;
}
.group_cta .cta_btn .content::after {
  position: absolute;
  right: 6.1vw;
  top: 50%;
  width: 5.1vw;
  height: 6.1vw;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
  content: "";
}
.group_cta .cta_btn.call {
  margin-bottom: 6.1vw;
  background: #c60000;
}
.group_cta .cta_btn.call .content::before {
  position: absolute;
  top: 50%;
  left: 4.3vw;
  width: 9.7vw;
  height: 9.7vw;
  background: url(../images/icon_phone_03.svg) no-repeat 50% 50%/contain;
  transform: translateY(-50%);
  content: "";
}
.group_cta .cta_btn.call .content .text_sml {
  font-size: 4.1vw;
}
.group_cta .cta_btn.call .content .text_big {
  font-size: 6.4vw;
}
.group_cta .cta_btn.line {
  background: #00b900;
}
.group_cta .cta_btn.line .content::before {
  position: absolute;
  top: 50%;
  left: 4.3vw;
  width: 10.5vw;
  height: 10.5vw;
  background: url(../images/icon_line_02.svg) no-repeat 50% 50%/contain;
  transform: translateY(-50%);
  content: "";
}
.group_cta .cta_btn.line .content .text_sml {
  font-size: 4.1vw;
}
.group_cta .cta_btn.line .content .text_big {
  font-size: 6.4vw;
}

@media screen and (min-width: 768px) {
  .group_cta .attention {
    font-size: 26px;
  }
  .group_cta .cta_title {
    font-size: 26px;
    margin: 0 auto 10px;
  }
  .group_cta .cta_title::before, .group_cta .cta_title::after {
    width: 2px;
    height: 1.2em;
    background-color: #585858;
    position: absolute;
    left: -0.8em;
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
  }
  .group_cta .cta_title::after {
    left: auto;
    right: -0.8em;
    transform: translateY(-50%) rotate(30deg);
  }
  .group_cta .cta_title > span::before {
    height: 5px;
  }
  .group_cta .message {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .group_cta .cta_btn {
    height: 142px;
    border-radius: 10px;
  }
  .group_cta .cta_btn .content {
    padding: 0 72px;
  }
  .group_cta .cta_btn .content::after {
    right: 28px;
    width: 21px;
    height: 28px;
  }
  .group_cta .cta_btn.call {
    margin-bottom: 28px;
  }
  .group_cta .cta_btn.call .content::before {
    left: 20px;
    width: 45px;
    height: 45px;
  }
  .group_cta .cta_btn.call .content .text_sml {
    font-size: 18px;
  }
  .group_cta .cta_btn.call .content .text_big {
    font-size: 30px;
  }
  .group_cta .cta_btn.line .content::before {
    left: 20px;
    width: 50px;
    height: 50px;
  }
  .group_cta .cta_btn.line .content .text_sml {
    font-size: 18px;
  }
  .group_cta .cta_btn.line .content .text_big {
    font-size: 30px;
  }
}
.satisfy {
  padding: 0;
  background: url(../images/bg_satisfy.png) no-repeat 50% 50%/cover;
}
.satisfy .satisfy_head {
  position: relative;
  padding: 8.9vw 3.8vw;
  background: url(../images/bg_satisfy_head.png) no-repeat 50% 50%/cover;
  text-align: center;
  color: #fff;
  position: relative;
}
.satisfy .satisfy_head::after {
  position: absolute;
  left: 50%;
  bottom: -11vw;
  aspect-ratio: 24/66;
  width: 5.6vw;
  background: url(../images/ico_satisfy.png) no-repeat 0 0/contain;
  content: "";
  transform: translateX(-50%);
}
.satisfy .satisfy_head .text {
  display: inline-block;
  text-align: center;
  background: linear-gradient(90deg, #ffffff 5%, #c3c3c3 20%, #ffffff 35%, #ffffff 65%, #c3c3c3 80%, #ffffff 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6.8vw;
}
.satisfy .satisfy_body {
  padding: 19.2vw 0 10.2vw;
  color: #fff;
  font-size: 4.1vw;
}
.satisfy .satisfy_body .subtitle {
  margin: 0 0 3.8vw;
  text-align: center;
  font-size: 5.1vw;
  font-weight: bold;
}
.satisfy .satisfy_body .image {
  display: block;
  margin: 5.1vw auto;
  width: 71.7%;
  height: auto;
}

@media screen and (min-width: 515px) {
  .satisfy .satisfy_head {
    padding: 45px 20px;
  }
  .satisfy .satisfy_head::after {
    bottom: -62px;
    width: 27px;
  }
  .satisfy .satisfy_head .text {
    font-size: 32px;
  }
  .satisfy .satisfy_body {
    padding: 90px 0 50px;
    font-size: 20px;
  }
  .satisfy .satisfy_body .subtitle {
    margin: 0 0 25px;
    font-size: 24px;
  }
  .satisfy .satisfy_body .image {
    margin: 30px auto;
  }
}
.problem {
  padding: 0;
}
.problem .problem_head {
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
  padding: 10.2vw 3.8vw 5.1vw;
  background: #545454;
  text-align: center;
  filter: drop-shadow(0 0.5vw 1vw rgba(0, 0, 0, 0.45));
}
.problem .problem_head::before {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  height: 14.3vw;
  background: #545454;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.problem .problem_head .text {
  font-size: 6.1vw;
  font-weight: bold;
  color: #fff;
}
.problem .problem_head .text .yellow {
  color: #FFDD00;
}
.problem .problem_body {
  position: relative;
  padding: 25.6vw 0 23vw;
  background: url(../images/bg_problem.png) no-repeat 50% 50%/cover;
}
.problem .problem_body .problem_list > li {
  margin-bottom: 10.2vw;
}
.problem .problem_body .problem_list > li:last-child {
  margin-bottom: 0;
}
.problem .problem_body .problem_list > li .title {
  margin-bottom: 3.5vw;
  text-align: center;
  font-size: 5.8vw;
  font-weight: bold;
}
.problem .problem_body .problem_list > li .image {
  display: block;
  margin: 0 auto 3.8vw;
  width: 77%;
  height: auto;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.problem .problem_body .problem_list > li .textbox {
  padding: 3.8vw;
  background: #fff;
  font-size: 3.5vw;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.problem .problem_body .problem_list > li .textbox .notes {
  margin-top: 2.5vw;
  font-size: 3vw;
}

@media screen and (min-width: 515px) {
  .problem .problem_head {
    padding: 45px 20px 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
  }
  .problem .problem_head::before {
    height: 70px;
  }
  .problem .problem_head .text {
    font-size: 28px;
  }
  .problem .problem_body {
    padding: 120px 0 110px;
  }
  .problem .problem_body .problem_list > li {
    margin-bottom: 50px;
  }
  .problem .problem_body .problem_list > li:last-child {
    margin-bottom: 0;
  }
  .problem .problem_body .problem_list > li .title {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .problem .problem_body .problem_list > li .image {
    margin: 0 auto 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .problem .problem_body .problem_list > li .textbox {
    padding: 20px 30px;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .problem .problem_body .problem_list > li .textbox .notes {
    margin-top: 12px;
    font-size: 14px;
  }
}
.improvement {
  padding: 0;
}
.improvement .improvement_head {
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
  padding: 10.2vw 3.8vw 5.1vw;
  background: #3BA7D8;
  text-align: center;
  filter: drop-shadow(0 0.5vw 1vw rgba(0, 0, 0, 0.45));
}
.improvement .improvement_head::before {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  height: 14.3vw;
  background: #3BA7D8;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.improvement .improvement_head .text {
  font-size: 6.1vw;
  font-weight: bold;
  color: #fff;
}
.improvement .improvement_body {
  position: relative;
  padding: 25.6vw 0 16.6vw;
  background: #fff;
}
.improvement .improvement_body .group_cta {
  margin: 0 0 15.3vw;
}
.improvement .improvement_body .title {
  position: relative;
  margin: 0 0 5.8vw;
  padding: 0 0 7.6vw;
  text-align: center;
  font-size: 7.6vw;
  font-weight: bold;
}
.improvement .improvement_body .title::before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 37.9vw;
  height: 1.2vw;
  background: #3ba7d8;
  transform: translateX(-50%);
  content: "";
}
.improvement .improvement_body .title .blue {
  color: #3BA7D8;
}
.improvement .improvement_body .image {
  width: 100%;
  height: auto;
  margin: 0 0 3.8vw;
}
.improvement .improvement_body .text {
  font-size: 4.1vw;
}

@media screen and (min-width: 515px) {
  .improvement .improvement_head {
    padding: 45px 20px 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
  }
  .improvement .improvement_head::before {
    height: 70px;
  }
  .improvement .improvement_head .text {
    font-size: 28px;
  }
  .improvement .improvement_body {
    padding: 120px 0 85px;
  }
  .improvement .improvement_body .group_cta {
    margin: 0 0 68px;
  }
  .improvement .improvement_body .title {
    margin: 0 0 30px;
    padding: 0 0 40px;
    font-size: 40px;
  }
  .improvement .improvement_body .title::before {
    width: 196px;
    height: 7px;
  }
  .improvement .improvement_body .image {
    margin: 0 0 25px;
  }
  .improvement .improvement_body .text {
    font-size: 21px;
  }
}
.beforeafter {
  padding: 0;
}
.beforeafter > .title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3.3vw 5.8vw;
  padding: 0 0 10.2vw;
  text-align: center;
  font-size: 6.6vw;
  font-weight: bold;
}
.beforeafter > .title::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5.1vw;
  background: url(../images/ttl_beforeafter02.svg) no-repeat 50% 50%/contain;
  content: "";
}
.beforeafter > .title > .image {
  margin-right: 1vw;
  width: 25.3vw;
  height: auto;
  animation: yure 0.2s infinite;
}
.beforeafter .beforeafter_body {
  padding: 0 0 20.5vw;
  background: url(../images/bg_beforeafter.png) no-repeat 0 0;
  background-size: 100% 100%;
}
.beforeafter .beforeafter_body .beforeafter_list {
  margin: 0 -3.8vw;
}
.beforeafter .beforeafter_body .beforeafter_list > li {
  margin-bottom: 12.8vw;
}
.beforeafter .beforeafter_body .beforeafter_list > li:last-child {
  margin-bottom: 0;
}
.beforeafter .beforeafter_body .beforeafter_list > li .before_wrap {
  position: relative;
  padding: 10.2vw 4.1vw 35.8vw;
  background: url(../images/bg_before.png) no-repeat 0 0;
  background-size: 100% 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 23vw), 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 23vw), 0% 100%);
}
.beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .text {
  margin-bottom: 5.1vw;
  text-align: center;
  color: #fff;
  font-size: 4.6vw;
  font-weight: bold;
}
.beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap {
  position: relative;
  width: 72.8vw;
  margin: 0 auto;
}
.beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::before, .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::after {
  position: absolute;
  left: -8.9vw;
  bottom: -8.9vw;
  line-height: 1;
  color: #585858;
  font-size: 12.3vw;
  font-weight: bold;
  text-shadow: 0.2vw 0.2vw 3.8vw rgba(0, 0, 0, 0.25);
  content: "Before";
}
.beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::before {
  -webkit-text-stroke: 1.2vw #fff;
  text-stroke: 1.2vw #fff;
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap {
  position: relative;
  padding: 5.1vw 4.1vw 8.9vw;
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap::before {
  position: absolute;
  left: 50%;
  top: -20.5vw;
  width: 23.5vw;
  background: url(../images/icon_before_arrow.svg) no-repeat 50% 50%/contain;
  aspect-ratio: 92/89;
  content: "";
  transform: translateX(-50%);
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap {
  position: relative;
  width: 100%;
  box-shadow: 0.2vw 0.4vw 3.8vw rgba(0, 0, 0, 0.25);
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::before, .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::after {
  position: absolute;
  right: 0;
  top: -6.4vw;
  line-height: 1;
  color: #3BA7D8;
  font-size: 12.3vw;
  font-weight: bold;
  text-shadow: 0.2vw 0.2vw 3.8vw rgba(0, 0, 0, 0.25);
  content: "After";
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::before {
  -webkit-text-stroke: 1.4vw #fff;
  text-stroke: 1.4vw #fff;
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .text {
  margin-top: 2.5vw;
  text-align: center;
  font-size: 8.4vw;
  font-weight: bold;
}
.beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .notes {
  margin-top: 3.8vw;
  font-size: 3vw;
}
.beforeafter .beforeafter_body .group_cta {
  margin: 0 0 15.3vw;
}
.beforeafter .beforeafter_body .beforeafter_check {
  padding: 5.1vw;
  background: #FFF5DF;
  border-radius: 2vw;
  border: 0.7vw solid #3ba7d8;
}
.beforeafter .beforeafter_body .beforeafter_check .check {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5vw;
  padding: 0 0 3vw;
  border-bottom: 1px solid #817f79;
  font-size: 6.4vw;
  font-weight: bold;
}
.beforeafter .beforeafter_body .beforeafter_check .image {
  margin: 5.1vw 0;
  width: 100%;
  height: auto;
}
.beforeafter .beforeafter_body .beforeafter_check p {
  font-size: 3.5vw;
}
.beforeafter .beforeafter_body .beforeafter_check p .red {
  color: #c50000;
}

@media screen and (min-width: 515px) {
  .beforeafter > .title {
    margin: 0 16px 28px;
    padding: 0 0 40px;
    font-size: 32px;
  }
  .beforeafter > .title::before {
    height: 24px;
  }
  .beforeafter > .title > .image {
    margin-right: 5px;
    width: 118px;
  }
  .beforeafter .beforeafter_body {
    padding: 0 0 80px;
  }
  .beforeafter .beforeafter_body .beforeafter_list {
    margin: 0 -20px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li {
    margin-bottom: 40px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li:last-child {
    margin-bottom: 0;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap {
    padding: 40px 20px 140px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 90px), 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 90px), 0% 100%);
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .text {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap {
    width: 80%;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::before, .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::after {
    left: -35px;
    bottom: -28px;
    font-size: 48px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .before_wrap .image_wrap::before {
    -webkit-text-stroke: 5px #fff;
    text-stroke: 5px #fff;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap {
    padding: 20px 20px 35px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap::before {
    top: -80px;
    width: 92px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap {
    box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.25);
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::before, .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::after {
    top: -26px;
    font-size: 48px;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.25);
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .image_wrap::before {
    -webkit-text-stroke: 6px #fff;
    text-stroke: 6px #fff;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .text {
    margin-top: 12px;
    font-size: 36px;
  }
  .beforeafter .beforeafter_body .beforeafter_list > li .after_wrap .notes {
    margin-top: 15px;
    font-size: 14px;
  }
  .beforeafter .beforeafter_body .group_cta {
    margin: 0 0 68px;
  }
  .beforeafter .beforeafter_body .beforeafter_check {
    padding: 30px 20px;
    border-radius: 10px;
    border-width: 3px;
  }
  .beforeafter .beforeafter_body .beforeafter_check .check {
    margin-bottom: 10px;
    padding: 0 0 15px;
    font-size: 30px;
  }
  .beforeafter .beforeafter_body .beforeafter_check .image {
    margin: 25px 0;
  }
  .beforeafter .beforeafter_body .beforeafter_check p {
    font-size: 18px;
  }
}
.merit {
  padding: 0;
}
.merit .title {
  position: relative;
  padding: 4vw 3.8vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 6.6vw;
  font-weight: bold;
  color: #fff;
}
.merit .title > span {
  position: relative;
  display: inline-block;
}
.merit .title > span::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1vw;
  background: #C60000;
  content: "";
  transition: width 0.8s ease;
}
.merit .title > span > .number {
  line-height: 1;
  font-size: 10.7vw;
  color: #ffdf4f;
}
.merit .title.show > span::before {
  width: 100%;
}
.merit .title::before {
  position: absolute;
  left: 50%;
  bottom: calc(-8.9vw + 1px);
  width: 13.8vw;
  height: 8.9vw;
  background: #3ba7d8;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
}
.merit .merit_body {
  padding: 56.4vw 0 16.4vw;
  background: url(../images/bg_merit.png) no-repeat 50% 50%/cover;
}
.merit .merit_body .merit_list > li {
  position: relative;
  margin-bottom: 39.4vw;
  padding: 35vw 4.1vw 8.9vw;
  border-radius: 2.5vw;
  background: #fff;
  filter: drop-shadow(0 0.5vw 0.5vw rgba(0, 0, 0, 0.25));
}
.merit .merit_body .merit_list > li:last-child {
  margin-bottom: 0;
}
.merit .merit_body .merit_list > li .image {
  position: absolute;
  left: 50%;
  top: 0;
  width: 70%;
  height: auto;
  transform: translate(-50%, -50%);
}
.merit .merit_body .merit_list > li h3 {
  margin-bottom: 5.1vw;
  text-align: center;
  font-size: 6.4vw;
  font-weight: bold;
  color: #C60000;
}
.merit .merit_body .merit_list > li h3 > span {
  position: relative;
  display: inline-block;
}
.merit .merit_body .merit_list > li h3 > span::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1vw;
  background: #C60000;
  content: "";
  transition: width 0.8s ease;
}
.merit .merit_body .merit_list > li h3 > span.show::before {
  width: 100%;
}
.merit .merit_body .merit_list > li .text {
  margin-bottom: 5.1vw;
  text-align: center;
  font-size: 3.5vw;
}
.merit .merit_body .merit_list > li .check_list {
  margin: 0 auto;
  display: table;
  min-width: 54vw;
}
.merit .merit_body .merit_list > li .check_list > li {
  position: relative;
  margin-bottom: 2vw;
  padding: 0 0 0 1.8em;
  font-size: 4.1vw;
}
.merit .merit_body .merit_list > li .check_list > li:last-child {
  margin-bottom: 0;
}
.merit .merit_body .merit_list > li .check_list > li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/icon_merit_check.svg) no-repeat 50% 50%/contain;
  content: "";
}
.merit .merit_body .merit_list > li .notes {
  margin-top: 2vw;
  text-align: right;
  font-size: 3vw;
}

@media screen and (min-width: 515px) {
  .merit .title {
    padding: 24px 20px;
    font-size: 34px;
  }
  .merit .title > span::before {
    height: 5px;
  }
  .merit .title > span > .number {
    font-size: 50px;
  }
  .merit .title::before {
    bottom: -45px;
    width: 70px;
    height: 46px;
  }
  .merit .merit_body {
    padding: 290px 0 80px;
  }
  .merit .merit_body .merit_list > li {
    margin-bottom: 200px;
    padding: 190px 20px 45px;
    border-radius: 10px;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.25));
  }
  .merit .merit_body .merit_list > li:last-child {
    margin-bottom: 0;
  }
  .merit .merit_body .merit_list > li h3 {
    margin-bottom: 25px;
    font-size: 32px;
  }
  .merit .merit_body .merit_list > li h3 > span::before {
    height: 5px;
  }
  .merit .merit_body .merit_list > li .text {
    margin-bottom: 25px;
    font-size: 18px;
  }
  .merit .merit_body .merit_list > li .check_list {
    min-width: 270px;
  }
  .merit .merit_body .merit_list > li .check_list > li {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .merit .merit_body .merit_list > li .check_list > li:last-child {
    margin-bottom: 0;
  }
  .merit .merit_body .merit_list > li .notes {
    margin-top: 10px;
    font-size: 14px;
  }
}
.plan {
  padding: 0;
}
.plan > .title {
  position: relative;
  padding: 6.4vw 3.8vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 6.6vw;
  font-weight: bold;
  color: #fff;
}
.plan > .title::before {
  position: absolute;
  left: 50%;
  bottom: calc(-8.9vw + 1px);
  width: 13.8vw;
  height: 8.9vw;
  background: #3ba7d8;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
}
.plan .plan_body {
  padding: 19.2vw 0 10.2vw;
}
.plan .plan_body .main__container + .main__container {
  margin-top: 10.2vw;
  padding-top: 10.2vw;
  border-top: 1vw solid #3ba7d8;
}
.plan .plan_body .price_title {
  margin-bottom: 2.5vw;
  text-align: center;
  font-weight: bold;
  font-size: 8.2vw;
}
.plan .plan_body .price_subtitle {
  margin-bottom: 4.1vw;
  padding: 1.4vw 0;
  text-align: center;
  border-top: 1px solid #C60000;
  border-bottom: 1px solid #C60000;
  color: #C60000;
  font-weight: bold;
  font-size: 4.1vw;
}
.plan .plan_body .price_subtitle span {
  display: inline-block;
  animation: scalePulse 2s ease-in-out infinite;
}
.plan .plan_body .price_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 6.1vw;
  gap: 2vw;
}
.plan .plan_body .price_list > li {
  overflow: hidden;
  border: 1px solid #3ba7d8;
  border-radius: 2vw;
}
.plan .plan_body .price_list > li .type {
  padding: 3vw 1.2vw;
  text-align: center;
  background: #3ba7d8;
  font-weight: bold;
  font-size: 3.5vw;
  color: #fff;
}
.plan .plan_body .price_list > li .contents {
  padding: 3.8vw 1.2vw 2.5vw;
  text-align: center;
}
.plan .plan_body .price_list > li .contents .default_price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .head {
  font-size: 3vw;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price .number {
  font-size: 8.7vw;
  color: #3ba7d8;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price .unit {
  line-height: 1;
  font-size: 4.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price .unit span {
  font-size: 2vw;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .number {
  font-size: 5.1vw;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .unit {
  font-size: 2.8vw;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .unit span {
  font-size: 1.5vw;
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::before, .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.plan .plan_body .price_list > li .contents .campaign_wrap {
  position: relative;
  margin-top: 2.5vw;
  padding-top: 6.1vw;
}
.plan .plan_body .price_list > li .contents .campaign_wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6.9vw;
  height: 3.5vw;
  background: #c50000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list > li .contents .campaign_wrap .apply_text {
  display: inline-block;
  min-width: 85%;
  padding: 0.1vw 1vw;
  border: 1px solid #c50000;
  font-size: 2.5vw;
  font-weight: bold;
  border-radius: 100vh;
}
.plan .plan_body .price_list > li .contents .campaign_wrap .apply_text span {
  color: #c50000;
}
.plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .number {
  font-size: 8.7vw;
  color: #c50000;
}
.plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 4.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .unit span {
  font-size: 2vw;
}
.plan .plan_body .price_list > li .contents .add_text {
  display: inline-block;
  min-width: 85%;
  text-align: center;
  background: #009C36;
  color: #fff;
  font-size: 3vw;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .add_price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price .number {
  font-size: 3.5vw;
  color: #3BA7D8;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price .unit {
  line-height: 1;
  font-size: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price .unit span {
  font-size: 1vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .number {
  font-size: 3.5vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .unit {
  font-size: 2vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .unit span {
  font-size: 1vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.4vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::after {
  top: calc(50% + 0.4vw);
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price::before {
  position: absolute;
  top: 50%;
  left: -1.8vw;
  width: 1.2vw;
  height: 2.5vw;
  background: #C60000;
  content: "";
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .number {
  font-size: 5.1vw;
  color: #C60000;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit span {
  font-size: 0.8vw;
}
.plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit2 {
  font-size: 3vw;
}
.plan .plan_body .price_list > li .contents .text {
  margin-top: 1vw;
  font-size: 3vw;
}
.plan .plan_body .set_wrap {
  overflow: hidden;
  margin: 6.1vw 0 10.2vw;
  border: 1px solid #3ba7d8;
  border-radius: 2vw;
}
.plan .plan_body .set_wrap > .title {
  padding: 3vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 4.8vw;
  font-weight: bold;
  color: #fff;
}
.plan .plan_body .set_wrap > .contents {
  padding: 7.6vw 3.8vw 7.6vw;
}
.plan .plan_body .set_wrap > .contents .type {
  position: relative;
  margin-bottom: 3.8vw;
  padding-bottom: 2.5vw;
  text-align: center;
  font-size: 5.1vw;
  font-weight: normal;
}
.plan .plan_body .set_wrap > .contents .type::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 14.8vw;
  height: 0.7vw;
  background: #3ba7d8;
  transform: translateX(-50%);
  content: "";
}
.plan .plan_body .set_wrap > .contents .set_list {
  margin-bottom: 7.6vw;
}
.plan .plan_body .set_wrap > .contents .set_list > li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3vw;
  font-size: 4.8vw;
}
.plan .plan_body .set_wrap > .contents .set_list > li:last-child {
  margin-bottom: 0;
}
.plan .plan_body .set_wrap > .contents .set_list > li .price {
  font-size: 6.1vw;
  font-weight: bold;
  color: #c60000;
}
.plan .plan_body .set_wrap > .contents .set_list > li .gain {
  position: relative;
  margin-left: 4vw;
  padding: 2.5vw 1.6vw;
  background: #3ba7d8;
  color: #fff;
  font-weight: bold;
  font-size: 4.1vw;
  border-radius: 1.2vw;
}
.plan .plan_body .set_wrap > .contents .set_list > li .gain::before {
  position: absolute;
  left: calc(-2.5vw + 1px);
  top: 50%;
  width: 2.5vw;
  height: 2vw;
  background: #3ba7d8;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  content: "";
  transform: translateY(-50%);
}
.plan .plan_body .set_wrap > .contents .notes {
  display: table;
  margin: 0 auto;
  font-size: 2.5vw;
}
.plan .plan_body .set_wrap > .contents .off_text {
  margin-top: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.8vw;
}
.plan .plan_body .set_wrap > .contents .off_text .balloon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.7vw;
  line-height: 1;
  background: #c50000;
  font-size: 5.1vw;
  font-weight: bold;
  color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100vh;
}
.plan .plan_body .set_wrap > .contents .off_text .balloon::before {
  position: absolute;
  top: 50%;
  right: -1.9vw;
  width: 2vw;
  height: 2.5vw;
  background: #c50000;
  content: "";
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.plan .plan_body .set_wrap > .contents .off_text .text {
  font-size: 6.1vw;
  font-weight: bold;
}
.plan .plan_body .comparison_wrap {
  margin-bottom: 10.2vw;
}
.plan .plan_body .comparison_wrap > .title {
  margin-bottom: 6.4vw;
  text-align: center;
  font-size: 8.2vw;
  font-weight: bold;
  color: #3BA7D8;
}
.plan .plan_body .comparison_wrap > .image {
  width: 100%;
  height: auto;
}
.plan .plan_body .comparison_wrap .notes {
  margin-top: 5.1vw;
  font-size: 3vw;
  color: #585858;
}
.plan .plan_body .group_cta {
  margin: 0 0 6.1vw;
}
.plan .plan_body .price_list02 > li {
  margin-bottom: 10.2vw;
  overflow: hidden;
  border: 1px solid #3ba7d8;
  border-radius: 2vw;
}
.plan .plan_body .price_list02 > li:last-child {
  margin-bottom: 0;
}
.plan .plan_body .price_list02 > li > .title {
  padding: 3vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 4.8vw;
  font-weight: bold;
  color: #fff;
}
.plan .plan_body .price_list02 > li > .contents {
  padding: 3.5vw 3.8vw;
  text-align: center;
}
.plan .plan_body .price_list02 > li > .contents .image {
  margin-bottom: 3.8vw;
  width: 100%;
  height: auto;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .head {
  font-size: 6.1vw;
  font-weight: bold;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price {
  margin-bottom: 1.2vw;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price .number {
  line-height: 1.2;
  font-size: 13.3vw;
  color: #3ba7d8;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price .unit {
  line-height: 1;
  font-size: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price .unit span {
  font-size: 3vw;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough {
  position: relative;
  margin-bottom: 0;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::before, .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.9vw);
  width: calc(100% + 5.4vw);
  height: 2px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::after {
  top: calc(50% + 0.9vw);
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .number {
  font-size: 8.8vw;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .unit {
  font-size: 4.8vw;
}
.plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .unit span {
  font-size: 2vw;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap {
  position: relative;
  margin-top: 3.1vw;
  padding-top: 9.7vw;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9.7vw;
  height: 5.1vw;
  background: #c50000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .apply_text {
  display: inline-block;
  min-width: 85%;
  padding: 1.2vw 2vw;
  border: 1px solid #c50000;
  font-size: 4.6vw;
  font-weight: bold;
  border-radius: 100vh;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .apply_text span {
  color: #c50000;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .number {
  line-height: 1.2;
  font-size: 16.2vw;
  color: #c50000;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 7.8vw;
  padding-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .unit span {
  font-size: 3vw;
}
.plan .plan_body .price_list02 > li > .contents .add_text {
  display: inline-block;
  min-width: 85%;
  font-size: 3.8vw;
  color: #fff;
  font-weight: bold;
  background: #009C36;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .number {
  font-size: 6.1vw;
  color: #3BA7D8;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .unit {
  line-height: 1;
  font-size: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .unit span {
  font-size: 1.4vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .number {
  font-size: 6.1vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .unit {
  font-size: 3vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .unit span {
  font-size: 1.4vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price::before {
  position: absolute;
  top: 50%;
  left: -3.4vw;
  width: 2vw;
  height: 4.1vw;
  background: #C60000;
  content: "";
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .number {
  font-size: 7.6vw;
  color: #C60000;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 4.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit span {
  font-size: 1.6vw;
}
.plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit2 {
  font-size: 5.6vw;
}
.plan .plan_body .price_list02 > li > .contents .text {
  margin-bottom: 1.2vw;
  font-size: 3.8vw;
}
.plan .plan_body .option_service {
  margin: 6.1vw 0 8.9vw;
  padding: 10.2vw 3.8vw;
  background: #3ba7d8;
  border-radius: 2vw;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.plan .plan_body .option_service > .title {
  margin-bottom: 6.4vw;
  text-align: center;
  font-size: 6.1vw;
  color: #fff;
  font-weight: bold;
}
.plan .plan_body .option_service > .column {
  padding: 10.2vw 3.8vw;
  background: #fff;
  border-radius: 2vw;
  text-align: center;
}
.plan .plan_body .option_service > .column + .column {
  margin-top: 6.1vw;
}
.plan .plan_body .option_service > .column > .title {
  margin-bottom: 6.4vw;
}
.plan .plan_body .option_service > .column > .title > .sub {
  display: block;
  margin-bottom: 3.8vw;
  font-size: 3.5vw;
  font-weight: normal;
  color: #009C36;
}
.plan .plan_body .option_service > .column > .title > .main {
  display: block;
  font-size: 7.1vw;
  font-weight: bold;
}
.plan .plan_body .option_service > .column .campaign_banner .image {
  width: 100%;
  height: auto;
}
.plan .plan_body .option_service > .column .campaign_notes {
  margin-top: 2.5vw;
  margin-bottom: 6vw;
  font-size: 2.5vw;
}
.plan .plan_body .option_service > .column .option_price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12.8vw;
  font-weight: bold;
}
.plan .plan_body .option_service > .column .option_price .number {
  line-height: 1.2;
  font-size: 14.8vw;
  color: #C60000;
}
.plan .plan_body .option_service > .column .option_price .unit {
  line-height: 1;
  font-size: 8.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .option_service > .column .option_price .unit span {
  font-size: 3vw;
}
.plan .plan_body .option_service > .column .option_price .unit2 {
  line-height: 1;
  font-size: 10.4vw;
}
.plan .plan_body .option_service > .column .option_price.strikethrough {
  position: relative;
  margin-bottom: 0;
}
.plan .plan_body .option_service > .column .option_price.strikethrough::before, .plan .plan_body .option_service > .column .option_price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .option_service > .column .option_price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.plan .plan_body .option_service > .column .option_price.strikethrough .number {
  font-size: 6.1vw;
  color: #3ba7d8;
}
.plan .plan_body .option_service > .column .option_price.strikethrough .unit {
  font-size: 3.5vw;
}
.plan .plan_body .option_service > .column .option_price.strikethrough .unit span {
  font-size: 1.5vw;
}
.plan .plan_body .option_service > .column .option_price.strikethrough .unit2 {
  font-size: 4.2vw;
}
.plan .plan_body .option_service > .column .campaign_wrap {
  position: relative;
  margin-top: 3.1vw;
  padding-top: 9.7vw;
}
.plan .plan_body .option_service > .column .campaign_wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9.7vw;
  height: 5.1vw;
  background: #c50000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .option_service > .column .campaign_wrap .apply_text {
  display: inline-block;
  padding: 1.2vw 2vw;
  border: 1px solid #c50000;
  font-size: 4.6vw;
  font-weight: bold;
  border-radius: 100vh;
}
.plan .plan_body .option_service > .column .campaign_wrap .apply_text span {
  color: #c50000;
}
.plan .plan_body .option_service > .column .campaign_wrap .campaign_price {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .option_service > .column .campaign_wrap .campaign_price .number {
  line-height: 1.2;
  font-size: 23.8vw;
  color: #c50000;
}
.plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 8.7vw;
  padding-top: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit span {
  font-size: 3.5vw;
}
.plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit2 {
  line-height: 1;
  font-size: 11.2vw;
  padding-top: 6vw;
}
.plan .plan_body .option_service > .column .knowledge {
  margin-bottom: 10.2vw;
  text-align: left;
}
.plan .plan_body .option_service > .column .knowledge:last-child {
  margin-bottom: 0;
}
.plan .plan_body .option_service > .column .knowledge > .title {
  margin-bottom: 2.5vw;
  padding: 1vw;
  text-align: center;
  font-size: 4.1vw;
  color: #fff;
  background: #c50000;
}
.plan .plan_body .option_service > .column .knowledge > .caution {
  margin-bottom: 3.5vw;
  text-align: center;
  color: #c50000;
  font-size: 3.8vw;
}
.plan .plan_body .option_service > .column .knowledge > .caution::before, .plan .plan_body .option_service > .column .knowledge > .caution::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.2em;
  background: url(../images/icon_caution.svg) no-repeat 50% 50%/contain;
  content: "";
}
.plan .plan_body .option_service > .column .knowledge p {
  margin-bottom: 1.5em;
  font-size: 3.8vw;
}
.plan .plan_body .option_service > .column .knowledge p:last-child {
  margin-bottom: 0;
}
.plan .plan_body .option_service > .column .knowledge .image {
  width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}
.plan .plan_body .option_service > .column .option_merit {
  text-align: left;
}
.plan .plan_body .option_service > .column .option_merit > .title {
  margin-bottom: 2.5vw;
  font-size: 5.1vw;
  font-weight: bold;
}
.plan .plan_body .option_service > .column .option_merit .merit_list {
  margin-bottom: 12.8vw;
  counter-reset: number;
}
.plan .plan_body .option_service > .column .option_merit .merit_list > li {
  display: flex;
  align-items: baseline;
  margin-bottom: 3.8vw;
  font-size: 3.5vw;
  counter-increment: number;
}
.plan .plan_body .option_service > .column .option_merit .merit_list > li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.2em;
  height: 1.2em;
  aspect-ratio: 1/1;
  margin-right: 0.4em;
  background: #3ba7d8;
  color: #fff;
  font-weight: bold;
  border-radius: 100vh;
  content: counter(number);
}
.plan .plan_body .option_service > .column .option_merit .merit_list > li:last-child {
  margin-bottom: 0;
}
.plan .plan_body .option_service > .column .option_check {
  padding: 6.1vw 3.8vw;
  background: #fff5df;
  border-radius: 2vw;
  font-size: 3.5vw;
  text-align: left;
}
.plan .plan_body .option_service > .column .option_check > .title {
  position: relative;
  margin-bottom: 2.5vw;
  padding: 10.7vw 0 2.5vw;
  border-bottom: 1px solid #817f79;
  text-align: center;
  font-size: 4.6vw;
  font-weight: bold;
}
.plan .plan_body .option_service > .column .option_check > .title::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20vw;
  aspect-ratio: 78/31;
  background: url(../images/icon_check.svg) no-repeat 0 0/contain;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .business_use {
  margin-bottom: 6.1vw;
}
.plan .plan_body .business_use > .title {
  margin-bottom: 6.4vw;
  text-align: center;
  font-size: 8.2vw;
}
.plan .plan_body .business_use .business_use_list > li {
  margin-bottom: 10.2vw;
  overflow: hidden;
  border: 1px solid #3ba7d8;
  border-radius: 2vw;
}
.plan .plan_body .business_use .business_use_list > li:last-child {
  margin-bottom: 0;
}
.plan .plan_body .business_use .business_use_list > li > .title {
  padding: 3vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 4.8vw;
  font-weight: bold;
  color: #fff;
}
.plan .plan_body .business_use .business_use_list > li > .contents {
  padding: 3.5vw 3.8vw;
  text-align: center;
}
.plan .plan_body .business_use .business_use_list > li > .contents .image {
  margin-bottom: 3.8vw;
  width: 100%;
  height: auto;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .head {
  font-size: 6.1vw;
  font-weight: bold;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price {
  margin-bottom: 1.2vw;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .number {
  line-height: 1.2;
  font-size: 13.3vw;
  color: #3ba7d8;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .unit {
  line-height: 1;
  font-size: 7.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .unit span {
  font-size: 3vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough {
  position: relative;
  margin-bottom: 0;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::before, .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.9vw);
  width: calc(100% + 5.4vw);
  height: 2px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::after {
  top: calc(50% + 0.9vw);
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .number {
  font-size: 8.8vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .unit {
  font-size: 4.8vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .unit span {
  font-size: 2vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap {
  position: relative;
  margin-top: 3.1vw;
  padding-top: 9.7vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9.7vw;
  height: 5.1vw;
  background: #c50000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .apply_text {
  display: inline-block;
  min-width: 85%;
  padding: 1.2vw 2vw;
  border: 1px solid #c50000;
  font-size: 4.6vw;
  font-weight: bold;
  border-radius: 100vh;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .apply_text span {
  color: #c50000;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .number {
  line-height: 1.2;
  font-size: 16.2vw;
  color: #c50000;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 7.8vw;
  padding-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .unit span {
  font-size: 3vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_text {
  display: inline-block;
  min-width: 85%;
  font-size: 3.8vw;
  color: #fff;
  font-weight: bold;
  background: #009C36;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .number {
  font-size: 6.1vw;
  color: #3BA7D8;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .unit {
  line-height: 1;
  font-size: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .unit span {
  font-size: 1.4vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .number {
  font-size: 6.1vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .unit {
  font-size: 3vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .unit span {
  font-size: 1.4vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price::before {
  position: absolute;
  top: 50%;
  left: -3.4vw;
  width: 2vw;
  height: 4.1vw;
  background: #C60000;
  content: "";
  transform: translateY(-50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0% 100%);
          clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .number {
  font-size: 7.6vw;
  color: #C60000;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 4.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit span {
  font-size: 1.6vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit2 {
  font-size: 5.6vw;
}
.plan .plan_body .business_use .business_use_list > li > .contents .text {
  margin-bottom: 1.2vw;
  font-size: 3.8vw;
}
.plan .plan_body .business_use .notes {
  margin-top: 2.5vw;
  font-size: 2.5vw;
}
.plan .plan_body .business_use > .text {
  margin-bottom: 6.4vw;
  font-size: 3.8vw;
}
.plan .plan_body .business_use .case_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 10.2vw;
  gap: 2vw;
}
.plan .plan_body .business_use .case_list > li {
  text-align: center;
}
.plan .plan_body .business_use .case_list > li img {
  margin-bottom: 3vw;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.plan .plan_body .business_use .case_list > li .case {
  font-size: 4.6vw;
  font-weight: bold;
}
.plan .plan_body .business_use .case_list > li .ex {
  font-size: 2.5vw;
  color: #009C36;
}
.plan .plan_body .business_use > .plan_title {
  margin-bottom: 2.5vw;
  text-align: center;
  font-size: 7.1vw;
  font-weight: bold;
}
.plan .plan_body .option_service02 {
  margin: 0 0 10.2vw;
  padding: 10.2vw 3.8vw;
  background: #3ba7d8;
  border-radius: 2vw;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.plan .plan_body .option_service02:last-child {
  margin-bottom: 0;
}
.plan .plan_body .option_service02 > .title {
  margin-bottom: 6.4vw;
  text-align: center;
  font-size: 6.1vw;
  color: #fff;
  font-weight: bold;
}
.plan .plan_body .option_service02 > .column {
  padding: 10.2vw 3.8vw;
  background: #fff;
  border-radius: 2vw;
  text-align: center;
}
.plan .plan_body .option_service02 > .column + .column {
  margin-top: 6.1vw;
}
.plan .plan_body .option_service02 > .column .option_list > li {
  margin-bottom: 10.2vw;
  padding-bottom: 10.2vw;
  border-bottom: 0.7vw solid #cdcdcd;
}
.plan .plan_body .option_service02 > .column .option_list > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.plan .plan_body .option_service02 > .column .option_list > li > .title {
  margin-bottom: 6.4vw;
}
.plan .plan_body .option_service02 > .column .option_list > li > .title > .sub {
  display: block;
  margin-bottom: 3.8vw;
  font-size: 3.5vw;
  font-weight: normal;
  color: #009C36;
}
.plan .plan_body .option_service02 > .column .option_list > li > .title > .main {
  display: block;
  font-size: 7.1vw;
  font-weight: bold;
}
.plan .plan_body .option_service02 > .column .option_list > li > .image {
  margin-bottom: 8vw;
  width: 100%;
  height: auto;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12.8vw;
  font-weight: bold;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price:last-child {
  margin-bottom: 0;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price .number {
  line-height: 1.2;
  font-size: 14.8vw;
  color: #3ba7d8;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price .unit {
  line-height: 1;
  font-size: 8.2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price .unit span {
  font-size: 3vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price .unit2 {
  line-height: 1;
  font-size: 10.4vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough {
  position: relative;
  margin-bottom: 0;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::before, .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::after {
  position: absolute;
  left: 50%;
  top: calc(50% - 0.5vw);
  width: calc(100% + 1.2vw);
  height: 1px;
  background: #cc2020;
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::after {
  top: calc(50% + 0.5vw);
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .number {
  font-size: 6.1vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit {
  font-size: 3.5vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit span {
  font-size: 1.5vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit2 {
  font-size: 4.2vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap {
  position: relative;
  margin-top: 3.1vw;
  padding-top: 9.7vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 9.7vw;
  height: 5.1vw;
  background: #c50000;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
  transform: translateX(-50%);
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .apply_text {
  display: inline-block;
  padding: 1.2vw 2vw;
  border: 1px solid #c50000;
  font-size: 4.6vw;
  font-weight: bold;
  border-radius: 100vh;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .apply_text span {
  color: #c50000;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .number {
  line-height: 1.2;
  font-size: 23.8vw;
  color: #c50000;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit {
  line-height: 1;
  font-size: 8.7vw;
  padding-top: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit span {
  font-size: 3.5vw;
}
.plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit2 {
  line-height: 1;
  font-size: 11.2vw;
  padding-top: 6vw;
}
.plan .plan_body .gift_wrap {
  margin-bottom: 10.2vw;
}
.plan .plan_body .gift_wrap .image {
  width: 100%;
  height: auto;
}
.plan .plan_body .gift_wrap .notes {
  margin-top: 2.5vw;
  font-size: 2.5vw;
}
.plan .plan_body .payment_wrap > .title {
  margin-bottom: 6.4vw;
  text-align: center;
  font-size: 8.2vw;
}
.plan .plan_body .payment_wrap .payment_box {
  padding: 5.1vw 6.6vw 0;
  border: 1px solid #585858;
  border-radius: 3.8vw;
}
.plan .plan_body .payment_wrap .payment_box .text {
  text-align: center;
  font-size: 4.1vw;
}
.plan .plan_body .payment_wrap .payment_box .payment_list > li {
  padding: 6.4vw 0;
  border-bottom: 1px solid #3ba7d8;
  font-size: 6.1vw;
  font-weight: bold;
}
.plan .plan_body .payment_wrap .payment_box .payment_list > li:last-child {
  border-bottom: none;
}
.plan .plan_body .payment_wrap .payment_box .payment_list > li.credit {
  font-size: 4.6vw;
}
.plan .plan_body .payment_wrap .payment_box .payment_list > li img {
  max-width: 100%;
  width: auto;
  height: auto;
}

@media screen and (min-width: 515px) {
  .plan > .title {
    padding: 35px 20px;
    font-size: 34px;
  }
  .plan > .title::before {
    bottom: -45px;
    width: 70px;
    height: 46px;
  }
  .plan .plan_body {
    padding: 100px 0 50px;
  }
  .plan .plan_body .main__container + .main__container {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 5px solid #3ba7d8;
  }
  .plan .plan_body .price_title {
    margin-bottom: 15px;
    font-size: 40px;
  }
  .plan .plan_body .price_subtitle {
    margin-bottom: 20px;
    padding: 4px 0;
    font-size: 20px;
  }
  .plan .plan_body .price_list {
    margin-bottom: 30px;
    gap: 10px;
  }
  .plan .plan_body .price_list > li {
    border-radius: 12px;
  }
  .plan .plan_body .price_list > li .type {
    padding: 14px 10px;
    font-size: 16px;
  }
  .plan .plan_body .price_list > li .contents {
    padding: 20px 10px 15px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap {
    gap: 10px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .head {
    font-size: 14px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price .number {
    font-size: 42px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price .unit {
    font-size: 24px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price .unit span {
    font-size: 12px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .number {
    font-size: 26px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .unit {
    font-size: 15px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough .unit span {
    font-size: 6px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::before, .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::after {
    top: calc(50% - 3px);
    width: calc(100% + 12px);
    height: 2px;
  }
  .plan .plan_body .price_list > li .contents .default_price_wrap .default_price.strikethrough::after {
    top: calc(50% + 3px);
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap {
    margin-top: 14px;
    padding-top: 34px;
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap::before {
    width: 35px;
    height: 20px;
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap .apply_text {
    padding: 3px 7px;
    font-size: 12px;
    border: 2px solid #c50000;
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .number {
    font-size: 42px;
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .unit {
    font-size: 24px;
  }
  .plan .plan_body .price_list > li .contents .campaign_wrap .campaign_price .unit span {
    font-size: 12px;
  }
  .plan .plan_body .price_list > li .contents .add_text {
    font-size: 16px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap {
    gap: 15px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price .number {
    font-size: 18px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price .unit {
    font-size: 10px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price .unit span {
    font-size: 4px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .number {
    font-size: 18px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .unit {
    font-size: 10px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough .unit span {
    font-size: 4px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% - 2px);
    width: calc(100% + 8px);
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% + 2px);
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price::before {
    left: -7px;
    width: 5px;
    height: 10px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .number {
    font-size: 24px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit {
    font-size: 15px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit span {
    font-size: 6px;
  }
  .plan .plan_body .price_list > li .contents .add_price_wrap .campaign_price .unit2 {
    font-size: 20px;
  }
  .plan .plan_body .price_list > li .contents .text {
    margin-top: 14px;
    font-size: 16px;
  }
  .plan .plan_body .faq {
    padding: 0;
  }
  .plan .plan_body .set_wrap {
    margin: 30px 0 40px;
    border-radius: 12px;
  }
  .plan .plan_body .set_wrap > .title {
    padding: 14px;
    font-size: 26px;
  }
  .plan .plan_body .set_wrap > .contents {
    padding: 40px 20px 40px;
  }
  .plan .plan_body .set_wrap > .contents .type {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 26px;
  }
  .plan .plan_body .set_wrap > .contents .type::after {
    width: 76px;
    height: 5px;
  }
  .plan .plan_body .set_wrap > .contents .set_list {
    margin-bottom: 45px;
  }
  .plan .plan_body .set_wrap > .contents .set_list > li {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .plan .plan_body .set_wrap > .contents .set_list > li:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .set_wrap > .contents .set_list > li .price {
    font-size: 30px;
  }
  .plan .plan_body .set_wrap > .contents .set_list > li .gain {
    margin-left: 24px;
    padding: 10px 10px;
    font-size: 20px;
    border-radius: 6px;
  }
  .plan .plan_body .set_wrap > .contents .set_list > li .gain::before {
    left: -11px;
    width: 12px;
    height: 12px;
  }
  .plan .plan_body .set_wrap > .contents .notes {
    font-size: 14px;
  }
  .plan .plan_body .set_wrap > .contents .off_text {
    margin-top: 45px;
    gap: 15px;
  }
  .plan .plan_body .set_wrap > .contents .off_text .balloon {
    width: 76px;
    font-size: 24px;
  }
  .plan .plan_body .set_wrap > .contents .off_text .balloon::before {
    right: -7px;
    width: 8px;
    height: 10px;
  }
  .plan .plan_body .set_wrap > .contents .off_text .text {
    font-size: 30px;
  }
  .plan .plan_body .comparison_wrap {
    margin-bottom: 40px;
  }
  .plan .plan_body .comparison_wrap > .title {
    margin-bottom: 25px;
    font-size: 36px;
  }
  .plan .plan_body .comparison_wrap .notes {
    margin-top: 20px;
    font-size: 12px;
  }
  .plan .plan_body .group_cta {
    margin-bottom: 30px;
  }
  .plan .plan_body .price_list02 > li {
    margin-bottom: 50px;
    border-radius: 12px;
  }
  .plan .plan_body .price_list02 > li:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .price_list02 > li > .title {
    padding: 15px;
    font-size: 24px;
  }
  .plan .plan_body .price_list02 > li > .contents {
    padding: 20px;
  }
  .plan .plan_body .price_list02 > li > .contents .image {
    margin-bottom: 20px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap {
    gap: 20px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .head {
    font-size: 28px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price {
    margin-bottom: 5px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price .number {
    font-size: 70px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price .unit {
    font-size: 38px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price .unit span {
    font-size: 15px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::before, .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::after {
    top: calc(50% - 5px);
    width: calc(100% + 18px);
    height: 2px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough::after {
    top: calc(50% + 5px);
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .number {
    font-size: 42px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .unit {
    font-size: 20px;
  }
  .plan .plan_body .price_list02 > li > .contents .price_wrap .price.strikethrough .unit span {
    font-size: 8px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap {
    margin-top: 16px;
    padding-top: 50px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap::before {
    width: 50px;
    height: 25px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap .apply_text {
    padding: 5px 12px;
    border: 3px solid #c50000;
    font-size: 22px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .number {
    font-size: 80px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .unit {
    font-size: 40px;
    padding-top: 10px;
  }
  .plan .plan_body .price_list02 > li > .contents .campaign_wrap .campaign_price .unit span {
    font-size: 14px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_text {
    font-size: 20px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap {
    gap: 26px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .number {
    font-size: 30px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .unit {
    font-size: 16px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price .unit span {
    font-size: 7px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .number {
    font-size: 30px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .unit {
    font-size: 16px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough .unit span {
    font-size: 7px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% - 4px);
    width: calc(100% + 5px);
    height: 2px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% + 4px);
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price::before {
    left: -15px;
    width: 8px;
    height: 16px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .number {
    font-size: 42px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit {
    font-size: 22px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit span {
    font-size: 9px;
  }
  .plan .plan_body .price_list02 > li > .contents .add_price_wrap .campaign_price .unit2 {
    font-size: 29px;
  }
  .plan .plan_body .price_list02 > li > .contents .text {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .plan .plan_body .option_service {
    margin: 30px 0 40px;
    padding: 50px 20px;
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .plan .plan_body .option_service > .title {
    margin-bottom: 35px;
    font-size: 30px;
  }
  .plan .plan_body .option_service > .column {
    padding: 50px 20px;
    border-radius: 12px;
  }
  .plan .plan_body .option_service > .column + .column {
    margin-top: 30px;
  }
  .plan .plan_body .option_service > .column > .title {
    margin-bottom: 50px;
  }
  .plan .plan_body .option_service > .column > .title > .sub {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .plan .plan_body .option_service > .column > .title > .main {
    font-size: 36px;
  }
  .plan .plan_body .option_service > .column .campaign_banner .image {
    width: 100%;
    height: auto;
  }
  .plan .plan_body .option_service > .column .campaign_notes {
    margin-top: 12px;
    margin-bottom: 32px;
    font-size: 12px;
  }
  .plan .plan_body .option_service > .column .option_price {
    margin-bottom: 70px;
  }
  .plan .plan_body .option_service > .column .option_price .number {
    font-size: 76px;
  }
  .plan .plan_body .option_service > .column .option_price .unit {
    font-size: 42px;
  }
  .plan .plan_body .option_service > .column .option_price .unit span {
    font-size: 16px;
  }
  .plan .plan_body .option_service > .column .option_price .unit2 {
    font-size: 52px;
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough::before, .plan .plan_body .option_service > .column .option_price.strikethrough::after {
    top: calc(50% - 3px);
    width: calc(100% + 12px);
    height: 2px;
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough::after {
    top: calc(50% + 3px);
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough .number {
    font-size: 34px;
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough .unit {
    font-size: 18px;
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough .unit span {
    font-size: 8px;
  }
  .plan .plan_body .option_service > .column .option_price.strikethrough .unit2 {
    font-size: 24px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap {
    margin-top: 16px;
    padding-top: 50px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap::before {
    width: 50px;
    height: 25px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap .apply_text {
    padding: 5px 12px;
    border: 3px solid #c50000;
    font-size: 22px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap .campaign_price .number {
    font-size: 120px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit {
    font-size: 45px;
    padding-top: 30px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit span {
    font-size: 18px;
  }
  .plan .plan_body .option_service > .column .campaign_wrap .campaign_price .unit2 {
    font-size: 62px;
    padding-top: 30px;
  }
  .plan .plan_body .option_service > .column .knowledge {
    margin-bottom: 50px;
  }
  .plan .plan_body .option_service > .column .knowledge:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .option_service > .column .knowledge > .title {
    margin-bottom: 15px;
    padding: 5px;
    font-size: 20px;
  }
  .plan .plan_body .option_service > .column .knowledge > .caution {
    margin-bottom: 18px;
    font-size: 19px;
  }
  .plan .plan_body .option_service > .column .knowledge p {
    font-size: 18px;
  }
  .plan .plan_body .option_service > .column .option_merit > .title {
    margin-bottom: 15px;
    font-size: 25px;
  }
  .plan .plan_body .option_service > .column .option_merit .merit_list {
    margin-bottom: 65px;
  }
  .plan .plan_body .option_service > .column .option_merit .merit_list > li {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .plan .plan_body .option_service > .column .option_merit .merit_list > li:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .option_service > .column .option_check {
    padding: 30px 20px;
    border-radius: 12px;
    font-size: 18px;
  }
  .plan .plan_body .option_service > .column .option_check > .title {
    margin-bottom: 14px;
    padding: 56px 0 14px;
    font-size: 24px;
  }
  .plan .plan_body .option_service > .column .option_check > .title::before {
    width: 103px;
  }
  .plan .plan_body .business_use {
    margin-bottom: 30px;
  }
  .plan .plan_body .business_use > .title {
    margin-bottom: 35px;
    font-size: 40px;
  }
  .plan .plan_body .business_use .business_use_list > li {
    margin-bottom: 50px;
    border-radius: 12px;
  }
  .plan .plan_body .business_use .business_use_list > li:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .business_use .business_use_list > li > .title {
    padding: 15px;
    font-size: 24px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents {
    padding: 20px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .image {
    margin-bottom: 20px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap {
    gap: 20px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .head {
    font-size: 28px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price {
    margin-bottom: 5px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .number {
    font-size: 70px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .unit {
    font-size: 38px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price .unit span {
    font-size: 15px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::before, .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::after {
    top: calc(50% - 5px);
    width: calc(100% + 18px);
    height: 2px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough::after {
    top: calc(50% + 5px);
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .number {
    font-size: 42px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .unit {
    font-size: 20px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .price_wrap .price.strikethrough .unit span {
    font-size: 8px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap {
    margin-top: 16px;
    padding-top: 50px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap::before {
    width: 50px;
    height: 25px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .apply_text {
    padding: 5px 12px;
    border: 3px solid #c50000;
    font-size: 22px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .number {
    font-size: 80px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .unit {
    font-size: 40px;
    padding-top: 10px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .campaign_wrap .campaign_price .unit span {
    font-size: 14px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_text {
    font-size: 20px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap {
    gap: 26px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .number {
    font-size: 30px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .unit {
    font-size: 16px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price .unit span {
    font-size: 7px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .number {
    font-size: 30px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .unit {
    font-size: 16px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough .unit span {
    font-size: 7px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::before, .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% - 4px);
    width: calc(100% + 5px);
    height: 2px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .price.strikethrough::after {
    top: calc(50% + 4px);
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price::before {
    left: -15px;
    width: 8px;
    height: 16px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .number {
    font-size: 42px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit {
    font-size: 22px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit span {
    font-size: 9px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .add_price_wrap .campaign_price .unit2 {
    font-size: 29px;
  }
  .plan .plan_body .business_use .business_use_list > li > .contents .text {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .plan .plan_body .business_use .notes {
    margin-top: 14px;
    font-size: 14px;
  }
  .plan .plan_body .business_use > .text {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .plan .plan_body .business_use .case_list {
    margin-bottom: 50px;
    gap: 10px;
  }
  .plan .plan_body .business_use .case_list > li img {
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .plan .plan_body .business_use .case_list > li .case {
    font-size: 25px;
  }
  .plan .plan_body .business_use .case_list > li .ex {
    font-size: 13px;
  }
  .plan .plan_body .business_use > .plan_title {
    margin-bottom: 15px;
    font-size: 34px;
  }
  .plan .plan_body .option_service02 {
    margin: 0 0 50px;
    padding: 50px 20px;
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  .plan .plan_body .option_service02:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .option_service02 > .title {
    margin-bottom: 35px;
    font-size: 30px;
  }
  .plan .plan_body .option_service02 > .column {
    padding: 50px 20px;
    border-radius: 12px;
  }
  .plan .plan_body .option_service02 > .column + .column {
    margin-top: 30px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 3px solid #cdcdcd;
  }
  .plan .plan_body .option_service02 > .column .option_list > li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .plan .plan_body .option_service02 > .column .option_list > li > .title {
    margin-bottom: 30px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li > .title > .sub {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li > .title > .main {
    font-size: 36px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li > .image {
    margin-bottom: 40px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price {
    margin-bottom: 70px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price:last-child {
    margin-bottom: 0;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price .number {
    font-size: 76px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price .unit {
    font-size: 42px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price .unit span {
    font-size: 16px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price .unit2 {
    font-size: 52px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::before, .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::after {
    top: calc(50% - 3px);
    width: calc(100% + 12px);
    height: 2px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough::after {
    top: calc(50% + 3px);
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .number {
    font-size: 34px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit {
    font-size: 18px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit span {
    font-size: 8px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .option_price.strikethrough .unit2 {
    font-size: 24px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap {
    margin-top: 16px;
    padding-top: 50px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap::before {
    width: 50px;
    height: 25px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .apply_text {
    padding: 5px 12px;
    border: 3px solid #c50000;
    font-size: 22px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .number {
    font-size: 120px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit {
    font-size: 45px;
    padding-top: 30px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit span {
    font-size: 18px;
  }
  .plan .plan_body .option_service02 > .column .option_list > li .campaign_wrap .campaign_price .unit2 {
    font-size: 62px;
    padding-top: 30px;
  }
  .plan .plan_body .gift_wrap {
    margin-bottom: 60px;
  }
  .plan .plan_body .gift_wrap .notes {
    margin-top: 14px;
    font-size: 14px;
  }
  .plan .plan_body .payment_wrap > .title {
    margin-bottom: 20px;
    font-size: 34px;
  }
  .plan .plan_body .payment_wrap .payment_box {
    padding: 25px 34px 0;
    border-radius: 18px;
  }
  .plan .plan_body .payment_wrap .payment_box .text {
    font-size: 20px;
  }
  .plan .plan_body .payment_wrap .payment_box .payment_list > li {
    padding: 30px 0;
    border-bottom: 2px solid #3ba7d8;
    font-size: 30px;
  }
  .plan .plan_body .payment_wrap .payment_box .payment_list > li.credit {
    font-size: 24px;
  }
}
.reason {
  padding: 0;
}
.reason > .title {
  position: relative;
  padding: 6.4vw 3.8vw;
  text-align: center;
  background: #3ba7d8;
  font-size: 6.6vw;
  font-weight: bold;
  color: #fff;
}
.reason > .title::before {
  position: absolute;
  left: 50%;
  bottom: calc(-8.9vw + 1px);
  width: 13.8vw;
  height: 8.9vw;
  background: #3ba7d8;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  content: "";
}
.reason .reason_body {
  padding: 25.6vw 0 15.3vw;
  background: #e3f9ff;
}
.reason .reason_body .reason_box {
  padding: 6.4vw 3.8vw 10.2vw;
  background: #fff;
  border-radius: 2vw;
  box-shadow: 0px 0.2vw 2.5vw 0px rgba(0, 0, 0, 0.15);
}
.reason .reason_body .reason_box > .title {
  margin-bottom: 7.6vw;
  text-align: center;
  font-weight: bold;
  font-size: 6.1vw;
}
.reason .reason_body .reason_box .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.6vw 2vw;
  text-align: center;
  margin-bottom: 8.9vw;
}
.reason .reason_body .reason_box .list .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.reason .reason_body .reason_box .list .item .image {
  width: 75px;
  margin-bottom: 5.1vw;
}
.reason .reason_body .reason_box .list .item > .title {
  margin-bottom: 1.5vw;
  text-align: center;
  font-size: 4.1vw;
  font-weight: bold;
}
.reason .reason_body .reason_box .list .item .desc {
  font-size: 3vw;
}
.reason .reason_body .reason_box .notes_wrap {
  padding: 0 0 3.8vw;
  border-bottom: 0.7vw solid #c50000;
}
.reason .reason_body .reason_box .notes_wrap .notes_title {
  position: relative;
  text-align: center;
  margin-bottom: 2.1vw;
}
.reason .reason_body .reason_box .notes_wrap .notes_title::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.7vw;
  background: #c50000;
  content: "";
  transform: translateY(-50%);
}
.reason .reason_body .reason_box .notes_wrap .notes_title > span {
  position: relative;
  display: inline-block;
  padding: 1vw 2.8vw;
  border: 1.5vw solid #fff;
  background: #c50000;
  border-radius: 100vh;
  color: #fff;
  font-size: 3.5vw;
}
.reason .reason_body .reason_box .notes_wrap .notes_title > span::before, .reason .reason_body .reason_box .notes_wrap .notes_title > span::after {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.2em;
  background: url(../images/icon_caution_02.svg) no-repeat 50% 50%/contain;
  content: "";
}
.reason .reason_body .reason_box .notes_wrap .text {
  margin-bottom: 6.4vw;
  font-size: 3.5vw;
}
.reason .reason_body .reason_box .notes_wrap > .title {
  margin-bottom: 3vw;
  font-size: 3.8vw;
  font-weight: bold;
}
.reason .reason_body .reason_box .notes_wrap .check_list > li {
  position: relative;
  margin-bottom: 2vw;
  padding: 0 0 0 1.8em;
  font-size: 3.5w;
}
.reason .reason_body .reason_box .notes_wrap .check_list > li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/icon_check_blue.svg) no-repeat 50% 50%/contain;
  content: "";
}
.reason .reason_body .reason_box_02 {
  margin-top: 5.1vw;
  padding: 5.1vw calc(3.8vw - 1px) 6.4vw;
  background: #fff;
  border-radius: 2vw;
  box-shadow: 0px 0.2vw 2.5vw 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #3ba7d8;
}
.reason .reason_body .reason_box_02 > .title {
  display: flex;
  align-items: center;
  margin-bottom: 5.1vw;
  font-size: 5.1vw;
  font-weight: bold;
}
.reason .reason_body .reason_box_02 > .title::before {
  display: block;
  width: 12.8vw;
  height: 12.8vw;
  margin-right: 2.5vw;
  background: url(../images/icon_record.svg) no-repeat 0 0/contain;
  content: "";
}
.reason .reason_body .reason_box_02 > .text {
  margin-bottom: 3.8vw;
  font-size: 3.8vw;
}
.reason .reason_body .reason_box_02 .check_list > li {
  position: relative;
  margin-bottom: 3vw;
  padding: 0 0 0 1.8em;
  font-size: 3vw;
}
.reason .reason_body .reason_box_02 .check_list > li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/icon_check2.svg) no-repeat 50% 50%/contain;
  content: "";
}
.reason .reason_body .reason_box_02 .check_list > li:last-child {
  margin-bottom: 0;
}
.reason .reason_body .reason_box_02.system {
  border-color: #8bf0b5;
}
.reason .reason_body .reason_box_02.system > .title::before {
  background-image: url(../images/icon_guarantee.svg);
}
.reason .reason_body .reason_box_02.system .check_list > li::before {
  background-image: url(../images/icon_check1.svg);
}

@media screen and (min-width: 515px) {
  .reason > .title {
    padding: 35px 20px;
    font-size: 34px;
  }
  .reason > .title::before {
    bottom: -45px;
    width: 70px;
    height: 46px;
  }
  .reason .reason_body {
    padding: 130px 0 80px;
  }
  .reason .reason_body .reason_box {
    padding: 35px 20px 50px;
    border-radius: 10px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .reason .reason_body .reason_box > .title {
    margin-bottom: 50px;
    font-size: 30px;
  }
  .reason .reason_body .reason_box .list {
    gap: 45px 10px;
    margin-bottom: 40px;
  }
  .reason .reason_body .reason_box .list .item .image {
    width: 100px;
    margin-bottom: 30px;
  }
  .reason .reason_body .reason_box .list .item > .title {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .reason .reason_body .reason_box .list .item .desc {
    font-size: 15px;
  }
  .reason .reason_body .reason_box .notes_wrap {
    padding: 0 0 18px;
    border-bottom: 4px solid #c50000;
  }
  .reason .reason_body .reason_box .notes_wrap .notes_title {
    margin-bottom: 20px;
  }
  .reason .reason_body .reason_box .notes_wrap .notes_title::before {
    height: 4px;
  }
  .reason .reason_body .reason_box .notes_wrap .notes_title > span {
    padding: 5px 15px;
    border: 6px solid #fff;
    font-size: 18px;
  }
  .reason .reason_body .reason_box .notes_wrap .text {
    margin-bottom: 35px;
    font-size: 18px;
  }
  .reason .reason_body .reason_box .notes_wrap > .title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .reason .reason_body .reason_box .notes_wrap .check_list > li {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .reason .reason_body .reason_box_02 {
    margin-top: 30px;
    padding: 29px 19px;
    border-radius: 10px;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
  }
  .reason .reason_body .reason_box_02 > .title {
    margin-bottom: 30px;
    font-size: 25px;
  }
  .reason .reason_body .reason_box_02 > .title::before {
    width: 67px;
    height: 67px;
    margin-right: 14px;
  }
  .reason .reason_body .reason_box_02 > .text {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .reason .reason_body .reason_box_02 .check_list > li {
    margin-bottom: 14px;
    font-size: 15px;
  }
  .reason .reason_body .reason_box_02 .check_list > li:last-child {
    margin-bottom: 0;
  }
}
.voice {
  margin: 0 -3.8vw 10.2vw;
  padding: 16.4vw 0;
  background: url(../images/bg_voice.png) no-repeat 50% 50%/cover;
}
.voice > .title {
  position: relative;
  margin-bottom: 6.4vw;
  padding: 6.4vw 3.8vw;
  text-align: center;
  background: linear-gradient(-225deg, #a91212 0%, #db6464 50%, #7f0202 100%);
  font-size: 5.1vw;
  font-weight: bold;
  color: #fff;
}
.voice > .title::before, .voice > .title::after {
  position: absolute;
  left: 0;
  top: 2.5vw;
  width: 100%;
  height: 0.7vw;
  background: #fff;
  content: "";
}
.voice > .title::after {
  top: auto;
  bottom: 2.5vw;
}
.voice .voice_area {
  border: 1px solid #a8a8a8;
  border-radius: 2vw;
  /*height: 153.8vw;*/
  /*overflow: auto;*/
  background: #fff;
}
.voice .voice_area > .inner {
  padding: 10.2vw 6.4vw;
}
.voice .voice_area > .inner .voice_list {
  overflow: hidden;
}
.voice .voice_area > .inner .voice_list li {
  margin-bottom: 6.4vw;
}
.voice .voice_area > .inner .voice_list li:last-child {
  margin-bottom: 0;
}
.voice .voice_area > .inner .voice_list li .head {
  display: flex;
  align-items: center;
  margin-bottom: 2.5vw;
  font-size: 2.8vw;
}
.voice .voice_area > .inner .voice_list li .head .stars {
  display: flex;
  gap: 0.7vw;
  width: 20vw;
}
.voice .voice_area > .inner .voice_list li .comment {
  font-size: 3vw;
}

@media screen and (min-width: 515px) {
  .voice {
    margin: 0 -20px 40px;
    padding: 80px 0;
  }
  .voice > .title {
    margin-bottom: 32px;
    padding: 34px 20px;
    font-size: 26px;
  }
  .voice > .title::before, .voice > .title::after {
    top: 14px;
    width: 100%;
    height: 4px;
  }
  .voice > .title::after {
    top: auto;
    bottom: 14px;
  }
  .voice .voice_area {
    border-radius: 10px;
    /*height: 788px;*/
  }
  .voice .voice_area > .inner {
    padding: 54px 35px;
  }
  .voice .voice_area > .inner .voice_list li {
    margin-bottom: 30px;
  }
  .voice .voice_area > .inner .voice_list li:last-child {
    margin-bottom: 0;
  }
  .voice .voice_area > .inner .voice_list li .head {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .voice .voice_area > .inner .voice_list li .head .stars {
    gap: 3px;
    width: 100px;
  }
  .voice .voice_area > .inner .voice_list li .comment {
    font-size: 15px;
  }
}
.condition {
  background-color: #E3F9FF;
  padding: 40px 0 80px;
}
.condition .condition__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.condition .condition__desc {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.condition .after__card {
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1490196078);
  margin-bottom: 78px;
  padding: 40px 16px;
  background-color: #fff;
  position: relative;
}
.condition .after__card .after__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.condition .after__card .after__title:last-child {
  margin-bottom: 0;
}
.condition .after__card .arrow__next {
  width: 188px;
  margin: 0 auto 10px;
}
.condition .after__card .after__img1 {
  margin-bottom: 12px;
}
.condition .after__card .after__img2 {
  margin-bottom: 32px;
}
.condition .after__card .after__subtitle {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 26px;
}
.condition .after__card .after__note {
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
  margin-bottom: 50px;
}
.condition .after__card .after__img3 {
  margin-bottom: 16px;
}
.condition .benefit .benefit__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.condition .benefit .benefit__item {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1490196078);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px 14px 47px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}
.condition .benefit .benefit__item:last-child {
  margin-bottom: 0;
}
.condition .benefit .benefit__item:last-child .title {
  color: #A647FB;
}
.condition .benefit .benefit__item:last-child .list {
  color: #A647FB;
}
.condition .benefit .benefit__item:nth-child(2) .title {
  color: #1153FB;
}
.condition .benefit .benefit__item:nth-child(2) .list {
  color: #1153FB;
}
.condition .benefit .benefit__item .benefit__icon {
  width: 81px;
  height: 81px;
  margin-bottom: 40px;
}
.condition .benefit .benefit__item .title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #009C36;
}
.condition .benefit .benefit__item .desc {
  font-size: 14px;
  text-align: center;
  margin-bottom: 24px;
}
.condition .benefit .benefit__item .list {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #009C36;
}
.condition .benefit .benefit__item .list li {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.condition .benefit .benefit__item .list li:last-child {
  margin-bottom: 0;
}
.condition .benefit .benefit__item .note {
  position: absolute;
  bottom: 13px;
  right: 24px;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .condition {
    padding: 53px 0 106px;
  }
  .condition .condition__title {
    font-size: 42px;
    margin-bottom: 26px;
  }
  .condition .condition__desc {
    font-size: 21px;
    margin-bottom: 53px;
  }
  .condition .after__card {
    border-radius: 13px;
    margin-bottom: 103px;
    padding: 53px 21px;
  }
  .condition .after__card .after__title {
    font-size: 32px;
    margin-bottom: 53px;
  }
  .condition .after__card .arrow__next {
    width: 248px;
    margin: 0 auto 14px;
  }
  .condition .after__card .after__img1 {
    margin-bottom: 15px;
  }
  .condition .after__card .after__img2 {
    margin-bottom: 42px;
  }
  .condition .after__card .after__subtitle {
    font-size: 24px;
    margin-bottom: 34px;
  }
  .condition .after__card .after__note {
    font-size: 14px;
    margin-bottom: 66px;
  }
  .condition .after__card .after__img3 {
    margin-bottom: 21px;
  }
  .condition .benefit .benefit__title {
    font-size: 37px;
    margin-bottom: 32px;
  }
  .condition .benefit .benefit__item {
    padding: 42px 19px 61px;
    border-radius: 13px;
    margin-bottom: 53px;
  }
  .condition .benefit .benefit__item .benefit__icon {
    width: 107px;
    height: 107px;
    margin-bottom: 53px;
  }
  .condition .benefit .benefit__item .title {
    font-size: 37px;
    margin-bottom: 32px;
  }
  .condition .benefit .benefit__item .desc {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .condition .benefit .benefit__item .list {
    font-size: 21px;
    color: #009C36;
  }
  .condition .benefit .benefit__item .list li {
    display: flex;
    gap: 7px;
    margin-bottom: 11px;
  }
  .condition .benefit .benefit__item .list li img {
    width: 32px;
  }
  .condition .benefit .benefit__item .note {
    bottom: 17px;
    right: 31px;
    font-size: 13px;
  }
}
.step {
  background-color: #3BA7D8;
  padding: 40px 0 80px;
  color: #616161;
}
.step .step__heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  padding-bottom: 14px;
  border-bottom: 4px solid #fff;
  text-align: center;
  color: #fff;
}
.step .step__card {
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 0;
}
.step .step__item {
  padding: 24px;
}
.step .icon {
  width: 102px;
  margin: 0 auto 16px;
}
.step .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.step .desc {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 768px) {
  .step {
    padding: 53px 0 106px;
  }
  .step .step__heading {
    font-size: 42px;
    margin-bottom: 53px;
  }
  .step .step__card {
    border-radius: 13px;
    padding: 21px 0;
  }
  .step .step__item {
    padding: 32px;
  }
  .step .icon {
    width: 135px;
    margin: 0 auto 21px;
  }
  .step .title {
    font-size: 32px;
    margin-bottom: 21px;
  }
  .step .desc {
    font-size: 18px;
  }
}
.faq .faq__heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
.faq .faq__list {
  margin-bottom: 80px;
}
.faq .faq__item {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #3BA7D8;
}
.faq .faq__item.active .open {
  display: block;
}
.faq .faq__item.active .close {
  display: none;
}
.faq .faq__item.active .faq__answer {
  display: block;
}
.faq .faq__quest {
  padding: 11px 16px;
  background-color: #3BA7D8;
  min-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
}
.faq .faq__quest .title {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  max-width: 299px;
}
.faq .collapse_icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq .open {
  display: none;
}
.faq .faq__answer {
  display: none;
  padding: 8px 16px 24px;
  font-size: 14px;
  font-weight: 500;
}
.faq .faq__answer p {
  margin-bottom: 1.5em;
}
.faq .faq__answer p:last-child {
  margin-bottom: 0;
}
.faq .faq__answer > .title {
  margin-bottom: 0.5em;
  color: #3BA7D8;
  font-weight: bold;
  font-size: 16px;
}
.faq .faq__answer .notes {
  font-size: 12px;
}
.faq .faq__answer .payment {
  width: 138px;
  margin-top: 10px;
}
.faq .faq__answer .image {
  width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}
.faq .faq__answer .add_text {
  border-top: 3px solid #3ba7d8;
  padding-top: 1.5rem;
}
.faq .note__payment {
  text-align: center;
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.faq .image_payment {
  width: 302px;
  margin: 0 auto;
}
.faq .form_wrap {
  margin-top: 20.5vw;
  padding: 10.2vw 3.8vw 16.4vw;
  background: #f5f5f5;
  border-radius: 2vw;
  text-align: center;
}
.faq .form_wrap > .lead {
  margin-bottom: 4.6vw;
  font-size: 3.5vw;
}
.faq .form_wrap > .title {
  margin-bottom: 10.2vw;
  font-weight: bold;
  font-size: 5.8vw;
}
.faq .form_wrap > .item {
  margin-bottom: 7.1vw;
}
.faq .form_wrap > .item .item_name {
  margin-bottom: 2vw;
  font-size: 4.1vw;
  font-weight: normal;
}
.faq .form_wrap > .item .item_name .remarks,
.faq .form_wrap > .item .item_name .require {
  margin-left: 0.5em;
}
.faq .form_wrap > .item .item_name .require {
  color: #B80B11;
}
.faq .form_wrap > .item .horizontal,
.faq .form_wrap > .item .vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;
  font-size: 4.1vw;
}
.faq .form_wrap > .item .vertical {
  flex-direction: column;
}
.faq .form_wrap > .item .type {
  margin: 4.1vw 0 1vw;
  text-align: left;
  font-size: 3vw;
}
.faq .form_wrap > .item select {
  width: 100%;
  padding: 3vw;
  font-size: 4.1vw;
  border-radius: 1.2vw;
}
.faq .form_wrap > .item input[type=radio] {
  margin: 0 1vw 0 0;
}
.faq .form_wrap > .item input[type=text],
.faq .form_wrap > .item input[type=tel],
.faq .form_wrap > .item input[type=email],
.faq .form_wrap > .item input[type=date],
.faq .form_wrap > .item input[type=time],
.faq .form_wrap > .item textarea {
  width: 100%;
  padding: 3vw;
  font-size: 4.1vw;
  border: 1px solid #a6a6a6;
  border-radius: 1.2vw;
}
.faq .form_wrap input[type=submit] {
  padding: 2vw 5.6vw;
  border: none;
  background: #585858;
  color: #fff;
  font-size: 4.1vw;
  border-radius: 1.2vw;
}

@media screen and (min-width: 768px) {
  .faq {
    padding: 53px 0 106px;
  }
  .faq .faq__heading {
    font-size: 42px;
    margin-bottom: 53px;
  }
  .faq .faq__list {
    margin-bottom: 106px;
  }
  .faq .faq__item {
    margin-bottom: 21px;
    border-radius: 13px;
  }
  .faq .faq__quest {
    padding: 14px 21px;
    min-height: 92px;
  }
  .faq .faq__quest .title {
    font-size: 21px;
    max-width: 395px;
  }
  .faq .collapse_icon {
    position: absolute;
    right: 26px;
  }
  .faq .faq__answer {
    padding: 11px 21px 32px;
    font-size: 18px;
  }
  .faq .faq__answer > .title {
    font-size: 20px;
  }
  .faq .faq__answer .notes {
    font-size: 16px;
  }
  .faq .faq__answer .payment {
    width: 182px;
    margin-top: 13px;
  }
  .faq .note__payment {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .faq .image_payment {
    width: 399px;
    margin: 0 auto;
  }
  .faq .footer__section {
    margin-bottom: 106px;
  }
  .faq .form_wrap {
    margin-top: 100px;
    padding: 50px 20px 85px;
    border-radius: 10px;
  }
  .faq .form_wrap > .lead {
    margin-bottom: 25px;
    font-size: 18px;
  }
  .faq .form_wrap > .title {
    margin-bottom: 60px;
    font-size: 30px;
  }
  .faq .form_wrap > .item {
    margin-bottom: 35px;
  }
  .faq .form_wrap > .item .item_name {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .faq .form_wrap > .item .horizontal,
  .faq .form_wrap > .item .vertical {
    gap: 20px;
    font-size: 20px;
  }
  .faq .form_wrap > .item .type {
    margin: 20px 0 5px;
    font-size: 18px;
  }
  .faq .form_wrap > .item select {
    padding: 18px;
    font-size: 20px;
    border-radius: 8px;
  }
  .faq .form_wrap > .item input[type=radio] {
    margin: 0 5px 0 0;
  }
  .faq .form_wrap > .item input[type=text],
  .faq .form_wrap > .item input[type=tel],
  .faq .form_wrap > .item input[type=email],
  .faq .form_wrap > .item input[type=date],
  .faq .form_wrap > .item input[type=time],
  .faq .form_wrap > .item textarea {
    width: 100%;
    padding: 18px;
    font-size: 20px;
    border-radius: 8px;
  }
  .faq .form_wrap input[type=submit] {
    padding: 12px 28px;
    font-size: 20px;
    border-radius: 8px;
  }
}
.footer {
  padding: 40px 0 150px;
  background-color: #4B4B4B;
  color: #fff;
}
.footer .footer__logo {
  width: 245px;
  margin: 0 auto 42px;
}
.footer .footer__link {
  font-size: 10px;
  color: #3BA7D8;
  text-align: center;
  margin-bottom: 26px;
  display: block;
}
.footer .footer__desc {
  font-size: 10px;
  text-align: center;
}
.footer .footer__desc a {
  color: #3BA7D8;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 53px 0 123px;
    background-color: #4B4B4B;
    color: #fff;
  }
  .footer .footer__logo {
    width: 324px;
    margin: 0 auto 55px;
  }
  .footer .footer__link {
    font-size: 13px;
    margin-bottom: 34px;
  }
  .footer .footer__desc {
    font-size: 13px;
  }
}
.fixed_cta_section {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  padding: 2.8vw 1.5vw 1.8vw;
  background: rgba(255, 255, 255, 0.6);
}
.fixed_cta_section > .title {
  position: absolute;
  left: 50%;
  top: 0;
  padding: 0.7vw 2.1vw;
  border: 0.7vw solid #ff5f00;
  background: #fff;
  font-size: 3.4vw;
  font-weight: bold;
  border-radius: 100vh;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.fixed_cta_section > .title > span {
  color: #ff5f00;
}
.fixed_cta_section > .head {
  margin-bottom: 0.4vw;
  padding: 1.2vw 0.7vw 0.7vw;
  text-align: center;
  color: #fff;
  background: #3ba7d8;
  font-weight: bold;
  font-size: 3.4vw;
  border-radius: 1.2vw 1.2vw 0 0;
}
.fixed_cta_section > .head > span {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
}
.fixed_cta_section > .head > span::before, .fixed_cta_section > .head > span::after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 3.7vw;
  height: 2.7vw;
  background: #fff;
  content: "";
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0%);
          clip-path: polygon(0 0, 50% 100%, 100% 0%);
  transform: translateY(-50%);
}
.fixed_cta_section > .head > span::after {
  left: auto;
  right: 0;
}
.fixed_cta_section > .cta_btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4vw;
}
.fixed_cta_section > .cta_btn .line {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2vw 1vw 2vw 12.1vw;
  background: #00B900;
  color: #fff;
  font-weight: bold;
  border-radius: 0 0 0 1.2vw;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.fixed_cta_section > .cta_btn .line::before {
  position: absolute;
  left: 2vw;
  top: 50%;
  width: 10vw;
  height: 8.6vw;
  background: url(../images/icon_line_02.svg) no-repeat 50% 50%/contain;
  content: "";
  transform: translateY(-50%);
}
.fixed_cta_section > .cta_btn .line::after {
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transform: rotate(30deg);
  animation: shine 3s ease-in-out infinite;
  content: "";
}
.fixed_cta_section > .cta_btn .line .text {
  font-size: 4vw;
}
.fixed_cta_section > .cta_btn .line .time {
  font-size: 3vw;
}
.fixed_cta_section > .cta_btn .tel {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2vw 1vw 2vw 8.6vw;
  background: #c50000;
  color: #fff;
  font-weight: bold;
  border-radius: 0 0 1.2vw 0;
  filter: drop-shadow(0 0.4vw 0.3vw rgba(0, 0, 0, 0.15));
}
.fixed_cta_section > .cta_btn .tel::before {
  position: absolute;
  left: 2vw;
  top: 50%;
  width: 6.5vw;
  height: 6.5vw;
  background: url(../images/icon_phone_02.svg) no-repeat 50% 50%/contain;
  content: "";
  transform: translateY(-50%);
}
.fixed_cta_section > .cta_btn .tel::after {
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  background-color: #fff;
  transform: rotate(30deg);
  animation: shine 3s ease-in-out infinite;
  content: "";
}
.fixed_cta_section > .cta_btn .tel .number,
.fixed_cta_section > .cta_btn .tel .time {
  font-size: 2.7vw;
}
.fixed_cta_section > .cta_btn .tel .text {
  font-size: 4vw;
}

@media screen and (min-width: 515px) {
  .fixed_cta_section {
    display: none;
  }
}
/* page-tokushohou */
.tokushouhou {
  padding: 15vw 0;
}
.tokushouhou > .title {
  margin-bottom: 6.4vw;
  padding: 0 3.8vw;
  text-align: center;
  font-weight: bold;
  font-size: 6.4vw;
}
.tokushouhou .tokusho_list > li > .head {
  padding: 3.8vw;
  background: #f1f5f9;
  font-weight: bold;
  font-size: 4.1vw;
}
.tokushouhou .tokusho_list > li > .body {
  padding: 3.8vw 3.8vw 4.2vw;
  font-size: 3.8vw;
}
.tokushouhou .top_anchor {
  margin: 12vw 0 0;
  text-align: center;
  font-size: 3.8vw;
}
.tokushouhou .top_anchor a {
  color: #3BA7D8;
}

@media screen and (min-width: 515px) {
  .tokushouhou {
    padding: 50px 0;
  }
  .tokushouhou > .title {
    margin-bottom: 40px;
    padding: 0 20px;
    font-size: 28px;
  }
  .tokushouhou .tokusho_list > li > .head {
    padding: 20px;
    font-size: 18px;
  }
  .tokushouhou .tokusho_list > li > .body {
    padding: 20px 20px 30px;
    font-size: 16px;
  }
  .tokushouhou .top_anchor {
    margin: 50px 0 0;
    font-size: 16px;
  }
}/*# sourceMappingURL=index.css.map */