@charset "UTF-8";
/*---------------------------------------
  リセット
/*---------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

.mb20 {
  margin-bottom: 20px;
}

.flexcenter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .flexcenter {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.order1 {
  margin-right: 20px;
  order: 1;
}

@media screen and (max-width: 768px) {
  .order1 {
    margin-right: 0px;
  }
}
.order2 {
  order: 2;
}

@media screen and (max-width: 768px) {
  .order2 {
    order: 3;
    margin-right: 0px !important;
  }
}
.order3 {
  order: 3;
  display: block;
  margin-top: 24px;
  padding: 32px;
  border-radius: 16px;
  background: var(--White, #FFF);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .order3 {
    order: 2;
    width: 87.2vw;
    margin: 5.3333333333vw auto 0;
    padding: 4.2666666667vw;
    border-radius: 4.2666666667vw;
  }
}
body {
  width: 100%;
  color: #000;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

ins {
  color: #000;
  text-decoration: none;
  background-color: #ff9;
}

mark {
  color: #000;
  font-weight: bold;
  font-style: italic;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

li {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

img {
  width: 100%;
  line-height: 1;
  vertical-align: bottom;
}

button {
  padding: 0;
  border: none;
  outline: none;
  line-height: 1;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  z-index: 1;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

svg {
  width: 100%;
  height: 100%;
}

:root {
  --orange: #F57801;
  --pink: #E83C58;
  --blue: #3197CB;
}

.bg_gray {
  position: relative;
  background: #F3F3F3;
}

/*---------------------------------------
  common
/*---------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

/* flex */
.u-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-flex._jc-c {
  justify-content: center;
}

.u-flex._jc-fs {
  justify-content: flex-start;
}

.u-flex._ai-fs {
  align-items: flex-start;
}

.u-flex._ai-s {
  align-items: stretch;
}

@media (max-width: 768px) {
  .u-flex._fd-c_sp {
    flex-direction: column;
  }
  .u-flex._fd-cr_sp {
    flex-direction: column-reverse;
  }
  .u-flex._jc-c_sp {
    justify-content: center;
  }
  .u-flex._jc-fs_sp {
    justify-content: flex-start;
  }
  .u-flex._ai-fs_sp {
    align-items: flex-start;
  }
  .u-flex._ai-s_sp {
    align-items: stretch;
  }
  .u-flex._ai-c_sp {
    align-items: center;
  }
}
.cp_contents {
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .cp_contents {
    overflow-x: hidden;
  }
}
.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner {
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 769px) {
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (min-width: 769px) {
  .imgalpha {
    cursor: pointer;
    transition: opacity 0.6s;
  }
  .imgalpha:hover {
    opacity: 0.6 !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
  }
  img {
    width: 100%;
    height: auto;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
/*---------------------------------------
  parts
/*---------------------------------------*/
.textOrange {
  color: var(--orange);
}

.textPink {
  color: var(--pink);
}

.textBlue {
  color: var(--blue);
}

.textBlack {
  color: #000;
}

.textWhite {
  color: #fff;
}

.fw4 {
  font-weight: 400;
}

.fw5 {
  font-weight: 500;
}

.fw9 {
  font-weight: 900;
}

.textUnderline {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.al_left {
  text-align: left;
}

.al_center {
  text-align: center;
}

.al_right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .al_left_sp {
    text-align: left !important;
  }
  .al_center_sp {
    text-align: center !important;
  }
  .al_right_sp {
    text-align: right !important;
  }
}
.textRobot {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}

.textOswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}

.text24 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .text24 {
    font-size: 4.8vw;
  }
}

.ttl_slash {
  text-align: center;
}

.ttl_slash ._ttl {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .ttl_slash ._ttl {
    font-size: 3.4vw;
  }
}

.ttl_slash ._ttl::before,
.ttl_slash ._ttl::after {
  content: "";
  display: inline-block;
  margin: 6px 0px;
  background: #fff;
  height: 2px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .ttl_slash ._ttl::before,
  .ttl_slash ._ttl::after {
    width: 5vw;
    height: 0.3vw;
    margin: 0vw 0vw 1vw;
  }
}

.ttl_slash ._ttl::before {
  transform: rotate(-107.65deg);
}

.ttl_slash ._ttl::after {
  transform: rotate(-72.35deg);
}

.textOrange.ttl_slash ._ttl::before,
.textOrange.ttl_slash ._ttl::after {
  background: var(--orange);
}

.textPink.ttl_slash ._ttl::before,
.textPink.ttl_slash ._ttl::after {
  background: var(--pink);
}

.textWhite.ttl_slash ._ttl::before,
.textWhite.ttl_slash ._ttl::after {
  background: var(--white);
}

.f_noto {
  font-family: "Noto Sans";
}

.underLine {
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .underLine:hover {
    text-decoration: none;
  }
}
.note_txt {
  color: #606060;
  line-height: 165%;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
  .note_txt {
    font-size: 2.8vw;
  }
}
.note_txt a {
  text-decoration: underline;
}

.note_txt a:hover {
  text-decoration: none;
}

.box_w {
  width: 100%;
  padding: 55px 75px 50px;
  border-radius: 20px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .box_w {
    width: auto;
    padding: 4.8vw;
    margin-left: 3vw;
    margin-right: 3vw;
  }
}

.box_w:not(:nth-of-type(1)) {
  margin-top: 24px;
}

/* accordion */
.accordion_box .accordion_btn {
  cursor: pointer;
}

.accordion_box .accordion_cont {
  display: none;
  text-align: left;
}

/* modal */
.modal_openBtn {
  cursor: pointer;
}

.modal {
  visibility: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 88px 20px 0;
  opacity: 0;
  text-align: center;
  background: rgba(244, 244, 244, 0.95);
  z-index: -100;
}

@media screen and (max-width: 768px) {
  .modal {
    padding: 14.4vw 6.4vw 0;
  }
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

.modal.is-active .modal_content {
  opacity: 1;
}

.modal:not(.modal_access) {
  transition: 0.4s;
}

.modal:not(.modal_access) .modal_content {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 16px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .modal:not(.modal_access) .modal_content {
    max-width: 100%;
    border-radius: 4.2666666667vw;
    margin-bottom: 20vw;
  }
}
.modal:not(.modal_access) .modal_closeBtn {
  display: flex;
  color: #F57801;
  margin: 0 auto;
  font-weight: 600;
  align-items: center;
}

.modal:not(.modal_access) .modal_closeBtn img {
  width: 20px;
}

@media screen and (max-width: 768px) {
  .modal:not(.modal_access) .modal_closeBtn img {
    width: 5.3333333333vw;
  }
}
.modal:not(.modal_access) .modal_closeBtn.top {
  width: 44px;
  height: 44px;
  top: -60px;
  right: 0;
  border-radius: 50%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .modal:not(.modal_access) .modal_closeBtn.top {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    top: -18.6666666667vw;
  }
}
.modal:not(.modal_access) .modal_closeBtn.bottom {
  bottom: -66px;
  padding: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
  gap: 10px;
  justify-content: flex-end;
  border-bottom: 2px solid #F57801;
  margin-top: 53px;
  display: table;
}

@media screen and (max-width: 768px) {
  .modal:not(.modal_access) .modal_closeBtn.bottom {
    bottom: -21.3333333333vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.09em;
    gap: 2.6666666667vw;
    margin-top: 7.4vw;
  }
}
.modal_overlay {
  width: 100%;
  min-height: 100%;
  height: var(--modalH);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal_content {
  width: 100%;
  position: relative;
  opacity: 0;
  background-color: #fff;
}

.modal_closeBtn {
  cursor: pointer;
}

.modal_txtBtn {
  display: inline-block;
  position: relative;
  color: #646464;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.16px;
  border-bottom: 1px solid var(--gray, #646446);
  padding: 0 32px 7px 5px;
}

@media screen and (max-width: 768px) {
  .modal_txtBtn {
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
    border-bottom: 1px solid var(--gray, #666);
    padding: 0 5.8666666667vw 0.8vw 1.3333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .modal_txtBtn:hover {
    border-bottom: 2px solid transparent;
  }
}
.modal_txtBtn::before,
.modal_txtBtn::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  top: 12px;
  right: 2px;
  background-color: #666;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .modal_txtBtn::before,
  .modal_txtBtn::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
    top: 2.4vw;
    right: 1.0666666667vw;
  }
}
.modal_txtBtn::after {
  transform: rotate(90deg);
}

.modal_txtBtn.active::after {
  transform: rotate(0);
}

/*---------------------------------------
  #modal_access
/*---------------------------------------*/
#modal_access .modal_content {
  max-width: 1040px;
  margin: 113px auto 10px;
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  #modal_access .modal_content {
    max-width: 100%;
    margin: 33.0666666667vw auto 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-height: 720px) {
  #modal_access .modal_content {
    margin-top: 7.848%;
  }
}
#modal_access .access_ttl {
  margin-bottom: 22px;
  color: #2292dd;
  font-size: 36px;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  #modal_access .access_ttl {
    margin-top: 1.8666666667vw;
    margin-bottom: 6.1333333333vw;
    line-height: 1.5;
    font-size: 7.4666666667vw;
  }
}
#modal_access .btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  #modal_access .btn_wrap {
    display: block;
  }
}
#modal_access .btn_wrap a {
  display: block;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  border-radius: 0 0 17px 17px;
}

@media screen and (max-width: 768px) {
  #modal_access .btn_wrap a {
    max-width: 87.2vw;
    margin: 0 auto 4.2666666667vw;
    border-radius: 0 0 4.5333333333vw 4.5333333333vw;
  }
  #modal_access .btn_wrap a:last-child {
    margin-bottom: 0;
  }
}
#modal_access .btn_wrap a img {
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  #modal_access .btn_wrap a:hover img {
    transform: translateY(8px);
  }
}
/*---------------------------------------
  .modal_transfer共通
/*---------------------------------------*/
.modal_transfer .transfer_ttl {
  margin-bottom: 14px;
  color: var(--Black, #333);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  border-radius: 30px;
  background: #EBEBEB;
  display: table;
  margin: 0 auto 40px;
  padding: 2px 20px;
}

@media screen and (max-width: 768px) {
  .modal_transfer .transfer_ttl {
    margin-bottom: 2.1333333333vw;
    font-size: 4.2666666667vw;
    letter-spacing: 0.128vw;
    font-size: 4.4vw;
    margin-bottom: 7vw;
  }
}
.modal_transfer .btn_wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .modal_transfer .btn_wrap {
    flex-direction: column;
    align-items: center;
    gap: 4.2666666667vw;
    align-self: stretch;
  }
}
.modal_transfer .transfer_modalBtn {
  display: flex;
  max-width: 300px;
  width: 100%;
  height: 117px;
  padding: 16px 5px;
  border-radius: 16px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #E83C58;
  box-shadow: 0px 8px 0px 0px #B83A4F;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .modal_transfer .transfer_modalBtn {
    max-width: 78.9333333333vw;
    height: 29.3333333333vw;
    padding: 4.2666666667vw 0;
    border-radius: 4.2666666667vw;
    text-align: center;
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
    box-shadow: 0px 2.1333333333vw 0px 0px #B83A4F;
  }
}
.modal_transfer .transfer_modalBtn small {
  display: block;
  color: var(--White, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  .modal_transfer .transfer_modalBtn small {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.modal_transfer .transfer_modalBtn.yellow_btn {
  background: var(--Info-500, #3CC9C6);
  box-shadow: 0px 8px 0px 0px #2E9D9A;
}

@media screen and (max-width: 768px) {
  .modal_transfer .transfer_modalBtn.yellow_btn {
    box-shadow: 0 2.1333333333vw 0 0 #2E9D9A;
  }
}
@media screen and (min-width: 769px) {
  .modal_transfer .transfer_modalBtn:hover {
    box-shadow: 0 0 0 0 transparent;
    transform: translateY(8px);
  }
}
.modal_transfer .modal_content {
  margin-top: 152px;
  padding: 26px 0 32px;
}

@media screen and (max-width: 768px) {
  .modal_transfer .modal_content {
    margin-top: 32vw;
    padding: 6.6666666667vw 0 6.4vw;
  }
}
@media screen and (min-width: 769px) and (max-height: 720px) {
  .modal_transfer .modal_content {
    margin-top: 10.858%;
  }
}
@media screen and (max-width: 768px) {
  #modal_transfer02 .transfer_modalBtn {
    height: 56px;
    font-size: 16px;
    letter-spacing: 0.48px;
  }
  #modal_transfer02 .transfer_modalBtn.yellow_btn {
    height: 80px;
  }
  #modal_transfer02 .transfer_modalBtn:not(.yellow_btn) {
    padding: 0;
  }
}
/*---------------------------------------
  modal_santei
/*---------------------------------------*/
.modal_santei .modal_content {
  padding: 34px 55px 24px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .modal_santei .modal_content {
    margin-top: 8vw;
    margin-bottom: 48vw;
    padding: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-height: 720px) {
  .modal_santei .modal_content {
    margin-top: 10.858%;
  }
}
.modal_santei .santei_ttl {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 19px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}

@media screen and (max-width: 768px) {
  .modal_santei .santei_ttl {
    margin-bottom: 5.3333333333vw;
    padding-bottom: 4.8vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.04em;
  }
}
.modal_santei .santei_subTtl {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .modal_santei .santei_subTtl {
    font-size: 3.7333333333vw;
    letter-spacing: 0.1493333333vw;
    margin-bottom: 0;
  }
}
.modal_santei .santei_listWrap li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
}

.modal_santei .santei_listWrap.is-nomark li {
  padding-left: 0 !important;
}

@media screen and (max-width: 768px) {
  .modal_santei .santei_listWrap li {
    margin-bottom: 2.6666666667vw;
    padding-left: 5.3333333333vw;
    line-height: 1.6;
    font-size: 2.6666666667vw;
  }
}
.modal_santei .santei_listWrap li::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0.1em;
  left: 0;
}

@media screen and (max-width: 768px) {
  .modal_santei .santei_listWrap li::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.modal_santei .santei_listWrap li:last-child {
  margin-bottom: 0;
}

.modal_santei .santei_listWrap + .santei_subTtl {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .modal_santei .santei_listWrap + .santei_subTtl {
    margin-top: 2.6666666667vw;
  }
}
/*---------------------------------------
  modal_bankcp
/*---------------------------------------*/
.modal_bankcp .modal_content {
  padding: 32px 55px;
}

@media screen and (max-width: 768px) {
  .modal_bankcp .modal_content {
    padding: 4.2666666667vw;
  }
}
.modal_bankcp .bankcp_cont dl {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .modal_bankcp .bankcp_cont dl {
    margin-bottom: 5.3333333333vw;
  }
}
.modal_bankcp .bankcp_cont dl:last-child {
  margin-bottom: 0;
}

.modal_bankcp .bankcp_cont dt {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .modal_bankcp .bankcp_cont dt {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    margin-bottom: 2.1333333333vw;
  }
}
.modal_bankcp .bankcp_cont dd {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  .modal_bankcp .bankcp_cont dd {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
/*---------------------------------------
  modal_backProgram
/*---------------------------------------*/
.modal_backProgram .modal_content {
  margin-top: 30px;
  padding: 32px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .modal_content {
    margin-top: 8vw;
    margin-bottom: 48vw;
    padding: 4.2666666667vw 0;
  }
}
@media screen and (min-width: 769px) and (max-height: 720px) {
  .modal_backProgram .modal_content {
    margin-top: 10.858%;
  }
}
.modal_backProgram sup {
  vertical-align: super;
}

.backProgram_topTtl {
  margin-bottom: 14px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  border-radius: 30px;
  background: #F57801;
  display: table;
  margin: 0 auto 30px;
  padding: 2px 20px;
}
@media screen and (max-width: 768px) {
  .backProgram_topTtl {
    margin-bottom: 2.1333333333vw;
    font-size: 4vw;
    letter-spacing: 0.128vw;
    font-size: 4.2vw;
    margin-bottom: 7vw;
  }
}

.modal_backProgram .backProgram_ttl {
  color: var(--Black, #333);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_ttl {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    margin-bottom: 4.2666666667vw;
  }
}
.modal_backProgram .backProgram_ttl sup {
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_ttl sup {
    font-size: 1.8666666667vw;
  }
}
.modal_backProgram .backProgram_detail {
  display: flex;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail {
    display: flex;
    padding: 0 3.7333333333vw;
  }
}
.modal_backProgram .backProgram_detail + dl {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail + dl {
    margin-top: 2.1333333333vw;
  }
}
.modal_backProgram .backProgram_detail dt {
  display: flex;
  width: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: var(--Pink-300, #F57801);
  color: var(--White, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail dt {
    width: 11.6vw;
    gap: 2.6666666667vw;
    font-size: 2.8vw;
    letter-spacing: 0.1066666667vw;
  }
}
.modal_backProgram .backProgram_detail dd {
  padding: 0 12px;
  width: calc(100% - 60px);
  background: var(--sub, #F3F3F3);
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail dd {
    padding: 0 2.6666666667vw;
    width: calc(100% - 9.0666666667vw);
  }
}
.modal_backProgram .backProgram_detail dd li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  position: relative;
  min-height: 76px;
  border-bottom: 2px dashed #514F4E;
  padding: 20px 0;
}
.modal_backProgram .backProgram_detail dd li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail dd li {
    gap: 2.6666666667vw;
    min-height: 13.8666666667vw;
  }
}
.modal_backProgram .backProgram_detail dd li:not(:last-child) {
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 42%;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail dd li:not(:last-child) {
    background-size: 92%;
  }
}
.modal_backProgram .backProgram_detail .tag {
  position: absolute;
  top: 16px;
  left: 0;
  border-radius: 15px;
  display: inline-block;
  padding: 2px 12px;
  background: var(--attention, #FFE100);
  color: var(--Pink-300, #E83C58);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail .tag {
    top: 1.6vw;
    border-radius: 2.1333333333vw;
    padding: 0.5333333333vw 1.3333333333vw;
    font-size: 2.1333333333vw;
    letter-spacing: 0.064vw;
  }
}
.modal_backProgram .backProgram_detail .box_txt {
  color: var(--Black, #333);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail .box_txt {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
.modal_backProgram .backProgram_detail .box_txt sup {
  font-size: 8px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail .box_txt sup {
    font-size: 1.6vw;
  }
}
.modal_backProgram .backProgram_detail .box_txt small {
  font-size: 14px;
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail .box_txt small {
    font-size: 2.1333333333vw;
    letter-spacing: 0.064vw;
  }
}
.modal_backProgram .backProgram_detail .box_img {
  width: 90px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail .box_img {
    width: 18.5333333333vw;
  }
}
.modal_backProgram .backProgram_detail.directDebit dd li:first-child {
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail.directDebit dd li:first-child {
    padding-top: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail.directDebit dd li {
    min-height: 16vw;
  }
}
.modal_backProgram .backProgram_detail.debitCard dt {
  font-size: 14px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_detail.debitCard dt {
    font-size: 2.1333333333vw;
    letter-spacing: -0.256vw;
  }
}
.modal_backProgram .backProgram_noteList {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_noteList {
    margin-top: 4.2666666667vw;
    padding: 0 3.7333333333vw;
  }
}
.modal_backProgram .backProgram_noteList li {
  font-size: 14px;
  margin-bottom: 1em;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
}
.modal_backProgram .backProgram_noteList li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .modal_backProgram .backProgram_noteList li {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
/*---------------------------------------
  #gascp_header
/*---------------------------------------*/
#gascp_header {
  width: 100%;
  position: relative;
  padding: 10px 40px;
  box-shadow: 0px 0px 10px 0px rgba(7, 1, 2, 0.1);
  background: #fff;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  #gascp_header {
    margin-bottom: 0vw;
    padding: 2.6666666667vw 5.3333333333vw;
    box-shadow: 0 0 1.3333333333vw 0 rgba(7, 1, 2, 0.1);
  }
}
#gascp_header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#gascp_header .logo_chuden {
  width: 207px;
}

@media screen and (max-width: 768px) {
  #gascp_header .logo_chuden {
    width: 27.7333333333vw;
  }
}
#gascp_header .logo_kurashilogo {
  width: 164px;
}

@media screen and (max-width: 768px) {
  #gascp_header .logo_kurashilogo {
    width: 24vw;
  }
}
#gascp_header .logo_katene {
  width: 115px;
}

@media screen and (max-width: 768px) {
  #gascp_header .logo_katene {
    width: 15.4666666667vw;
  }
  #gascp_header .logo_katene img {
    padding-top: 1.3333333333vw;
    vertical-align: top;
  }
}
/*---------------------------------------
  #gascp_footer
/*---------------------------------------*/
#gascp_footer {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #gascp_footer {
    background: #F4F4F4;
    padding-bottom: 20.5333333333vw;
  }
}
#gascp_footer .foot_head {
  color: #fff;
  background: #F57801;
}

#gascp_footer .faq_btn {
  padding: 40px 0;
  display: block;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #gascp_footer .faq_btn {
    padding: 8vw 0;
    font-size: 3.8vw;
  }
}
#gascp_footer .faq_btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #gascp_footer .faq_btn::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
#gascp_footer .inquiryBox_ttl {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
}

@media screen and (max-width: 768px) {
  #gascp_footer .inquiryBox_ttl {
    margin-bottom: 4.2666666667vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
#gascp_footer .inquiryBox_number {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  #gascp_footer .inquiryBox_number {
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
  }
}
#gascp_footer .inquiryBox_number a {
  text-align: center;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 46.2px */
  letter-spacing: 1.68px;
}

@media screen and (max-width: 768px) {
  #gascp_footer .inquiryBox_number a {
    font-size: 7.4666666667vw;
    letter-spacing: 0.224vw;
  }
}
#gascp_footer .inquiryBox_attention {
  margin-bottom: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  #gascp_footer .inquiryBox_attention {
    margin-bottom: 4.2666666667vw;
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
  }
}
#gascp_footer .inquiryBox_attentionList li {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  #gascp_footer .inquiryBox_attentionList li {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
#gascp_footer .foot_bottom {
  padding: 30px 0 60px;
}

@media screen and not (max-width: 768px) {
  #gascp_footer .foot_bottom .inner {
    display: flex;
    max-width: 1000px;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  #gascp_footer .foot_bottom {
    padding: 4vw 5.3333333333vw 1.3333333333vw;
  }
}
#gascp_footer .footer-copyright {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
@media screen and not (max-width: 768px) {
  #gascp_footer .footer-copyright {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #gascp_footer .footer-copyright {
    margin-bottom: 4vw;
    padding-bottom: 9.0666666667vw;
  }
}
#gascp_footer .footer-copyright a {
  display: block;
  width: 200px;
  margin: 0 auto 29px;
}
@media screen and not (max-width: 768px) {
  #gascp_footer .footer-copyright a {
    margin-inline: 0;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #gascp_footer .footer-copyright a {
    width: 40vw;
    margin-bottom: 3.7333333333vw;
  }
}
#gascp_footer .footer-copyright p {
  color: #595757;
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
  /* 180% */
}
@media screen and not (max-width: 768px) {
  #gascp_footer .footer-copyright p {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  #gascp_footer .footer-copyright p {
    font-size: 2.6666666667vw;
    line-height: 4vw;
  }
}
#gascp_footer .footer-corporate {
  width: 470px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #gascp_footer .footer-corporate {
    width: 78.4vw;
  }
}
.fixed_btn {
  display: none;
  width: 355px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  .fixed_btn {
    width: 94.6666666667vw;
    right: 2.6666666667vw;
    bottom: 0;
  }
}
.pageSelection_cont {
  min-height: calc(100vh - 88px);
  padding: 99px 0 147px;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont {
    min-height: calc(100vh - 14.6666666667vw);
    padding: 42.6666666667vw 0 73.0666666667vw;
  }
}
.pageSelection_cont .pageSelection_ttl {
  margin-bottom: 24px;
  color: var(--Pink-400, #ff72b0);
  line-height: 150%;
  /* 54px */
  font-size: 36px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  letter-spacing: 2.16px;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont .pageSelection_ttl {
    margin-bottom: 4.2666666667vw;
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.pageSelection_cont .pageSelection_txt {
  margin-bottom: 24px;
  line-height: 150%;
  /* 30px */
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont .pageSelection_txt {
    margin-bottom: 4.2666666667vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.pageSelection_cont .pageSelection_btnWrap {
  display: flex;
  gap: 32px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont .pageSelection_btnWrap {
    gap: 6.4vw;
    flex-wrap: wrap;
  }
}
.pageSelection_cont .pageSelection_btn {
  display: flex;
  width: 420px;
  height: 200px;
  position: relative;
  border: 3px solid var(--White, #fff);
  border-radius: 16px;
  box-shadow: 0px 8px 0px 0px #dc327b;
  color: var(--White, #fff);
  line-height: 150%;
  /* 42px */
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.84px;
  background: var(--Pink-200, #ff9ec8);
  transition: 0.3s;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont .pageSelection_btn {
    width: 87.2vw;
    height: 26.6666666667vw;
    border: 0.8vw solid var(--White, #fff);
    border-radius: 4.2666666667vw;
    box-shadow: 0px 2.1333333333vw 0px 0px #dc327b;
    font-size: 4.8vw;
    letter-spacing: 0.194vw;
  }
}
@media screen and (min-width: 769px) {
  .pageSelection_cont .pageSelection_btn:hover {
    box-shadow: 0px 0px 0px 0px #dc327b;
    transform: translateY(8px);
  }
}
.pageSelection_cont .pageSelection_btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 21px;
  bottom: 21px;
  background-image: url(../img/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .pageSelection_cont .pageSelection_btn::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    right: 2.4vw;
    bottom: 2.4vw;
  }
}
/*---------------------------------------
  mv
/*---------------------------------------*/
.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/bg_mv.jpg) no-repeat center/cover, linear-gradient(180deg, #FFF 0%, #F3F3F3 66.83%);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mv {
    background: none;
  }
}
.mv .txtBtn_wrap {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .mv .txtBtn_wrap {
    margin-top: 2vw;
    margin-bottom: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    padding-top: 0;
    top: 0;
  }
}
.mv_img {
  width: 1000px;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .mv_img {
    width: 100%;
    position: relative;
    margin-top: 0;
  }
}

.mv .mv_imgArea {
  position: relative;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .mv .mv_imgArea {
    height: 100%;
  }
}

.mv_note {
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 5px;
}
.mv_note .bold {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv_note {
    font-size: 2.6vw;
    position: absolute;
    bottom: 2vw;
    left: 0;
    width: 100%;
    padding: 0 2vw 1vw;
  }
}
.mv_note a {
  text-decoration: underline;
}
.mv_note a:hover {
  text-decoration: none;
}

/*
@media screen and (min-width: 769px) and (max-width: 1010px) {
  .mv .inner {
    padding-bottom: 150px;
  }
}*/
@media screen and (max-width: 768px) {
  .mv .mv_imgArea {
    padding-bottom: 0.008vw;
  }
}
.mv_notewrap .note_txt {
  color: #000;
  font-size: 7.5px;
  line-height: 13px;
  /* 173.333% */
  letter-spacing: -0.15px;
}

.mv_cta {
  padding: 2px 0 14px 0;
  background: var(--orange);
  border-radius: 20px 20px 0px 0px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  transition: background 0.4s;
}
@media screen and (max-width: 768px) {
  .mv_cta {
    padding: 0.4vw 0vw 2.8vw 0vw;
    border-radius: 4vw 4vw 0 0;
  }
}
.mv_cta.scroll {
  background: none !important;
}
.mv_cta.scroll .mv_cta_ttl {
  opacity: 0 !important;
}

footer {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 0;
  }
}

.mv_cta_ttl {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  color: #fff;
  transition: opacity 0.4s;
}

.mv_cta .u-flex {
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .mv_cta .u-flex {
    gap: 5vw;
  }
}

.mv_cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 386px;
  height: 60px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 4px 4px 0px 0px rgb(145, 89, 36);
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border: 2px solid rgba(245, 120, 1, 0.65);
}
@media screen and (max-width: 768px) {
  .mv_cta-btn {
    gap: 3.2vw;
  }
}
@media screen and (max-width: 768px) {
  .mv_cta-btn .sp_small {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 768px) {
  .mv_cta-btn {
    font-size: 4.6vw;
    width: 41.6vw;
    height: 15.8vw;
    border-radius: 3vw;
    box-shadow: 1.2vw 1.2vw 0px 0px rgb(145, 89, 36);
    line-height: 1.1;
    letter-spacing: 0.08em;
    padding-top: 0.6vw;
  }
}

.mv_cta-btn ._ico {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .mv_cta-btn ._ico {
    width: 6vw;
  }
}

/*---------------------------------------
  campaign
/*---------------------------------------*/
.campaign {
  padding: 34px 0 28px;
}
@media screen and (max-width: 768px) {
  .campaign {
    padding: 4vw 0vw 7vw 0vw;
  }
}
.campaign .campaing_img {
  margin: 0 auto;
  width: 550px;
  border: 1px solid rgb(207, 207, 207);
  display: block;
}
@media screen and (max-width: 768px) {
  .campaign .campaing_img {
    width: 87.4vw;
  }
}
.campaign .campaing_img img {
  width: 100%;
}

.campaign_ttl {
  font-size: 24px;
  line-height: normal;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .campaign_ttl {
    font-size: 3.6vw;
    margin-bottom: 2vw;
    letter-spacing: 0px;
  }
}
.campaign_ttl.ttl_slash::before, .campaign_ttl.ttl_slash::after {
  content: "";
  display: inline-block;
  margin: 6px 0;
  background: #F57801;
  height: 2px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .campaign_ttl.ttl_slash::before, .campaign_ttl.ttl_slash::after {
    margin: 1vw 0vw;
    height: 0.4vw;
    width: 5vw;
  }
}
.campaign_ttl.ttl_slash::before {
  transform: rotate(-107.65deg);
}
.campaign_ttl.ttl_slash::after {
  transform: rotate(-72.35deg);
}

.campaing_img {
  width: 550px;
}

/*---------------------------------------
  introduction
/*---------------------------------------*/
.introduction {
  position: relative;
}

@media screen and (max-width: 768px) {
  .introduction .inner {
    max-width: 94vw;
  }
}
.introduction .intro_ttl {
  text-align: center;
  margin: 0 auto 11px;
  width: 405px;
}
@media screen and (max-width: 768px) {
  .introduction .intro_ttl {
    width: 81vw;
    margin-bottom: 5vw;
  }
}

.introduction .intro_noteWrap .note_txt {
  margin: 30px 0 10px;
}

.introduction .txtBtn_wrap {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .introduction .txtBtn_wrap {
    margin-bottom: 0;
  }
}
.introduction::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -76px;
  display: block;
  background: url(../img/arw_down01_pc.png) no-repeat left top/contain;
  width: 150px;
  height: 76px;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .introduction::after {
    width: 26.4vw;
    height: 11.4vw;
    bottom: -11.6vw;
  }
}

/*---------------------------------------
  conditions
/*---------------------------------------*/
.conditions {
  padding-top: 10px;
  background: #F4F4F4;
  position: relative;
}

@media screen and (max-width: 768px) {
  .conditions {
    padding-top: 40vw;
  }
}
.conditions .intro_ctaBox {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .conditions .intro_ctaBox {
    top: -13.3333333333vw;
  }
}
.conditions .intro_ctaBox .illust_ttl {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .conditions .intro_ctaBox .illust_ttl {
    margin-bottom: 2.6666666667vw;
  }
}
.conditions .intro_ctaBox dd {
  gap: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .conditions .intro_ctaBox dd {
    flex-direction: column;
    gap: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .conditions .intro_ctaBox .transfer_contBtn {
    margin-left: auto;
    margin-right: auto;
  }
}
.conditions .conditions_txtWrap {
  position: relative;
  text-align: center;
  width: 680px;
  margin: 0 auto;
  padding: 88px 0 24px;
}

@media screen and (max-width: 768px) {
  .conditions .conditions_txtWrap {
    width: 100%;
    padding: 2.8vw 0 11.7333333333vw;
  }
}
.conditions .conditions_txtWrap .conditions_txt {
  position: relative;
  display: inline-block;
  color: var(--Pink-400, #FF72B0);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  padding: 27px 0;
}

@media screen and (max-width: 768px) {
  .conditions .conditions_txtWrap .conditions_txt {
    font-size: 5.3333333333vw;
    letter-spacing: 0.16vw;
    padding: 6.1333333333vw 0;
  }
}
.conditions .conditions_txtWrap .conditions_txt::before,
.conditions .conditions_txtWrap .conditions_txt::after {
  content: "";
  display: block;
  width: 608px;
  height: 17px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/frame01.svg);
  background-repeat: no-repeat;
  background-position: right center;
}

@media screen and (max-width: 768px) {
  .conditions .conditions_txtWrap .conditions_txt::before,
  .conditions .conditions_txtWrap .conditions_txt::after {
    width: 86.9333333333vw;
    height: 3.7333333333vw;
  }
}
.conditions .conditions_txtWrap .conditions_txt::before {
  top: 0;
}

.conditions .conditions_txtWrap .conditions_txt::after {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}

.conditions .conditions_txtWrap .character_img {
  width: 200px;
  position: absolute;
  bottom: -90px;
  right: 0;
  margin-right: -30px;
}

@media screen and (max-width: 768px) {
  .conditions .conditions_txtWrap .character_img {
    width: 45.3333333333vw;
    margin-right: -8vw;
    bottom: -17.3333333333vw;
  }
}
.conditions .accordion_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .conditions .accordion_box {
    flex-direction: column;
    gap: 20px;
  }
}
.conditions .accordion_btn {
  margin-right: 20px;
  order: 1;
}

@media screen and (max-width: 768px) {
  .conditions .accordion_btn {
    margin-right: 0;
  }
}
.conditions .modal_txtBtn {
  order: 2;
}

@media screen and (max-width: 768px) {
  .conditions .modal_txtBtn {
    order: 3;
  }
}
.conditions .accordion_cont {
  order: 3;
}

@media screen and (max-width: 768px) {
  .conditions .accordion_cont {
    order: 2;
  }
}
/*---------------------------------------
  otokuInfo
/*---------------------------------------*/
.otokuInfo {
  padding-bottom: 40px;
  position: relative;
  background: var(--sub, #FFFEDE);
}

@media screen and (max-width: 768px) {
  .otokuInfo {
    padding-bottom: 6.4vw;
  }
}
.otokuInfo .otokuInfo_ttl {
  padding: 40px 0;
  background-image: url(../img/bg01_pc.png);
  text-align: center;
  color: var(--White, #FFF);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  background-size: auto 100%;
  letter-spacing: 2.16px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_ttl {
    background-image: url(../img/bg01_sp.png);
    padding: 6.4vw 0 4.2666666667vw;
    font-size: 7.4666666667vw;
    letter-spacing: 0.224vw;
  }
}
@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_ttl img {
    width: 70vw;
  }
}
.otokuInfo .otokuInfo_ttl small {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_ttl small {
    font-size: 4.8vw;
    margin-bottom: 0;
    letter-spacing: 0.144vw;
  }
}
.otokuInfo .illust_ttl {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .illust_ttl {
    margin-top: 6vw;
  }
}
.otokuInfo .otokuInfo_txt01 {
  max-width: 682px;
  width: 100%;
  margin: 0 auto 24px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_txt01 {
    max-width: 87.2vw;
    margin-bottom: 3.2vw;
  }
}
.otokuInfo .otokuInfo_txt02 {
  max-width: 682px;
  width: 100%;
  margin: 0 auto 15px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_txt02 {
    max-width: 87.2vw;
    margin-bottom: 3.2vw;
  }
}
.otokuInfo .otokuInfo_btnWrap {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_btnWrap {
    margin-bottom: 4.5333333333vw;
    flex-direction: column;
    gap: 1.0666666667vw;
  }
}
.otokuInfo .otokuInfo_btnWrap li {
  max-width: 308px;
  width: 30.8%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_btnWrap li {
    max-width: 87.2vw;
    width: 87.2vw;
  }
}
.otokuInfo .otokuInfo_btnWrap li:nth-child(1) {
  z-index: 8;
}

.otokuInfo .otokuInfo_btnWrap li:nth-child(2) {
  z-index: 6;
}

.otokuInfo .otokuInfo_btnWrap li::after {
  content: "";
  display: block;
  width: 8.44155844%;
  height: 30.6%;
  position: absolute;
  top: 50%;
  right: -10.715%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../img/icon_plus01.svg);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_btnWrap li::after {
    content: "";
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    top: initial;
    bottom: -4.2666666667vw;
    right: initial;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.otokuInfo .otokuInfo_btnWrap li:last-child::after {
  content: none;
}

.otokuInfo .otokuInfo_btnWrap a {
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  transition: 0.3s;
  border-radius: 0 0 16px 16px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .otokuInfo_btnWrap a {
    max-width: 87.2vw;
    border-radius: 0;
  }
}
.otokuInfo .otokuInfo_btnWrap a img {
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  .otokuInfo .otokuInfo_btnWrap a:hover img {
    transform: translateY(8px);
  }
}
.otokuInfo .note_txt {
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .note_txt {
    padding: 0 6.4vw;
    margin-bottom: 6.1333333333vw;
  }
}
.otokuInfo .modal_txtBtn {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .otokuInfo .modal_txtBtn {
    margin-right: 2.6666666667vw;
  }
}
.otokuInfo .accordion_cont {
  background: none;
  max-width: 936px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .otokuInfo .accordion_cont {
    padding: 0;
  }
}
/*---------------------------------------
  cpDetail_cont
/*---------------------------------------*/
.cpDetail_cont {
  background: #F4F4F4;
  padding: 80px 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 580px;
  /* otoku01 */
  /* otoku02 */
  /* otoku03 */
  /* otoku_plus */
}
.cpDetail_cont .intro_end {
  text-align: center;
  font-size: 26.33px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .cpDetail_cont .intro_end {
    font-size: 5.2vw;
    line-height: 1.5;
    margin-top: 4vw;
  }
}
.cpDetail_cont .intro_end .textLine {
  font-size: 35.306px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 100%;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cpDetail_cont .intro_end .textLine {
    font-size: 7vw;
    display: inline-block;
    margin-bottom: 2vw;
    padding-bottom: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .cpDetail_cont {
    padding: 9.6vw 0 13.3333333333vw;
    background-position: 50% -61vw;
    background-size: cover;
  }
}
.cpDetail_cont .cpDetail_list > li {
  position: relative;
  margin-bottom: 100px;
  padding-top: 18px;
  margin-top: -18px;
  padding: 0px !important;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_list > li {
    margin-bottom: 20.6vw;
    width: 94vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3.4666666667vw;
    margin-top: -3.4666666667vw;
  }
}
.cpDetail_cont .cpDetail_list > li:last-child {
  margin-bottom: 0;
}

.cpDetail_cont .cpDetail_list > li#otoku03 {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_list > li#otoku03 {
    margin-bottom: 3.7333333333vw;
  }
}
.cpDetail_cont .cpDetail_list > li#otoku03::after {
  width: 66px;
  height: 66px;
  bottom: -38px;
  border: none;
  background-image: url(../img/icon_plus02.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_list > li#otoku03::after {
    width: 11.7333333333vw;
    height: 11.7333333333vw;
    bottom: -6.6666666667vw;
  }
}
.cpDetail_cont .cpDetail_list > li#otoku_plus {
  position: relative;
  z-index: 3;
}

.cpDetail_cont .list_head {
  padding: 23px 0 23px;
  text-align: center;
  position: relative;
  border-radius: 16px 16px 0 0;
  border: 3px solid var(--Pink-400, #F57801);
  border-bottom: none;
  background-size: 100%;
  background-color: #F57801;
  color: #fff;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_head {
    padding: 4.5333333333vw 0 4vw;
    border-radius: 4.2666666667vw 4.2666666667vw 0 0;
    border: 0.8vw solid var(--Pink-400, #F57801);
    border-bottom: none;
  }
}
.cpDetail_cont .list_head .ttl_tag {
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 140px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -48px;
  padding-top: 4px;
  border: 2px solid var(--Pink-400, #F57801);
  background: #F57801;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.54px;
  z-index: 5;
  padding-top: 16px;
}
.cpDetail_cont .list_head .ttl_tag .textRobot {
  font-size: 28px;
  letter-spacing: 0.84px;
}

.cpDetail_ttl {
  z-index: 1000;
  position: relative;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .cpDetail_ttl {
    font-size: 4.8vw;
  }
}
.cpDetail_ttl .textLine {
  padding-bottom: 10px;
  background-repeat: no-repeat;
  background-image: url(../img/textLine01.svg);
  background-size: 336px;
  background-position: bottom;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .cpDetail_ttl .textLine {
    padding-bottom: 1vw;
  }
}

@media screen and (max-width: 768px) {
  #otoku01 .cpDetail_ttl .textLine {
    background-image: url(../img/sp_underLine01.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
  #otoku02 .cpDetail_ttl .textLine {
    background-image: url(../img/sp_underLine02.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
  #otoku03 .cpDetail_ttl .textLine {
    background-image: url(../img/sp_underLine03.png);
    background-size: 100%;
    background-repeat: no-repeat;
  }
}
.note_txt {
  max-width: 850px;
  margin: 0 auto;
}

.list_cont .u-flex {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_head .ttl_tag {
    width: 21.6vw;
    height: 21.6vw;
    top: -11.6vw;
    border-radius: 21.6vw;
    font-size: 3.6vw;
    letter-spacing: 0.096vw;
  }
}
.cpDetail_cont .list_head h2 {
  color: var(--White, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_head h2 {
    font-size: 4.2666666667vw;
    letter-spacing: 0.128vw;
  }
}
.cpDetail_cont .list_head .head_img {
  max-width: 407px;
  width: 100%;
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_head .head_img {
    max-width: 100%;
    width: 100%;
    top: -2vw;
  }
}
.cpDetail_cont .list_cont {
  padding: 48px 20px 20px;
  background: var(--White, #FFF);
  border-radius: 0 0 16px 16px;
  border: 3px solid var(--Pink-400, #F57801);
  border-top: none;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont {
    padding: 5.3333333333vw 3.4666666667vw 4vw;
    border-radius: 0 0 4.2666666667vw 4.2666666667vw;
    border: 0.8vw solid var(--Pink-400, #F57801);
    border-top: none;
  }
}
.cpDetail_cont .list_cont .list_txt {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .list_txt {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.cpDetail_cont .list_cont .amount_box {
  max-width: 682px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  height: 84px;
  padding: 0px 24px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 6px;
  background: var(--Pink-400, #FF72B0);
  color: var(--White, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .amount_box {
    max-width: 100%;
    height: 13.3333333333vw;
    padding: 0 0;
    gap: 0.5333333333vw;
    border-radius: 1.6vw;
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.cpDetail_cont .list_cont .amount_box .num {
  color: var(--attention, #FFFF01);
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -2.4px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .amount_box .num {
    font-size: 9.9vw;
    letter-spacing: -0.3733333333vw;
  }
}
.cpDetail_cont .list_cont .amount_box .icon {
  width: 38px;
  display: inline-block;
  margin-left: 3px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .amount_box .icon {
    width: 5.3333333333vw;
    margin-left: 0;
  }
}
.cpDetail_cont .list_cont .amount_box sup {
  font-feature-settings: "sups" on;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .amount_box sup {
    font-size: 1.6vw;
  }
}
.cpDetail_cont .list_cont .amount_box .f_noto {
  font-size: 53px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .amount_box .f_noto {
    font-size: 6.9333333333vw;
  }
}
.cpDetail_cont .list_cont .result_box {
  text-align: center;
}

.cpDetail_cont .list_cont .result_box .result_note {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .result_box .result_note {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
.cpDetail_cont .list_cont .result_box .result_txt {
  margin-bottom: 20px;
  display: inline-block;
  width: 331px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 3px;
  background: var(--Pink-300, #FF88BC);
  color: var(--White, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .result_box .result_txt {
    margin-bottom: 5.3333333333vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    padding: 2.6666666667vw 0;
    width: 59vw;
    gap: 0.7vw;
  }
}
.cpDetail_cont .list_cont .result_box .num {
  color: var(--attention, #FFFF01);
  font-size: 45px;
  font-style: normal;
  font-weight: 900;
  line-height: 27%;
  /* 12.15px */
  letter-spacing: -1.8px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .result_box .num {
    font-size: 6.6vw;
    letter-spacing: -0.2666666667vw;
  }
}
.cpDetail_cont .list_cont .result_box .f_noto {
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .result_box .f_noto {
    font-size: 4.2666666667vw;
  }
}
.cpDetail_cont .list_cont .txtBtn_wrap {
  text-align: center;
  /* margin-top: 30px; */
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .cpDetail_cont .list_cont .txtBtn_wrap {
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
}

.cpDetail_cont #otoku01 .list_cont .list_txt {
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .list_txt {
    margin-bottom: 1.6vw;
  }
}
.cpDetail_cont #otoku01 .list_cont .amount_box {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .amount_box {
    margin-bottom: 6.4vw;
  }
}
.cpDetail_cont #otoku01 .list_cont .graph_img {
  max-width: 682px;
  width: 100%;
  margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .graph_img {
    max-width: 77.6vw;
    margin-bottom: 0;
  }
}
.cpDetail_cont #otoku01 .list_cont .result_box {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .result_box {
    margin-bottom: 6.1333333333vw;
  }
}
.cpDetail_cont #otoku01 .list_cont .result_box .arrow {
  width: 21px;
  height: 18px;
  margin: -2px auto 0;
}

.cpDetail_cont #otoku01 .list_cont .result_box .arrow img {
  vertical-align: baseline;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .result_box .arrow {
    width: 5.6vw;
    height: 4.8vw;
  }
  .cpDetail_cont #otoku01 .list_cont .result_box .arrow img {
    height: 100%;
    vertical-align: top;
  }
}
.cpDetail_cont #otoku01 .list_cont .result_box .fukidashi {
  text-align: center;
}

.cpDetail_cont #otoku01 .list_cont .result_box .fukidashi p {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 23px;
  background: var(--Pink-0, #FFE6F1);
  color: var(--Pink-300, #FF88BC);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .result_box .fukidashi p {
    padding: 2.1333333333vw 3.2vw;
    border-radius: 4.8vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.cpDetail_cont #otoku01 .list_cont .result_box .fukidashi p::before {
  content: "";
  display: block;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #FFE6F1 transparent;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .result_box .fukidashi p::before {
    top: -3.1vw;
    border-width: 0 2.1333333333vw 3.2vw 2.1333333333vw;
  }
}
.cpDetail_cont #otoku01 .list_cont .note_txt {
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku01 .list_cont .note_txt {
    padding-top: 5.8666666667vw;
    margin-bottom: 5.8666666667vw;
  }
}
.cpDetail_cont #otoku02 .list_cont .point_img {
  width: 374px;
  margin: 7px auto;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .list_cont .point_img {
    width: 78.1333333333vw;
    margin: 1.6vw auto 2.1333333333vw;
  }
}
.cpDetail_cont #otoku02 .list_cont .amount_box {
  margin-top: 7px;
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .list_cont .amount_box {
    margin-top: 1.6vw;
    margin-bottom: 6.9333333333vw;
  }
}
.cpDetail_cont #otoku02 .list_cont .txtBtn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .list_cont .txtBtn_wrap {
    gap: 2.9333333333vw;
    margin-bottom: 6.4vw;
  }
}
.cpDetail_cont #otoku02 .list_cont .illust_ttl {
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .list_cont .illust_ttl {
    margin-bottom: 1.0666666667vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box {
  max-width: 682px;
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto 24px;
  border: 2px dashed var(--Pink-300, #FF88BC);
  background: #FFF7FB;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box {
    max-width: 100%;
    margin-bottom: 6.4vw;
    border: 0.5333333333vw dashed var(--Pink-300, #FF88BC);
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_btn {
  font-size: 20px;
  font-style: normal;
  gap: 15px;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_btn {
    font-size: 5.3333333333vw;
    gap: 2.6666666667vw;
    letter-spacing: 0.16vw;
    padding: 5.3333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_btn span {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_btn span {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_btn span::before,
.cpDetail_cont #otoku02 .accordion_box .accordion_btn span::after {
  content: "";
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #666;
  transition: 0.3s;
  position: absolute;
  top: 6px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_btn span::before,
  .cpDetail_cont #otoku02 .accordion_box .accordion_btn span::after {
    border-radius: 0.5333333333vw;
    height: 0.8vw;
    top: 1.6vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_btn span::after {
  transform: rotate(90deg);
}

.cpDetail_cont #otoku02 .accordion_box .accordion_btn.active span::after {
  transform: rotate(0);
}

.cpDetail_cont #otoku02 .accordion_box .accordion_cont {
  padding-bottom: 20px;
  padding-top: 16px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_cont {
    padding: 4.2666666667vw 5.3333333333vw 5.3333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_cont::before {
  content: "";
  display: block;
  width: 233px;
  height: 2px;
  background-image: url(../img/line02.svg);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_cont::before {
    width: 66.9333333333vw;
    height: 0.5333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_cont p {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_cont p {
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .accordion_cont p + p {
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .accordion_cont p + p {
    margin-top: 4.2666666667vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap span {
  position: absolute;
  display: block;
  border-style: solid;
  border-color: transparent #ff9ec8 transparent transparent;
  border-width: 0px 15px 15px 0px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap span {
    border-width: 0px 4vw 4vw 0px;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(1) {
  border-color: #ff9ec8 transparent transparent transparent;
  border-width: 15px 15px 0px 0px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(1) {
    border-width: 4vw 4vw 0px 0px;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(2) {
  border-color: transparent #ff9ec8 transparent transparent;
  border-width: 0px 15px 15px 0px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(2) {
    border-width: 0px 4vw 4vw 0px;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(3) {
  border-color: transparent transparent #ff9ec8 transparent;
  border-width: 0px 0px 15px 15px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(3) {
    border-width: 0px 0px 4vw 4vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(4) {
  border-color: transparent transparent transparent #ff9ec8;
  border-width: 15px 0px 0px 15px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap span:nth-child(4) {
    border-width: 4vw 0px 0px 4vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap .top {
  top: -2px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap .top {
    top: -0.5333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap .bottom {
  bottom: -2px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap .bottom {
    bottom: -0.5333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap .left {
  left: -2px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap .left {
    left: -0.5333333333vw;
  }
}
.cpDetail_cont #otoku02 .accordion_box .object_wrap .right {
  right: -2px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku02 .accordion_box .object_wrap .right {
    right: -0.5333333333vw;
  }
}
.cpDetail_cont #otoku03 .list_head .head_img {
  max-width: 680px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_head .head_img {
    max-width: 680px;
  }
}
.cpDetail_cont #otoku03 .list_cont {
  padding-bottom: 40px;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont {
    padding-bottom: 5.3333333333vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .list_txt {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .list_txt {
    margin-bottom: 1.3333333333vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .illust_ttl {
  margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .illust_ttl {
    margin-bottom: 1.8666666667vw;
  }
  .cpDetail_cont #otoku03 .list_cont .illust_ttl span {
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .amount_box {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .amount_box {
    margin-bottom: 6.4vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .graph_img {
  max-width: 682px;
  width: 100%;
  margin: 0 auto 0;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .graph_img {
    max-width: 77.6vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .result_box {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .result_box {
    margin-bottom: 8vw;
  }
}
.cpDetail_cont #otoku03 .list_cont .result_box .result_txt {
  background: var(--Pink-200, #FF9EC8);
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .result_box .result_txt {
    margin-bottom: 6.1333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .list_cont .result_box .result_note {
    text-align: left;
  }
}
.cpDetail_cont #otoku03 .accordion_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cpDetail_cont #otoku03 .accordion_box .accordion_btn {
  order: 1;
  margin-right: 22px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .accordion_box .accordion_btn {
    margin-right: 0;
    margin-bottom: 2.6666666667vw;
  }
}
.cpDetail_cont #otoku03 .accordion_box .modal_txtBtn {
  order: 2;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .accordion_box .modal_txtBtn {
    order: 3;
  }
}
.cpDetail_cont #otoku03 .accordion_box .modal_txtBtn::before,
.cpDetail_cont #otoku03 .accordion_box .modal_txtBtn::after {
  content: none;
}

.cpDetail_cont #otoku03 .accordion_box .modal_txtBtn span {
  width: 9px;
  position: absolute;
  top: 10px;
  right: 5px;
  height: 9px;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-color: #666666 transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .accordion_box .modal_txtBtn span {
    width: 2.4vw;
    top: 1.8666666667vw;
    right: 1.3333333333vw;
    height: 2.4vw;
    border-width: 1.6vw 1.2vw 0 1.2vw;
  }
}
.cpDetail_cont #otoku03 .accordion_box .accordion_cont {
  order: 3;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku03 .accordion_box .accordion_cont {
    order: 2;
    margin-top: 1.6vw;
    margin-bottom: 4.2666666667vw;
    padding: 0 4.8vw;
  }
}
.cpDetail_cont #otoku_plus .list_head {
  background-image: url(../img/bg04_pc.png);
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku_plus .list_head {
    background-image: url(../img/bg03_sp.png);
  }
}
.cpDetail_cont #otoku_plus .list_cont .list_txt {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku_plus .list_cont .list_txt {
    margin-bottom: 1.6vw;
  }
}
.cpDetail_cont #otoku_plus .list_cont .illust_ttl {
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku_plus .list_cont .illust_ttl {
    margin-bottom: 1.8666666667vw;
  }
  .cpDetail_cont #otoku_plus .list_cont .illust_ttl span {
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.cpDetail_cont #otoku_plus .list_cont .amount_box {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku_plus .list_cont .amount_box {
    margin-bottom: 6.4vw;
  }
}
.cpDetail_cont #otoku_plus .list_cont .note_txt {
  margin-bottom: 26px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont #otoku_plus .list_cont .note_txt {
    margin-bottom: 6.4vw;
  }
}
.cpDetail_cont .cpDetail_messageTxt {
  max-width: 800px;
  width: 100%;
  margin: 10px auto 0;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_messageTxt {
    max-width: 87.2vw;
    position: relative;
    margin-top: -4.2666666667vw;
    z-index: 5;
  }
}
.cpDetail_cont .cpDetail_ctaWrap {
  display: flex;
  gap: 18px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_ctaWrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.3333333333vw;
  }
}
.cpDetail_cont .cpDetail_ctaWrap dl {
  max-width: 400px;
  width: 40%;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_ctaWrap dl {
    max-width: 90.6666666667vw;
    width: 90.6666666667vw;
    margin: 0 auto;
  }
}
.cpDetail_cont .cpDetail_ctaWrap .illust_ttl {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .cpDetail_cont .cpDetail_ctaWrap .illust_ttl {
    margin-bottom: 3.2vw;
  }
}
/*---------------------------------------
  cpCharm_cont
/*---------------------------------------*/
.cpCharm_cont .cpCharm_btnWrap {
  background: #ECECEC;
  padding: 32px 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap {
    padding: 8.5333333333vw 0;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap .inner {
    max-width: 87.2vw;
  }
}
.cpCharm_cont .cpCharm_btnWrap .cpCharm_btnList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap .cpCharm_btnList {
    flex-direction: column;
    gap: 4.5333333333vw;
  }
}
.cpCharm_cont .cpCharm_btnWrap .cpCharm_btnList li {
  max-width: 320px;
  width: 32%;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap .cpCharm_btnList li {
    max-width: 100%;
    width: 100%;
  }
}
.cpCharm_cont .cpCharm_btnWrap .cpCharm_btn {
  width: 100%;
  padding: 13px 40px 13px 21px;
  border-radius: 16px;
  text-align: center;
  border: 3px solid var(--Pink-300, #FF88BC);
  background: var(--White, #FFF);
  box-shadow: 0px 8px 0px 0px #FF72B0;
  color: var(--Pink-300, #FF88BC);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  display: block;
  letter-spacing: 0.48px;
  transition: 0.3s;
  background-image: url(../img/arrow02.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: 96% 50%;
}

@media screen and (min-width: 769px) {
  .cpCharm_cont .cpCharm_btnWrap .cpCharm_btn:hover {
    box-shadow: 0px 0px 0px 0px #FF72B0;
    transform: translateY(8px);
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap .cpCharm_btn {
    max-width: 100%;
    width: 100%;
    padding: 4.2666666667vw 4.2666666667vw 4.2666666667vw 0;
    border-radius: 4.2666666667vw;
    border: 0.8vw solid var(--Pink-300, #FF88BC);
    box-shadow: 0px 2.1333333333vw 0px 0px #FF72B0;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    background-size: 5.3333333333vw auto;
    background-position: 97% 50%;
  }
}
.cpCharm_cont .cpCharm_btnWrap .cpCharm_btn span {
  margin-top: 4px;
  color: var(--White, #FFF);
  font-size: 18px;
  width: 100%;
  letter-spacing: 0.54px;
  border-radius: 17px;
  padding: 3px 0 6px;
  display: inline-block;
  background: var(--Pink-300, #FF88BC);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_btnWrap .cpCharm_btn span {
    margin-top: 0;
    margin-left: 0.8vw;
    font-size: 3.7333333333vw;
    width: auto;
    letter-spacing: 0.112vw;
    border-radius: 3.7333333333vw;
    padding: 0 2.6666666667vw;
  }
}
.cpCharm_cont .cpCharm_contWrap {
  padding: 70px 0 160px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_contWrap {
    padding: 10vw 0 16vw;
  }
}
.cpCharm_cont .procedure_cont {
  margin-bottom: 80px;
}

.cpCharm_cont .procedure_cont:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .procedure_cont {
    margin-bottom: 12.8vw;
  }
}
.cpCharm_cont .procedure_cont h2.illust_ttl {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .procedure_cont h2.illust_ttl {
    margin-bottom: 5.3333333333vw;
    font-size: 32px;
  }
}
.cpCharm_cont .procedure_cont h2.illust_ttl span:nth-of-type(1) {
  font-size: 25px;
  color: white;
  padding-left: 2px;
  padding-right: 2px;
  letter-spacing: 0.84px;
  background-color: #ea4a64;
  /* ←赤ピンク */
}
@media screen and (max-width: 768px) {
  .cpCharm_cont .procedure_cont h2.illust_ttl span:nth-of-type(1) {
    font-size: 5vw;
    padding-left: 0.4vw;
    padding-right: 0.4vw;
    letter-spacing: 0.168vw;
  }
}

.cpCharm_cont .procedure_cont h2.illust_ttl span:nth-of-type(2) {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont .procedure_cont h2.illust_ttl span:nth-of-type(2) {
    font-size: 8vw;
  }
}

.cpCharm_cont .procedure_cont h2.illust_ttl span .left path,
.cpCharm_cont .procedure_cont h2.illust_ttl span .right path {
  stroke: #FF88BC;
}

.cpCharm_cont .procedure_cont h2.illust_ttl span .left circle,
.cpCharm_cont .procedure_cont h2.illust_ttl span .right circle {
  fill: #FF88BC;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont .procedure_cont h2.illust_ttl span {
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont .cpCharm_contBtnWrap {
    margin-bottom: 11.2vw;
  }
  .cpCharm_cont .cpCharm_contBtnWrap > div {
    display: flex;
    justify-content: center;
    gap: 2.6666666667vw;
  }
  .cpCharm_cont .cpCharm_contBtnWrap a {
    width: 42.1333333333vw;
    padding: 3.4666666667vw 1.8666666667vw 3.2vw 1.8666666667vw;
    display: flex;
    border-radius: 4.2666666667vw;
    border: 0.8vw solid var(--White, #FFF);
    background: var(--Pink-300, #FF88BC);
    box-shadow: 0px 8px 0px 0px #FF539E;
    color: var(--White, #FFF);
    font-size: 3.7333333333vw;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 0.112vw;
    position: relative;
    gap: 1.8666666667vw;
    justify-content: flex-end;
    align-items: center;
  }
  .cpCharm_cont .cpCharm_contBtnWrap a::after {
    content: "";
    display: block;
    width: 4.8vw;
    height: 4.8vw;
    transform: rotate(90deg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../img/arrow01.svg);
  }
  .cpCharm_cont .cpCharm_contBtnWrap a .tag {
    color: var(--Pink-300, #FF88BC);
    text-align: center;
    font-size: 3.7333333333vw;
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    line-height: 1;
    margin-bottom: 1.3333333333vw;
    letter-spacing: 0.112vw;
    padding: 1.3333333333vw 2.6666666667vw 1.6vw 2.6666666667vw;
    border-radius: 3.7333333333vw;
    background: var(--White, #FFF);
  }
}
.cpCharm_cont #cpCharm01 {
  padding-top: 0;
  /* cpCharm01_box01 */
  /* cpCharm01_box02 */
}

.cpCharm_cont #cpCharm01 .procedure_boxWrap {
  display: flex;
  gap: 4%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap {
    flex-direction: column;
    align-items: center;
    gap: 9.0666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_box {
  max-width: 480px;
  width: 48%;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_box {
    max-width: 93.6vw;
    width: 93.6vw;
    margin-top: -3.7333333333vw;
    border: 1.0666666667vw solid var(--Pink-300, #EB6A7F);
    border-radius: 22px;
    padding-bottom: 7.6vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxHead {
  padding: 18px 0;
  position: relative;
  background-color: #EB6A7F;
  border-radius: 30px 30px 0 0;
  color: white;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxHead {
    font-size: 6.4vw;
    padding: 3.6vw 0;
  }
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxHead {
    padding: 4.4vw;
    min-height: initial;
    border-radius: 16px 16px 0 0;
  }
}
.cpCharm_cont #cpCharm01 .fukidashi {
  display: inline-block;
  color: var(--White, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  display: flex;
  width: 227px;
  height: 44px;
  margin: 0 auto;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px 6px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 26px;
  background: var(--red, #EB6A7F);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .fukidashi {
    font-size: 4.2666666667vw;
    letter-spacing: 0.128vw;
    width: 50.6666666667vw;
    height: 7.4666666667vw;
    top: -3.7333333333vw;
    padding: 0;
    border-radius: 3.4666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .fukidashi::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 6px 4px 0 4px;
  border-color: var(--red, #EB6A7F) transparent transparent transparent;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .fukidashi::after {
    bottom: -1.3333333333vw;
    border-width: 1.6vw 1.0666666667vw 0 1.0666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .head_txt01 {
  color: var(--Pink-300, #EB6A7F);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  margin-bottom: 16px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .head_txt01 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_txt01 {
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
    margin-bottom: 2.1333333333vw;
  }
}
.cpCharm_cont #cpCharm01 .head_ttl {
  color: var(--White, #FFF);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.16px;
  display: inline-block;
  border-radius: 6px;
  background: var(--Pink-300, #FF88BC);
  padding: 3px 16px 2px;
  margin-bottom: 25px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .head_ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_ttl {
    width: 77.6vw;
    margin: 0 auto 6.4vw;
    font-size: 7.4666666667vw;
    letter-spacing: 0.144vw;
    border-radius: 1.6vw;
    padding: 0px 0px 0.8vw 0px;
  }
}
.cpCharm_cont #cpCharm01 .head_ttl small {
  font-size: 20px;
  letter-spacing: 2.2px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_ttl small {
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.cpCharm_cont #cpCharm01 .head_txt02 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .head_txt02 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_txt02 {
    font-size: 5.3333333333vw;
    letter-spacing: 0.16vw;
  }
}
.cpCharm_cont #cpCharm01 .head_txt02 span {
  color: var(--Orange-300, #FF8521);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  margin-right: 4px;
  padding-bottom: 10px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .head_txt02 span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_txt02 span {
    font-size: 5.3333333333vw;
    letter-spacing: 0.16vw;
    margin-bottom: 2.1333333333vw;
    margin-right: 1.0666666667vw;
    padding-bottom: 1.0666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .head_txt02 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  border-radius: 3px;
  bottom: 0;
  left: 0;
  background: var(--Orange-300, #FF8521);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .head_txt02 span::after {
    height: 0.8vw;
    border-radius: 0.8vw;
  }
}
.cpCharm_cont #cpCharm01 .check_klist {
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .check_klist {
    padding: 0 0 0 6.9333333333vw;
  }
}
.cpCharm_cont #cpCharm01 .check_klist li {
  font-size: 20px;
  font-style: normal;
  text-align: left;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .check_klist li {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .check_klist li {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    gap: 1.8666666667vw;
    margin-bottom: 2.1333333333vw;
  }
}
.cpCharm_cont #cpCharm01 .check_klist li:last-child {
  margin-bottom: 0;
}

.cpCharm_cont #cpCharm01 .check_klist li::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon_check.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .check_klist li::before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxCont {
  padding: 32px;
  min-height: 217px;
  border-radius: 0 0 30px 30px;
  border: 4px solid var(--Pink-300, #EB6A7F);
  text-align: left;
  height: 577px;
}

.cpCharm_cont #cpCharm01 .procedure_boxContSubTtl {
  font-size: 23px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxContSubTtl {
    font-size: 5vw;
    line-height: 2.2;
  }
}

.cpCharm_cont #cpCharm01 .procedure_boxContTtl {
  background-color: #F57801;
  color: #fff;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  margin: 10px auto 40px;
  font-size: 28px;
  padding: 5px 10px;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxContTtl {
    font-size: 6vw;
    line-height: 1.4;
    padding: 1vw 4vw;
    margin-top: 2vw;
    margin-bottom: 6vw;
  }
}

.cpCharm_cont #cpCharm01 .procedure_boxContTxt {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxContTxt {
    font-size: 4.2vw;
    text-align: left;
    line-height: 2.2;
  }
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont {
    padding: 7.6vw 5.6vw;
    min-height: initial;
    border-radius: 0 0 16px 16px;
    border: none;
    height: auto;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl {
  margin-bottom: 15px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl {
    margin-bottom: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl .left,
.cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl .right {
  top: initial;
  bottom: -2px;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl .left,
  .cpCharm_cont #cpCharm01 .procedure_boxCont .illust_ttl .right {
    bottom: -1.3333333333vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxCont .transfer_contBtn {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont .transfer_contBtn {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxCont .transfer_contBtn {
    max-width: 86.4vw;
  }
}
.cpCharm_cont #cpCharm01 #cpCharm01_box01 .head_txt02 {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box01 .head_txt02 {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .procedure_boxCont {
    padding-top: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_txt02 {
    margin-bottom: 6.6666666667vw;
  }
}
.cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteWrap {
  position: relative;
}

.cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteTxt {
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
  width: 86.86440678%;
  margin: 20px auto 10px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteTxt {
    top: 30%;
  }
}
@media screen and (min-width: 769px) and (max-width: 860px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteTxt {
    top: 24%;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteTxt {
    left: 6.9333333333vw;
    top: 26.4vw;
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
    width: 82%;
  }
}
.cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_characterImg {
  max-width: 344px;
  width: 72.88135593%;
  margin-left: auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_characterImg {
    max-width: 89.3333333333vw;
    width: 89.3333333333vw;
    margin: -3vw -4.8vw 7.4vw auto;
  }
}
.cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteImg {
  max-width: 410px;
  width: 86.86440678%;
  margin: 0 auto -50px;
}

@media screen and (min-width: 769px) and (max-width: 960px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteImg {
    margin: 13% auto 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 860px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteImg {
    margin: 22% auto 0;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 #cpCharm01_box02 .head_noteImg {
    max-width: 77.6vw;
    width: 100%;
    margin-bottom: -26.6vw;
  }
}
.cpCharm_cont #cpCharm01 .acc_eligibility {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .acc_eligibility {
    margin-top: 4.8vw;
  }
}
.cpCharm_cont #cpCharm01 .acc_eligibility .accordion_btn {
  color: var(--White, #FFF);
  border-bottom: 2px solid var(--gray, #FFF);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .acc_eligibility .accordion_btn {
    border-bottom: 0.5333333333vw solid var(--gray, #FFF);
  }
}
.cpCharm_cont #cpCharm01 .acc_eligibility .accordion_btn::before,
.cpCharm_cont #cpCharm01 .acc_eligibility .accordion_btn::after {
  background-color: var(--White, #FFF);
}

.cpCharm_cont #cpCharm01 .acc_eligibility .accordion_cont {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .acc_eligibility .accordion_cont {
    margin-bottom: 0;
  }
}
.cpCharm_cont #cpCharm02 .illust_ttl {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .illust_ttl {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_box {
    max-width: 93.6vw;
    width: 93.6vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.cpCharm_cont #cpCharm02 .tabBtn_wrap {
  display: flex;
}

.cpCharm_cont #cpCharm02 .tabBtn {
  cursor: pointer;
  width: 50%;
  border-radius: 16px 16px 0px 0px;
  background: var(--Pink-100, #FDC2DB);
  display: flex;
  height: 62px;
  padding: 8px 0px;
  flex: 1 0 0;
  color: var(--White, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .tabBtn:nth-child(1) {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .tabBtn {
    border-radius: 4.2666666667vw 4.2666666667vw 0px 0px;
    height: 16.5333333333vw;
    padding: 3.2vw 2.6666666667vw 2.1333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
    text-align: center;
  }
}
.cpCharm_cont #cpCharm02 .tabBtn span {
  display: flex;
  padding: 0px 10px 2px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 15px;
  background: var(--White, #FFF);
  color: var(--Pink-100, #FDC2DB);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .tabBtn span {
    margin-right: 1.0666666667vw;
    display: inline-block;
    padding: 0px 2.6666666667vw 0.5333333333vw 2.6666666667vw;
    border-radius: 3.7333333333vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.cpCharm_cont #cpCharm02 .tabBtn.active {
  background: var(--Pink-400, #FF72B0);
}

.cpCharm_cont #cpCharm02 .tabBtn.active span {
  color: #FF88BC;
}

@media screen and (min-width: 769px) {
  .cpCharm_cont #cpCharm02 .tabBtn:hover {
    background: var(--Pink-400, #FF72B0);
  }
  .cpCharm_cont #cpCharm02 .tabBtn:hover span {
    color: #FF88BC;
  }
}
.cpCharm_cont #cpCharm02 .tab_cont {
  display: none;
  padding: 60px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .tab_cont {
    padding: 11.7333333333vw 0 10.6666666667vw;
  }
}
.cpCharm_cont #cpCharm02 .tab_cont.show {
  display: block;
}

.cpCharm_cont #cpCharm02 .tab_cont > div {
  position: relative;
}

.cpCharm_cont #cpCharm02 .point_tab {
  padding-top: 70px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .point_tab {
    padding-top: 11.7333333333vw;
  }
}
.cpCharm_cont #cpCharm02 .object_img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.cpCharm_cont #cpCharm02 .procedure_boxCont {
  text-align: center;
  border-radius: 0px 0px 60px 60px;
  background-image: url(../img/cpCharm_bg.png);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont {
    border-radius: 0px 0px 16vw 16vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl {
    margin-bottom: 6.4vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl span {
  padding-bottom: 16px;
  display: inline-block;
  position: relative;
  color: var(--White, #FFF);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.84px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl span {
    padding-bottom: 3.4666666667vw;
    font-size: 5.3333333333vw;
    letter-spacing: 0.16vw;
    margin-bottom: 1.6vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl span:last-child {
  margin-bottom: 0;
}

.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl span::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .tab_ttl span::after {
    height: 1.0666666667vw;
    border-radius: 0.8vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_introTxt01 {
  color: var(--White, #FFF);
  margin-bottom: 32px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .tab_introTxt01 {
    margin-bottom: 6.4vw;
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .tab_introTxt02 {
  margin-top: 24px;
  margin-bottom: 32px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .tab_introTxt02 {
    margin-top: 4.2666666667vw;
    margin-bottom: 6.4vw;
    font-size: 4.8vw;
    letter-spacing: 0.144vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont p[class^=point_img0] {
  max-width: 328px;
  width: 34.16666667%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont p[class^=point_img0] {
    max-width: 77.6vw;
    width: 77.6vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .flex {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .flex {
    display: flex;
    flex-direction: column;
    gap: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm02 .procedure_boxCont .flex p {
  margin: 0;
}

.cpCharm_cont #cpCharm02 .procedure_boxCont .result_txt {
  width: 440px;
  margin: 32px auto 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .procedure_boxCont .result_txt {
    margin-top: 4.2666666667vw;
    width: 85.3333333333vw;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox {
  width: 537px;
  padding: 20px 0 24px;
  margin: -35px auto 0;
  position: relative;
  border-radius: 18px;
  border: 2px solid #FF88BC;
  background: var(--White, #FFF);
  display: none;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox {
    width: 85.0666666667vw;
    padding: 3.2vw 0;
    margin-top: -5.8666666667vw;
    border-radius: 4.8vw;
    border: 0.5333333333vw solid #FF88BC;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox.active {
  display: block;
}

.cpCharm_cont #cpCharm02 .cpCharm02_presentBox::before {
  content: "";
  display: block;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #FFF transparent;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox::before {
    border-width: 0 2.1333333333vw 3.2vw 2.1333333333vw;
    top: -3.2vw;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox .illust_ttl {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox .illust_ttl span {
    font-size: 3.7333333333vw;
    letter-spacing: 0.112vw;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_txt {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_txt {
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
    margin-bottom: 1.0666666667vw;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_img {
  max-width: 490px;
  width: 100%;
  margin: 0 auto 4px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_img {
    max-width: 78.6666666667vw;
    margin-bottom: 1.0666666667vw;
  }
}
.cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_note {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
  padding: 0 22px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_note {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
    padding: 0 2.6666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .illust_ttl {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .illust_ttl {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box {
    max-width: 93.6vw;
    margin-left: auto;
    margin-right: auto;
    width: 93.6vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .procedure_boxHead {
  position: relative;
  border-radius: 60px 60px 0 0;
  border: 4px solid var(--Pink-300, #FF88BC);
  background-image: url(../img/cpCharm_bg.png);
  padding: 57px 20px 72px;
  color: var(--White, #FFF);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_boxHead {
    border-radius: 16vw 16vw 0 0;
    border: 1.0666666667vw solid var(--Pink-300, #FF88BC);
    padding: 9.6vw 0 32vw 0;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .head_ttl {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .head_ttl {
    font-size: 4.8vw;
    margin-bottom: 10.6666666667vw;
    letter-spacing: 0.144vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .head_ttl img {
  display: block;
  width: 342px;
  margin: 18px auto 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .head_ttl img {
    width: 67.7333333333vw;
    margin-top: 1.8666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap {
  max-width: 760px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap {
    max-width: 77.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap sup {
  font-size: 70%;
  vertical-align: top;
}

.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap li {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap li {
    margin-bottom: 8.5333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap li:last-child {
  margin-bottom: 0;
}

.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dl {
    display: block;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt {
  display: flex;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt {
    margin-bottom: 5.3333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .num {
  display: block;
  width: 110px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .num {
    width: 22.4vw;
    margin-right: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt p {
  padding-bottom: 16px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt p {
    padding-bottom: 3.2vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt::after {
  transition: all 0.8s ease;
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt::after {
    height: 0.8vw;
    border-radius: 0.8vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt.ani_active::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt {
    padding-bottom: 0.5333333333vw;
    font-size: 3.7333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt.line02 {
  padding-top: 8px;
  color: var(--Info-300, #FFD675);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dt .txt.line02 {
    padding-top: 0;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd {
  width: 320px;
  position: relative;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid var(--Pink-100, #FDC2DB);
  background: var(--Pink-200, #FF9EC8);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd {
    width: 100%;
    padding: 3.2vw;
    border: 0.5333333333vw solid #FDC2DB;
    border-radius: 2.1333333333vw;
    line-height: 1.5;
    font-size: 3.7333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd small {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd small {
    font-size: 2.6666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -16px;
  border-width: 6px 16px 6px 0;
  border-style: solid;
  border-color: transparent #FDC2DB transparent transparent;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .point_listWrap dd::before {
    top: -3.2vw;
    left: 50%;
    border-width: 0 2.1333333333vw 3.2vw 2.1333333333vw;
    border-color: transparent transparent #FDC2DB transparent;
    transform: translate(-50%, 0);
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .procedure_headNote {
  max-width: 760px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_headNote {
    max-width: 77.3333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .procedure_headNote p {
  font-size: 14px;
  text-align: left;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.42px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_headNote p {
    font-size: 2.6666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .arrow {
  margin-top: 24px;
  margin-bottom: 23px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .arrow {
    margin-top: 8.5333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .arrow img {
  display: block;
  width: 16px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .arrow img {
    width: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .arrow img + img {
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .arrow img + img {
    margin-top: 1.0666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_txt01 {
  margin-bottom: 10px;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_txt01 {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 3.7333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_txt02 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 42px */
  letter-spacing: 0.84px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_txt02 {
    font-size: 5.3333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_txt02 span {
  position: relative;
  margin: 0 5px;
  padding-bottom: 6px;
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--Info-300, #FFD675);
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_txt02 span {
    margin: 0 1.0666666667vw;
    padding-bottom: 1.6vw;
    font-size: 7.4666666667vw;
    letter-spacing: 0.03em;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_txt02 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  background-color: var(--Info-300, #FFD675);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_txt02 span::before {
    height: 0.8vw;
    border-radius: 0.5333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_txt02 sup {
  position: relative;
  top: -2em;
  font-size: 8px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_txt02 sup {
    top: 0.5em;
    font-size: 1.3333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_note {
  max-width: 393px;
  margin: 3px auto 4px;
  font-size: 14px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_note {
    max-width: 74.6666666667vw;
    margin: 0 auto 0;
    font-size: 2.6666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .result_img {
  width: 188px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .result_img {
    width: 50.1333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .character_img {
  position: absolute;
  bottom: -65px;
  left: 50%;
  width: 188px;
  transform: translateX(-50%);
}

@media screen and (min-width: 769px) and (max-width: 1030px) {
  .cpCharm_cont #cpCharm03 .procedure_box .character_img {
    bottom: -50px;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .character_img {
    width: 50.1333333333vw;
    bottom: -12vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .procedure_boxCont {
  position: relative;
  border: 4px solid var(--Pink-300, #FF88BC);
  padding: 60px 20px 64px;
  margin-top: -40px;
  border-radius: 0 0 60px 60px;
  background-color: #fff;
  -webkit-mask-image: url(../img/cpCharm03_maskImg_pc.png);
  mask-image: url(../img/cpCharm03_maskImg_pc.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 105%;
  mask-size: 105%;
  -webkit-mask-position: center top;
  mask-position: center top;
}

@media screen and (min-width: 769px) and (max-width: 1030px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_boxCont {
    -webkit-mask-size: 136% auto;
    mask-size: 136% auto;
    margin-top: -60px;
  }
}
@media screen and (min-width: 769px) and (max-width: 840px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_boxCont {
    -webkit-mask-size: 162% auto;
    mask-size: 162% auto;
  }
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .procedure_boxCont {
    border: 1.0666666667vw solid var(--Pink-300, #FF88BC);
    padding: 12.2666666667vw 0 10.6666666667vw;
    margin-top: -16vw;
    border-radius: 0 0 16vw 16vw;
    -webkit-mask-image: url(../img/cpCharm03_maskImg_sp.png);
    mask-image: url(../img/cpCharm03_maskImg_sp.png);
    -webkit-mask-size: 105%;
    mask-size: 105%;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_ttl {
  margin-bottom: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  text-align: center;
  letter-spacing: 0.6px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_ttl {
    margin-bottom: 6.4vw;
    font-size: 4.8vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap {
  display: flex;
  margin-bottom: 24px;
  justify-content: center;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap {
    display: block;
    margin-bottom: 4.2666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dl {
  max-width: 432px;
  width: 45.37815126%;
  padding: 24px 32px;
  border-radius: 16px;
  border: 2px solid var(--Pink-300, #FF88BC);
  background: #FFF6FA;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dl {
    max-width: 77.6vw;
    width: 77.6vw;
    margin: 0 auto 4.2666666667vw;
    padding: 6.4vw 4.8vw;
    border: 0.5333333333vw solid var(--Pink-300, #FF88BC);
    border-radius: 4.2666666667vw;
  }
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dl:last-child {
    margin-bottom: 0;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dt {
  display: flex;
  margin-bottom: 12px;
  font-size: 14px;
  color: #FF78B3;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dt {
    margin-bottom: 3.2vw;
    font-size: 3.2vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dt img {
  width: 54px;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap dt img {
    width: 12.8vw;
    margin-right: 2.1333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap .voiceBox_ttl {
  margin-bottom: 12px;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap .voiceBox_ttl {
    margin-bottom: 3.2vw;
    font-size: 3.7333333333vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap .voiceBox_txt {
  line-height: 1.5;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_boxWrap .voiceBox_txt {
    font-size: 2.6666666667vw;
  }
}
.cpCharm_cont #cpCharm03 .procedure_box .voice_note {
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm03 .procedure_box .voice_note {
    line-height: 1.5;
    font-size: 2.6666666667vw;
    text-align: left;
    padding: 0 8vw;
  }
}
/*---------------------------------------
  change01
/*---------------------------------------*/
.change01 {
  padding: 66px 0 80px;
  background-color: #2292dd;
}

@media screen and (max-width: 768px) {
  .change01 {
    padding: 9.0666666667vw 0 0;
  }
}
@media screen and (max-width: 768px) {
  .change01 .inner {
    max-width: 87.2vw;
  }
}
.change01 .change01_ttlWrap {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .change01 .illust_ttl {
    margin-bottom: 2.6666666667vw;
  }
}
.change01 .illust_ttl span {
  color: #fff;
}

.change01 .illust_ttl span::before {
  background-image: url(../img/illust_ttl02-left.svg);
}

.change01 .illust_ttl span::after {
  background-image: url(../img/illust_ttl02-right.svg);
}

.change01 .change01_ttl {
  margin-bottom: 30px;
  color: #fff;
  font-size: 36px;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .change01 .change01_ttl {
    margin-bottom: 4.2666666667vw;
    line-height: 1.5;
    font-size: 7.4666666667vw;
  }
}
.change01 .change01_detailCont {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .change01 .change01_detailCont {
    display: block;
    margin-top: 4.2666666667vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .change01 .note_listWrap {
    margin-bottom: 4.2666666667vw;
  }
}
.change01 .note_listWrap li {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .change01 .note_listWrap li {
    font-size: 2.6666666667vw;
    text-align: left;
  }
}
.change01 .recommend_box {
  display: flex;
  margin-top: 30px;
  padding: 24px;
  border-radius: 16px;
  background-color: #62bdf9;
  gap: 32px;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .change01 .recommend_box {
    display: block;
    margin: 8.5333333333vw -6.4vw 0;
    padding: 6.4vw;
    border-radius: 0;
  }
}
.change01 .recommend_boxImg {
  max-width: 480px;
  width: 51%;
}

@media screen and (max-width: 768px) {
  .change01 .recommend_boxImg {
    max-width: 100%;
    width: 100%;
  }
}
.change01 .recommend_txtWrap {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .change01 .recommend_txtWrap {
    text-align: center;
  }
}
.change01 .recommend_txtWrap .fukidashi {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  padding: 24px 32px;
  border-radius: 8px;
  font-size: 20px;
  background-color: #e60012;
}

@media screen and (max-width: 768px) {
  .change01 .recommend_txtWrap .fukidashi {
    margin-top: 1.6vw;
    margin-bottom: 2.1333333333vw;
    padding: 3.4666666667vw;
    border-radius: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
}
.change01 .recommend_txtWrap .fukidashi::before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: -12px;
  border-width: 8px 12px 8px 0;
  border-style: solid;
  border-color: transparent #e60012 transparent transparent;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .change01 .recommend_txtWrap .fukidashi::before {
    width: 4.8vw;
    height: 3.2vw;
    top: -3.2vw;
    left: 50%;
    border-width: 0 2.4vw 3.2vw 2.4vw;
    border-color: transparent transparent #e60012 transparent;
    transform: translate(-50%, 0);
  }
}
.change01 .recommend_txtWrap .recommend_txt {
  color: #ecf5f9;
  line-height: 1.5;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .change01 .recommend_txtWrap .recommend_txt {
    font-size: 2.6666666667vw;
  }
}
/*---------------------------------------
  cp_detailCont
/*---------------------------------------*/
.cp_detailCont {
  padding: 32px;
  border-radius: 16px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .cp_detailCont {
    width: 87.2vw;
    margin: 0 auto;
    padding: 4.8vw 4.8vw 6.4vw 4.8vw;
    border-radius: 4.2666666667vw;
  }
}
.cp_detailCont .cp_detailBoxWrap {
  display: flex;
  gap: 64px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont .cp_detailBoxWrap {
    display: block;
  }
}
.cp_detailCont dl:nth-child(1) {
  position: relative;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dl:nth-child(1) {
    padding-bottom: 6.6666666667vw;
  }
}
.cp_detailCont dl:nth-child(1)::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -30px;
  background-image: url(../img/line_dashed-vertical.svg);
  background-position: center;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dl:nth-child(1)::before {
    width: 100%;
    height: 0.5333333333vw;
    top: initial;
    right: 0;
    bottom: 0;
    background-image: url(../img/line_dashed.svg);
  }
}
.cp_detailCont dl:nth-child(1) dt {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dl:nth-child(1) dt {
    margin-bottom: 3.2vw;
  }
}
.cp_detailCont dl:nth-child(1) dt .head_txt {
  color: #2292dd;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dl:nth-child(2) {
    padding-top: 6.4vw;
  }
}
.cp_detailCont dt {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dt {
    margin-bottom: 4vw;
  }
}
.cp_detailCont dt .head_txt {
  color: #e60012;
  line-height: 1.5;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dt .head_txt {
    font-size: 3.7333333333vw;
  }
}
.cp_detailCont dt .head_img {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dt .head_img {
    width: 26.6666666667vw;
  }
}
.cp_detailCont dd .detailBox_txt {
  line-height: 1.5;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dd .detailBox_txt {
    font-size: 2.6666666667vw;
  }
}
.cp_detailCont dd .detailBox_link {
  text-align: center;
}

.cp_detailCont dd .detailBox_link a {
  display: inline-block;
  margin-bottom: 16px;
  border-bottom: 2px solid #2292dd;
  color: #2292dd;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .cp_detailCont dd .detailBox_link a {
    margin-bottom: 2.1333333333vw;
    border-bottom: 0.5333333333vw solid #2292dd;
    font-size: 3.2vw;
  }
}
@media screen and (min-width: 769px) {
  .cp_detailCont dd .detailBox_link a:hover {
    border-bottom: 2px solid transparent;
  }
}
.cp_detailCont .transfer_contBtn {
  margin: 33px auto 0;
}

@media screen and (max-width: 768px) {
  .cp_detailCont .transfer_contBtn {
    margin-top: 4vw;
  }
}
/*---------------------------------------
  faq
/*---------------------------------------*/
.faq {
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 16vw;
  }
}
.faq .faq_ttl {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl {
    margin-bottom: 8vw;
  }
}
.faq .faq_ttl span {
  position: relative;
  color: var(--gray, #666);
  display: inline-block;
  font-size: 36px;
  font-style: normal;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 150%;
  /* 54px */
  letter-spacing: 2.16px;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl span {
    font-size: 5.3333333333vw;
    padding-bottom: 2.4vw;
    letter-spacing: 0.16vw;
  }
}
.faq .faq_ttl span::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  background: var(--Pink-300, #FF88BC);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl span::before {
    height: 1.0666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.faq .faq_listWrap {
  max-width: 880px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq .faq_listWrap {
    max-width: 87.2vw;
  }
}
.faq .accordion_box {
  margin-bottom: 32px;
  padding: 0 24px;
  border-radius: 16px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .faq .accordion_box {
    margin-bottom: 4.2666666667vw;
    padding: 0;
    border-radius: 4.2666666667vw;
  }
}
.faq .accordion_box:last-child {
  margin-bottom: 0;
}

.faq .accordion_btn {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  gap: 24px;
  letter-spacing: 0.6px;
  padding: 32px 70px 32px 0;
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn {
    font-size: 3.7333333333vw;
    gap: 3.2vw;
    letter-spacing: 0.112vw;
    padding: 4.2666666667vw 10.6666666667vw 5.8666666667vw 3.2vw;
  }
}
.faq .accordion_btn::before,
.faq .accordion_btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  right: 10px;
  background-color: #FF88BC;
  transition: 0.3s;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn::before,
  .faq .accordion_btn::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
    right: 4.8vw;
  }
}
.faq .accordion_btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq .accordion_btn.active::after {
  transform: translateY(-50%) rotate(0);
}

.faq .accordion_btn span {
  display: block;
}

.faq .accordion_btn .img {
  width: 24px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn .img {
    width: 6.4vw;
  }
}
.faq .accordion_cont {
  position: relative;
  padding: 32px 0;
  display: none;
  background-repeat: repeat-x;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont {
    padding: 6.4vw 0 4.2666666667vw;
    margin: 0 4.5333333333vw;
  }
}
.faq .accordion_cont p,
.faq .accordion_cont li {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont p,
  .faq .accordion_cont li {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
.faq .accordion_cont ol {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont ol {
    margin-top: 3.4666666667vw;
  }
}
.faq-box_w01 .faq_question p {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .faq-box_w01 .faq_question p {
    margin-right: 10px;
  }
}
.faq-box_w01 .faq_question img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .faq-box_w01 .faq_question img {
    width: 29%;
  }
}

.faq-box_w02 .faq_answer p {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 15px;
}
.faq-box_w02 .faq_answer img {
  width: 77px;
}

.faq-box_w03 .faq_answer {
  position: relative;
}
.faq-box_w03 .faq_answer p {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5px;
  line-height: 155.556%;
}
@media screen and (max-width: 768px) {
  .faq-box_w03 .faq_answer p {
    margin-right: 14vw;
  }
}
.faq-box_w03 .faq_answer img {
  width: 92px;
}
@media screen and (max-width: 768px) {
  .faq-box_w03 .faq_answer img {
    width: 15.2vw;
    position: absolute;
    right: 0vw;
    bottom: -4vw;
  }
}

.faq_question,
.faq_answer {
  display: flex;
  align-items: center;
}

.faq_answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 4px dotted #D9D9D9;
}

.faq_caution01,
.faq_caution02 {
  display: block;
  content: "";
  width: 60px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 24px;
}

.faq_caution01 {
  background-image: url("../img/faq01.png");
  background-size: 100%;
}

.faq_caution02 {
  background-image: url("../img/faq02.png");
}

.faq_question p,
.faq_answer p {
  position: relative;
  font-size: 20px;
  width: 100%;
}

.faq_detail {
  margin-top: 42px;
}
.faq_detail .u-flex {
  align-items: start;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .faq_detail .u-flex {
    display: block;
    gap: 0;
  }
}

.faq_detail img {
  margin-top: 32px;
}

@media screen and (min-width: 769px) {
  .faq_box:nth-of-type(1) {
    margin-right: 48px;
  }
}
@media screen and (max-width: 768px) {
  .faq_box:nth-of-type(2) {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .faq_detailCont + .faq_detailCont {
    margin-top: 6vw;
  }
}

.faq_sttl {
  font-size: 18px;
  text-align: center;
  padding-top: 8px;
  border-bottom: 4px dotted;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.faq_hosoku {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .faq_hosoku {
    font-size: 2.8vw;
  }
}

.faq_detail-list {
  display: flex;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .faq_detail-list {
    flex-wrap: wrap;
  }
}
.faq_detail-list li {
  text-align: center;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .faq_detail-list li {
    display: flex;
    flex: auto;
  }
}
.faq_detail-list li img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .faq_detail-list li img {
    margin-right: 3.4vw;
  }
}
.faq_detail-list li p {
  margin-top: 20px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .faq_detail-list li p {
    text-align: left;
  }
}
.faq_detail-caution {
  font-size: 14px;
  margin-top: 32px;
  font-weight: lighter;
}

.faq_detail-item01 {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .faq_detail-item01 {
    width: 70vw;
  }
}

.faq-customer_btn {
  display: flex;
  align-items: center;
  /* 縦揃え */
  justify-content: center;
  width: 312.5px;
  height: 66.667px;
  border-radius: 1000px;
  text-align: center;
  padding: 10px 40px;
  /* 両側を狭めると中央に余白が */
  box-shadow: 0px 5px #979797;
  position: relative;
  margin: 30px auto 0;
  border: 1.67px solid #979797;
  gap: 20px;
  /* テキストと+の間にスペース */
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .faq-customer_btn {
    width: 75vw;
    height: 16vw;
    font-size: 4.6vw;
  }
}

.btn-plus {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.section-top {
  padding: 40px 20px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(closest-side, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 100%);
  background-size: 100% 200%;
  margin-bottom: -38px;
}
@media screen and (max-width: 768px) {
  .section-top {
    margin-inline: 3vw;
    background: #fff;
    border-radius: 100% 100% 0 0;
  }
}

.badge {
  display: inline-block;
  background-color: #E83C58;
  color: #fff;
  font-weight: bold;
  font-size: 23px;
  padding: 6px 1em;
  border-radius: 999px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .badge {
    font-size: 4.6vw;
    padding: 0.6vw 4vw;
    margin-bottom: 4vw;
  }
}
.badge::before {
  content: "";
  position: absolute;
  top: 85%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid #E83C58;
  border-inline: 18px solid transparent;
}
@media screen and (max-width: 768px) {
  .badge::before {
    border-top-width: 4vw;
    border-inline-width: 3.6vw;
    top: 82%;
  }
}

.title-main {
  font-weight: bold;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  border-bottom: solid 1px;
  padding-bottom: 20px;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .title-main {
    font-size: 4.8vw;
    line-height: 1.6;
    padding-bottom: 5vw;
  }
}
.title-main strong {
  font-size: 1.3333333333em;
}
@media screen and (max-width: 768px) {
  .title-main strong {
    display: block;
  }
}
.title-main strong .emphasis {
  font-size: 1.3125em;
  line-height: 1.2;
  position: relative;
}
.title-main strong .emphasis::before {
  content: "・・";
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 0;
  font-weight: 400;
  right: 0;
}
@media screen and (max-width: 768px) {
  .title-main strong .emphasis::before {
    top: -6.2vw;
    font-size: 8.4vw;
  }
}
.title-main strong .red {
  color: #E83C58;
  font-size: 1.3125em;
}
@media screen and (max-width: 768px) {
  .title-main strong .red {
    font-size: 8.4vw;
  }
}
.title-main strong .red .black {
  color: #000;
}

/*---------------------------------------
  animation
/*---------------------------------------*/
.mv .mv_character {
  transform: translateY(100%);
  opacity: 0;
}

.introduction .intro_ttl {
  opacity: 0;
  transform: translateY(50px);
}

.conditions .intro_ctaBox {
  opacity: 0;
  transform: translate(-50%, 50px);
}

.conditions .conditions_txtWrap .character_img {
  transform: translateY(100%);
}

.otokuInfo .otokuInfo_amountGroup {
  opacity: 0;
}

.otokuInfo .otoku01_bgGroup {
  transform: scaleX(1.2) translateX(-3px);
}

@media screen and (max-width: 768px) {
  .otokuInfo .otoku01_bgGroup {
    transform: scaleX(1.16) translateX(-0.5333333333vw);
  }
}
.otokuInfo .otoku02_bgGroup {
  transform: scaleX(1.312) translateX(-4px);
}

@media screen and (max-width: 768px) {
  .otokuInfo .otoku02_bgGroup {
    transform: scaleX(1.312) translateX(-0.8vw);
  }
}
.otokuInfo .otoku03_bgGroup {
  transform: scaleX(1.42) translateX(-5px);
}

@media screen and (max-width: 768px) {
  .otokuInfo .otoku03_bgGroup {
    transform: scaleX(1.45) translateX(-0.8vw);
  }
}
.otokuInfo .otokuInfo_txt02 .totalAmout {
  opacity: 0;
}

.cpDetail_messageTxt .cpDetail_messageTxt_kateneko {
  transform: translateY(100%);
}

#cpCharm02 .result_txt {
  opacity: 0;
  transform: scale(0.2);
}

.cpCharm_cont #cpCharm03 .procedure_box .result_txt02 span {
  opacity: 0;
  transform: scale(0.2);
}

#otoku01 .ani_otoku01_graphTxt {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cpCharm_cont #cpCharm02 .cpCharm02_presentBox .presentBox_img {
  opacity: 0;
  transform: scale(0.8) translateY(100px);
}

.cpCharm_cont #cpCharm01 .procedure_boxWrap .line_box .br_adj {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 980px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .line_box .br_adj {
    display: block;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxWrap .line_box::before {
  border-style: solid;
  content: "";
  display: block;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .line_box::before {
    border-width: 0 2.13333333vw 3.2vw 2.13333333vw;
    top: -3.2vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_ttl {
  color: var(--Pink-500, #FF539E);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_ttl {
    font-size: 3.2vw;
    letter-spacing: 0.096vw;
    gap: 2.66666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_ttl {
    font-size: 16px;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_ttl img {
  display: block;
  width: 32px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_ttl img {
    width: 8.53333333vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_txt {
  color: var(--gray, #666);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.36px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_txt {
    font-size: 2.66666667vw;
    letter-spacing: 0.08vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_btn {
  display: flex;
  max-width: 320px;
  width: 100%;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  background: #E83C58;
  box-shadow: 0px 5px #B83A4F;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  letter-spacing: 0.72px;
  flex: 1 0 0;
  background-image: url(../img/arrow01.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  transition: 0.3s;
  background-position: 73% 53%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_btn {
    max-width: 100%;
    padding: 4.26666667vw 6.4vw;
    border-radius: 10.73333333vw;
    font-size: 5.6vw;
    letter-spacing: 0.336vw;
    background-size: 3.2vw;
    background-position: 82% 53%;
  }
}
@media screen and (min-width: 769px) {
  .cpCharm_cont #cpCharm01 .procedure_boxWrap .lineBox_btn:hover {
    box-shadow: 0 0 0 0 transparent;
    transform: translateY(7px);
  }
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin-top: -148px;
  top: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_box .lineBox {
    width: 82%;
    margin: -15px 0 0;
  }
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox_ttl {
  padding-left: 80px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_box .lineBox_ttl {
    padding-left: 16vw;
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox_ttl span {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-color: #ADADAD;
  text-underline-offset: 4px;
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox_ttl small {
  font-size: 0.75em;
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox_txt {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_box .lineBox_txt {
    font-size: 2.8vw;
    margin-bottom: 4vw;
  }
}
.cpCharm_cont #cpCharm01 .procedure_box .lineBox .lineBox_btn {
  display: block;
  color: #07b53b;
  border: 3px solid;
  background: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 1000px;
  padding: 20px 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.5em;
  box-shadow: none;
  box-shadow: 0px 5px 0 #A4A4A4;
}
@media screen and (max-width: 768px) {
  .cpCharm_cont #cpCharm01 .procedure_box .lineBox .lineBox_btn {
    font-size: 3.6vw;
    padding: 4vw 0;
    flex-direction: row;
    box-shadow: 0px 1vw 0 #A4A4A4;
  }
}

.mv_badge {
  width: 127px;
  position: absolute;
  left: 490px;
  top: 0px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .mv_badge {
    width: 26.1vw;
    position: absolute;
    left: 72vw;
    top: 56vw;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .mv_ttl {
    display: block;
    margin: 3vw 0;
  }
}
.cpDetail_cont-head {
  width: 570px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .cpDetail_cont-head {
    width: 90vw;
  }
}

._otoku01 {
  width: 114.734px;
  display: block;
  position: absolute;
  top: -95px;
  left: 100px;
}
@media screen and (max-width: 768px) {
  ._otoku01 {
    width: 16.926vw;
    top: -15vw;
    left: 5vw;
  }
}

._otoku02 {
  width: 94px;
  display: block;
  position: absolute;
  top: -105px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  ._otoku02 {
    width: 23.7333333333vw;
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #otoku02 .list_cont {
    overflow: hidden;
  }
  #otoku02 .list_cont .u-flex {
    position: relative;
    left: 2.5vw;
  }
}

._otoku03 {
  width: 142px;
  display: block;
  position: absolute;
  top: 60px;
  right: -30px;
  z-index: 10001;
}
@media screen and (max-width: 768px) {
  ._otoku03 {
    width: 23.7333333333vw;
    display: none;
  }
}

._otoku04 {
  width: 366px;
  display: block;
  position: absolute;
  bottom: -101px;
  right: 50%;
  transform: translateX(50%);
  z-index: 10001;
}
@media screen and (max-width: 768px) {
  ._otoku04 {
    width: 75%;
    bottom: 0vw;
    transform: translateY(100%) translateX(50%);
  }
}

#otoku02 .note_txt {
  margin: 30px auto 30px;
}
@media screen and (max-width: 768px) {
  #otoku02 .note_txt {
    margin: 6vw auto 0vw;
    letter-spacing: -0.05em;
  }
}

.mean {
  padding: 80px 0;
  background-image: url(../img/meanBg.png);
  background-size: 1920px;
  background-position: top 50% left 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .mean {
    background-size: 400%;
    background-position: top 105% left 50%;
    padding: 22vw 0 12vw;
  }
}
.mean .note_txt {
  width: 850px;
  max-width: 100%;
  margin: 0 auto 1em;
  font-weight: 400;
  color: #646464;
}
.mean .note_txt:last-child {
  margin-bottom: 0;
}

.mean_boxWrap {
  border: 1px solid #DCDDDD;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mean_boxWrap {
    padding-bottom: 4vw;
  }
}

.mean_detail {
  width: 798px;
  margin: 0 auto;
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mean_detail {
    width: 100%;
    padding: 5vw;
    padding-top: 0;
  }
}
.mean_detail .txtBtn_wrap {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .mean_detail .txtBtn_wrap {
    margin-top: 4vw;
  }
}

.mean_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.cpNow_ctaFukidashi {
  font-size: 25px;
  color: rgb(235, 106, 127);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: table;
  margin: 0 auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .cpNow_ctaFukidashi {
    font-size: 4.2vw;
    margin-bottom: 1.6vw;
  }
}
.cpNow_ctaFukidashi::before, .cpNow_ctaFukidashi::after {
  content: "";
  display: inline-block;
  margin: 6px 0;
  background: rgb(235, 106, 127);
  height: 2px;
  width: 25px;
}
@media screen and (max-width: 768px) {
  .cpNow_ctaFukidashi::before, .cpNow_ctaFukidashi::after {
    margin: 1vw 0vw;
    height: 0.4vw;
    width: 5vw;
  }
}
.cpNow_ctaFukidashi::before {
  transform: rotate(-107.65deg);
}
.cpNow_ctaFukidashi::after {
  transform: rotate(-72.35deg);
}

.cpNow_ctaWrap {
  width: 1000px;
  margin: 0 auto;
  border: 2px solid #EB6A7F;
  background: #fff;
  border-radius: 20px;
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .cpNow_ctaWrap {
    width: 87.2vw;
    margin-bottom: 0;
  }
}
.cpNow_ctaWrap .cpNow_ctaHead {
  background-color: #EB6A7F;
  color: #fff;
  padding: 10px 20px;
  border-radius: 17px 17px 0 0;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cpNow_ctaWrap .cpNow_ctaHead {
    font-size: 6.4vw;
  }
}

.lineBox {
  position: absolute;
  top: 100%;
  margin-top: -30px;
  left: 50%;
  margin-left: -380px;
  width: 380px;
  z-index: 100;
  border-radius: 20px;
  background: #EBEBEB;
  padding: 20px 25px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .lineBox {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 0;
    width: 100%;
    margin-top: -1vw;
    padding: 4vw 4vw;
  }
}
.lineBox::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 0;
  height: 0;
  border-bottom: 25px solid #EBEBEB;
  border-inline: 18px solid transparent;
}
@media screen and (max-width: 768px) {
  .lineBox::before {
    border-bottom-width: 5vw;
    border-inline-width: 3.6vw;
  }
}
.lineBox .linebox_object {
  width: 98px;
  position: absolute;
  top: 0;
  left: -16px;
}
@media screen and (max-width: 768px) {
  .lineBox .linebox_object {
    width: 19.6vw;
    left: -3.2vw;
  }
}
.lineBox .lineBox_ttl {
  padding-left: 80px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lineBox .lineBox_ttl {
    padding-left: 16vw;
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.lineBox .lineBox_ttl span {
  border-bottom: solid 1px #ADADAD;
}
.lineBox .lineBox_ttl small {
  font-size: 0.75em;
}
.lineBox .lineBox_txt {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lineBox .lineBox_txt {
    font-size: 2.8vw;
    margin-bottom: 4vw;
  }
}
.lineBox .lineBox_btn {
  display: block;
  color: #07B53B;
  border: 3px solid;
  background: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 1000px;
  padding: 20px 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.5em;
  box-shadow: rgb(164, 164, 164) 0px 5px 0px;
}
@media screen and (max-width: 768px) {
  .lineBox .lineBox_btn {
    font-size: 3.6vw;
    padding: 4vw 0;
    flex-direction: row;
    box-shadow: 0px 1vw 0 #a4a4a4;
  }
}
.lineBox .lineBox_btn::after {
  content: "";
  border-right: solid 1px;
  border-top: solid 1px;
  font-size: 10px;
  position: relative;
  top: 0.1em;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .lineBox .lineBox_btn::after {
    font-size: 2vw;
  }
}

.lineBox_btn {
  padding: 45px 20px 50px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lineBox_btn {
    padding: 5vw 5vw 6vw;
    flex-direction: column;
    gap: 5vw;
  }
}
.lineBox_btn .btn_pink {
  width: 46.875%;
  background: #E83C58;
  border-radius: 1000px;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  box-shadow: 0px 5px #B83A4F;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lineBox_btn .btn_pink {
    width: 100%;
  }
}
.lineBox_btn .btn_pink ._txt {
  display: block;
  font-size: 15px;
  margin: 0 auto;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lineBox_btn .btn_pink ._txt {
    font-size: 3vw;
  }
}
.lineBox_btn .btn_pink ._txt span {
  font-size: 1.6em;
  font-weight: 700;
}
.lineBox_btn .btn_pink ._ico {
  display: block;
}
.lineBox_btn .btn_pink ._ico img {
  width: 38px;
}
@media screen and (max-width: 768px) {
  .lineBox_btn .btn_pink ._ico img {
    width: 7.6vw;
  }
}
.lineBox_btn .btn_pink::after {
  content: "";
  border-right: solid 1px;
  border-top: solid 1px;
  font-size: 14px;
  width: 1em;
  height: 1em;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .lineBox_btn .btn_pink::after {
    font-size: 2.8vw;
  }
}

/* 25.06.25 柴田追記ここから */
.limited {
  padding: 65px 0;
  background: #B7CAD2 url(../img/bg_campaign_pc.png) no-repeat top -27px center/contain;
}

.limited_head {
  margin-bottom: 77px;
  background: url(../img/bg_10per_pc.png) no-repeat top center/contain;
}

.limited_head ._fukidashi {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 44px;
  padding: 8.5px 46px;
  border-radius: 100vh;
  background: #FFF;
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5px;
}

.limited_head ._fukidashi::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: #FFF;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.limited_head ._ttl {
  width: 440px;
  margin: 0 auto 32px;
}

.limited_head ._date {
  width: 470px;
  margin: 0 auto;
  padding: 9px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  background: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .limited {
    padding: 7.8vw 0 11.14vw;
    background-image: url(../img/bg_campaign_sp.png);
    background-position: top 1.6vw center/cover;
  }
  .limited_head {
    margin-bottom: 0.48vw;
    background-image: url(../img/bg_10per_sp.png);
  }
  .limited_head ._fukidashi {
    margin-bottom: 8.6vw;
    padding: 1.6vw 4.6vw;
  }
  .limited_head ._fukidashi::after {
    bottom: -3vw;
    width: 3.4vw;
    height: 3.4vw;
  }
  .limited_head ._ttl {
    width: 70.8vw;
    margin-bottom: 5.2vw;
  }
  .limited_head ._date {
    width: 75.4vw;
    padding: 2.6vw 0;
    font-size: 3.076vw;
  }
}
.limited .box_w {
  padding: 40px 0 36px;
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.2);
}

.limited_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 4.5px 27px;
  border-radius: 100vh;
  border: 1px solid #000;
  color: #333;
  text-align: center;
  font-size: 23.077px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4em;
}

.limited_step {
  counter-reset: number 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 13px;
}

.limited_step li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.17;
}

.limited_step li::before {
  counter-increment: number 1;
  content: "STEP" counter(number);
  margin-right: 28px;
  border-bottom: #000 solid 1px;
  letter-spacing: 0.2em;
}

.limited .txtBtn_wrap {
  display: flex;
  justify-content: center;
  gap: 63px;
  margin-bottom: 32px;
  font-weight: 400;
}

.limited_link {
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.66667;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .limited .box_w {
    width: 94vw;
    padding: 6vw 7.2vw;
    box-shadow: 0px 1vw 10vw 0px rgba(0, 0, 0, 0.2);
  }
  .limited_ttl {
    margin: 0 auto 5.8vw;
    padding: 0.9vw 5.4vw;
    font-size: 4.6154vw;
  }
  .limited_step {
    margin-bottom: 6.4vw;
  }
  .limited_step li {
    margin-bottom: 3.4vw;
    font-size: 3.4vw;
    line-height: 176.471%;
  }
  .limited_step li::before {
    margin-right: 5.6vw;
  }
  .limited .txtBtn_wrap {
    flex-direction: column;
    align-items: center;
    gap: 3vw;
    margin-bottom: 5.4vw;
  }
  .limited .txtBtn_wrap .modal_txtBtn {
    width: -moz-fit-content;
    width: fit-content;
  }
  .limited_link {
    font-size: 3vw;
  }
}
.modal_content {
  padding: 42px 115px 50px;
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.modal_limited-ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  padding: 4.5px 48px;
  border: 1px solid #000;
  border-radius: 100vh;
  color: #333;
  text-align: center;
  font-size: 23.077px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4em;
}

.modal_limited-cont ._copy .fukidashi {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 24px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.4em;
  background: url(../img/fukidashi_modal_limited01.png) no-repeat center bottom/contain;
}

.modal_limited-cont ._copy h3 {
  margin: 10px 0 38px;
  text-align: center;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.4em;
}

.modal_limited-cont ._img {
  display: block;
  margin-bottom: 50px;
}

.modal_limited-cont ._link {
  margin-top: 29px;
}

.modal_limited-cont ._link a {
  display: block;
  text-decoration: underline;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
}

.modal:not(.modal_access) .modal_limited-close.bottom::after {
  content: "ー";
}

.modal:not(.modal_access) .modal_limited-close.bottom {
  position: static;
  justify-content: space-between;
  margin: 35px auto 0;
  background: none;
  border-bottom: #000 solid 1px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1em;
  color: #000;
  transform: none;
}

/* 追加ここから */
@media (max-width: 768px) {
  .modal_content {
    padding: 7.2vw 8.4vw;
    font-size: 3.6vw;
  }
  .modal_limited-ttl {
    margin-bottom: 6vw;
    padding: 0.9vw 2vw;
    min-width: 46.2vw;
    font-size: 4.6154vw;
  }
  .modal_limited-cont ._copy .fukidashi {
    padding-bottom: 4.8vw;
    font-size: 4vw;
  }
  .modal_limited-cont ._copy h3 {
    margin: 2vw 0 7.6vw;
    font-size: 4.6vw;
    white-space: nowrap;
  }
  .modal_limited-cont ._img {
    margin-bottom: 10vw;
  }
  .modal_limited-cont ._link {
    margin-top: 5.8vw;
  }
  .modal_limited-cont ._link a {
    font-size: 3.2vw;
  }
}
/* 追加ここまで*/
/* 25.06.25 柴田追記ここまで */
/*---------------------------------------
  faq
/*---------------------------------------*/
.faq {
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #D5D5D5;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 16vw;
  }
}
.faq .faq_ttl {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl {
    margin-bottom: 8vw;
  }
}
.faq .faq_ttl span {
  position: relative;
  color: var(--gray, #666);
  display: inline-block;
  font-size: 36px;
  font-style: normal;
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 150%;
  /* 54px */
  letter-spacing: 2.16px;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl span {
    font-size: 5.3333333333vw;
    padding-bottom: 2.4vw;
    letter-spacing: 0.16vw;
  }
}
.faq .faq_ttl span::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  background: var(--Pink-300, #FF88BC);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .faq .faq_ttl span::before {
    height: 1.0666666667vw;
    border-radius: 0.5333333333vw;
  }
}
.faq .faq_listWrap {
  max-width: 880px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq .faq_listWrap {
    max-width: 87.2vw;
  }
}
.faq .accordion_box {
  margin-bottom: 32px;
  padding: 0 24px;
  border-radius: 16px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .faq .accordion_box {
    margin-bottom: 4.2666666667vw;
    padding: 0;
    border-radius: 4.2666666667vw;
  }
}
.faq .accordion_box:last-child {
  margin-bottom: 0;
}

.faq .accordion_btn {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 30px */
  gap: 24px;
  letter-spacing: 0.6px;
  padding: 32px 70px 32px 0;
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn {
    font-size: 3.7333333333vw;
    gap: 3.2vw;
    letter-spacing: 0.112vw;
    padding: 4.2666666667vw 10.6666666667vw 5.8666666667vw 3.2vw;
  }
}
.faq .accordion_btn::before,
.faq .accordion_btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 4px;
  position: absolute;
  top: 50%;
  border-radius: 2px;
  right: 10px;
  background-color: #FF88BC;
  transition: 0.3s;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn::before,
  .faq .accordion_btn::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
    right: 4.8vw;
  }
}
.faq .accordion_btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq .accordion_btn.active::after {
  transform: translateY(-50%) rotate(0);
}

.faq .accordion_btn span {
  display: block;
}

.faq .accordion_btn .img {
  width: 24px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .faq .accordion_btn .img {
    width: 6.4vw;
  }
}
.faq .accordion_cont {
  position: relative;
  padding: 32px 0;
  display: none;
  background-repeat: repeat-x;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont {
    padding: 6.4vw 0 4.2666666667vw;
    margin: 0 4.5333333333vw;
  }
}
.faq .accordion_cont p,
.faq .accordion_cont li {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont p,
  .faq .accordion_cont li {
    font-size: 2.6666666667vw;
    letter-spacing: 0.08vw;
  }
}
.faq .accordion_cont ol {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .faq .accordion_cont ol {
    margin-top: 3.4666666667vw;
  }
}
.faq_question,
.faq_answer {
  display: flex;
  align-items: center;
}

.faq_answer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 4px dotted #D9D9D9;
}

.faq_caution01,
.faq_caution02 {
  display: block;
  content: "";
  width: 60px;
  height: 65px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .faq_caution01,
  .faq_caution02 {
    width: 12vw !important;
    height: 13vw;
    margin-right: 2vw;
  }
}

@media screen and (max-width: 768px) {
  .faq_caution01,
  .faq_caution02 {
    margin-top: 2vw;
  }
}
.faq_caution01 {
  background-image: url("../img/faq01.png");
  background-size: 100%;
}

.faq_caution02 {
  background-image: url("../img/faq02.png");
  background-size: 100%;
}

.faq_question p,
.faq_answer p {
  position: relative;
  font-size: 20px;
  width: 100%;
  font-weight: 500;
}
.faq_question p .textBlack,
.faq_answer p .textBlack {
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .faq_question p,
  .faq_answer p {
    font-size: 3.6vw;
  }
}
.faq_detail {
  margin-top: 42px;
}

.faq_detail img {
  margin-top: 32px;
  max-width: 362px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .faq_detail img {
    max-width: 64vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 4.4vw;
  }
}

.wideImg img {
  max-width: 801px;
  display: block;
  width: 100%;
}

.wideImg2 img {
  max-width: 800px;
  display: block;
  width: 100%;
}

img.faq_detail-item02 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  img.faq_detail-item02 {
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px) {
  .faq_box:nth-of-type(1) {
    margin-right: 48px;
  }
}
@media screen and (max-width: 768px) {
  .faq_box:nth-of-type(2) {
    margin-top: 32px;
  }
}
.faq_sttl {
  font-size: 18px;
  text-align: center;
  padding-top: 8px;
  border-bottom: 4px dotted;
}
@media screen and (max-width: 768px) {
  .faq_sttl {
    font-size: 3.6vw;
    padding-top: 1.6vw;
  }
}

.faq_hosoku {
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .faq_hosoku {
    font-size: 2.8vw;
    max-width: 72vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    font-weight: 400;
  }
}

.faq_detail-list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .faq_detail-list {
    gap: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .faq_detail-list {
    flex-wrap: wrap;
  }
}
.faq_detail-list li {
  text-align: center;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .faq_detail-list li {
    display: flex;
    flex: auto;
  }
}
.faq_detail-list li img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .faq_detail-list li img {
    margin-right: 3.4vw;
    margin-left: 0vw;
  }
}
.faq_detail-list li p {
  margin-top: 20px;
  font-size: 18px;
}
.faq_detail-list li p .textBlue {
  font-size: 176%;
}
.faq_detail-list li p .percent, .faq_detail-list li p sup {
  font-size: 60%;
}
.faq_detail-list li p .small {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  display: block;
}
@media screen and (max-width: 768px) {
  .faq_detail-list li p .small {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  .faq_detail-list li p {
    font-size: 3.4vw;
    margin-top: 6vw;
  }
}

@media screen and (max-width: 768px) {
  .faq_detail-list li p {
    text-align: left;
  }
}
.faq_detail-caution {
  font-size: 14px;
  margin-top: 32px;
  font-weight: lighter;
}
@media screen and (max-width: 768px) {
  .faq_detail-caution {
    font-size: 2.8vw;
    margin-top: 6.4vw;
  }
}

.faq_detail-item01 {
  width: 304px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.procedure_list {
  margin-top: 25px;
  padding: 0 10px;
}
.procedure_list li {
  position: relative;
  font-size: 19px;
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .procedure_list li {
    font-size: 4vw;
  }
}
.procedure_list li + li {
  margin-top: 10px;
}

.procedure_list li:before {
  content: "・";
}

.noteTxt {
  font-size: 12px;
  font-weight: lighter;
  margin-top: 22px;
  margin-bottom: 22px;
}

.procedure_boxCont .ttl_slash {
  font-size: 18px;
  text-wrap: nowrap;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .procedure_boxCont .ttl_slash {
    font-size: 3.6vw;
    margin-top: 5vw;
  }
}

.procedure_list {
  margin-top: 32px;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .procedure_list {
    margin-top: 5vw;
    padding: 0 2vw;
  }
}

.procedure_list li:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #9B9B9B;
  top: 16px;
  left: -20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .procedure_list li:before {
    top: 3.2vw;
    left: -4vw;
    width: 2.4vw;
    height: 2.4vw;
  }
}

.noteTxt {
  font-size: 12px;
  font-weight: lighter;
  margin-top: 22px;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .noteTxt {
    font-size: 2.8vw;
    margin-top: 4.4vw;
    margin-bottom: 4.4vw;
  }
}

.procedure_boxCont .ttl_slash {
  font-size: 18px;
  text-wrap: nowrap;
}

#modal_voice .voice_cont {
  border-bottom: 3px solid #D3D5E4;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_cont {
    padding-bottom: 9vw;
    margin-bottom: 7vw;
  }
}
#modal_voice .voice_cont.last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
#modal_voice .voice_contTop {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_contTop {
    gap: 5vw;
  }
}
#modal_voice .voice_contTop .voice_contImg {
  width: 91px;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_contTop .voice_contImg {
    width: 14vw;
  }
}
#modal_voice .voice_contTop .voice_contImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#modal_voice .voice_contTop .voice_contTxt {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_contTop .voice_contTxt {
    font-size: 3.2vw;
  }
}
#modal_voice .voice_contBottomTtl {
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_contBottomTtl {
    font-size: 4.4vw;
    margin-top: 4vw;
    margin-bottom: 2vw;
  }
}
#modal_voice .voice_contBottomTxt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #modal_voice .voice_contBottomTxt {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 768px) {
  .android .modal_txtBtn::before,
  .android .modal_txtBtn::after {
    width: 2.6666666667vw;
    height: 0.5333333333vw;
    top: 2.1vw;
    right: 1.0666666667vw;
  }
}/*# sourceMappingURL=style.css.map */