@charset "utf-8";

:root {
  --white: #FFF;
  --black: #333442;
  --blue: #0077D5;
  --gray_deep: #888995;
  --gray: #CCC;
  --cta: #FF1925;
  --highlight: #FFF039;
  --bg_main: #F5F5F7;
  --bg_blue: #EAF6FF;
  --line_gray: #D9D9D9;
  --shadow_M: 0 4px 8px 3px rgba(0, 0, 0, 0.10);
}


/* common */

.c-floatingcv,
.c-popupbunner--fixed {
  display: none !important;
}

.--white { color: var(--white); }
.--black { color: var(--black); }
.--blue { color: var(--blue); }
.--cta { color: var(--cta); }

.ce-main { color: var(--black); font-family: "Noto Sans", sans-serif; }
.ce-main sup { font-size: 75%; }
.--white .c-remark-list__item { color: var(--white); }
.--black .c-remark-list__item { color: var(--black); }
@media print, screen and (min-width:769px) {
  .ce-common--body_16_R_160 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
  }
}
@media print, screen and (max-width:768px) {
  .ce-common--body_16_R_160 {
    font-size: 4.267vw;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
  }
}


/* ce-kv */
@media print, screen and (min-width:769px) {
  .ce-kv {
    display: grid;
    row-gap: 32px;
    width: 100%;
    padding: 60px 40px 16px;
    background-color: var(--blue);
  }
  .ce-heading__logo {
    max-width: 260px;
    width: 100%;
    margin: 0 auto;
  }
  .ce-heading__text {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: var(--white);
  }
  .ce-kv__content {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-kv__content-title {
    width: 254px;
    margin: 0 auto;
  }
  .ce-kv__content-thumb {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
  }
}
@media print, screen and (max-width:768px) {
  .ce-kv {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    padding: 10.667vw 0 4.267vw;
    background-color: var(--blue);
  }
  .ce-heading__wrap {
    display: grid;
    row-gap: 1.6vw;
    width: 69.333vw;
    margin: 0 auto;
  }
  .ce-heading__logo {
    max-width: 69.333vw;
    width: 100%;
    margin: 0 auto;
  }
  .ce-heading__text {
    font-size: 3.2vw;
    line-height: 1.4;
    text-align: center;
    color: var(--white);
  }
  .ce-kv__content {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-kv__content-title {
    width: 67.733vw;
    margin: 0 auto;
  }
  .ce-kv__content-thumb {
    width: 100%;
    margin: 0 auto;
  }
}


/* ce-cv */
@media print, screen and (min-width:769px) {
  .ce-cv {
    display: grid;
    row-gap: 24px;
    width: 100%;
    padding: 56px 65px 64px;
    background-color: var(--blue);
  }
  .ce-cv__content {
    display: grid;
    row-gap: 16px;
    width: 100%;
  }
  .ce-cv__tabMenu {
    display: flex;
    column-gap: 16px;
  }
  .ce-cv__tabMenu-button {
    display: grid;
    place-content: center;
    width: 50%;
    min-height: 46px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--blue);
    border-top: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-color: var(--white);
    transition: 0.3s all ease;
    cursor: pointer;
  }
  .ce-cv__tabMenu-button:hover {
    color: var(--blue);
    background-color: var(--white);
  }
  .ce-cv__tabMenu-button.active {
    color: var(--blue);
    background-color: var(--white);
    pointer-events: none;
  }
  .ce-cv__tabContent {
    display: none;
    row-gap: 24px;
    width: 100%;
    padding: 32px 15px;
    background-color: var(--white);
  }
  .ce-cv__tabContent.active {
    display: grid;
  }
  .ce-cv__tabCourse {
    display: grid;
    row-gap: 16px;
  }
  .ce-cv__tabCourse-title {
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
  }
  .ce-cv__tabCourse-title span {
    font-size: 18px;
    color: var(--blue);
    font-weight: bold;
  }
  .ce-cv__tabCourse-textarea {
    display: grid;
    row-gap: 8px;
  }
  .ce-cv__tabCourse-details {
    display: flex;
    align-items: baseline;
    justify-content: center;
    column-gap: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }
  .ce-cv__tabCourse-priceMain {
    font-size: 32px;
    font-weight: 600;
  }
  .ce-cv__tabCourse-note {
    display: inline-block;
    margin: 0 auto;
  }
  .ce-cv__tab-cta {
    display: grid;
    place-content: center;
    max-width: 320px;
    width: 100%;
    min-height: 58px;
    margin: 0 auto;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--cta);
    border-radius: 40px;
    position: relative;
    transition: 0.3s all ease;
    text-decoration: none;
  }
  .ce-cv__tab-cta:hover {
    opacity: 0.7;
  }
  .ce-cv__tab-cta::after {
    content: "";
    background-image: url(/op/ce/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 6px;
    height: 12px;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
  }
}
@media print, screen and (max-width:768px) {
  .ce-cv {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
    padding: 14.933vw 4vw 17.067vw;
    background-color: var(--blue);
  }
  .ce-cv__content {
    display: grid;
    row-gap: 4.267vw;
    width: 100%;
  }
  .ce-cv__tabMenu {
    display: flex;
    column-gap: 2.133vw;
  }
  .ce-cv__tabMenu-button {
    display: grid;
    place-content: center;
    width: 50%;
    min-height: 12.267vw;
    font-size: 3.733vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--blue);
    border-top: 1px solid;
    border-right: 1px solid;
    border-left: 1px solid;
    border-color: var(--white);
    transition: 0.3s all ease;
    cursor: pointer;
  }
  .ce-cv__tabMenu-button:hover {
    color: var(--blue);
    background-color: var(--white);
  }
  .ce-cv__tabMenu-button.active {
    color: var(--blue);
    background-color: var(--white);
    pointer-events: none;
  }
  .ce-cv__tabContent {
    display: none;
    row-gap: 6.4vw;
    width: 100%;
    padding: 8.533vw 4vw;
    background-color: var(--white);
  }
  .ce-cv__tabContent.active {
    display: grid;
  }
  .ce-cv__tabCourse {
    display: grid;
    row-gap: 4.267vw;
  }
  .ce-cv__tabCourse-title {
    font-size: 3.733vw;
    text-align: center;
    line-height: 1.6;
  }
  .ce-cv__tabCourse-title span {
    font-size: 4.8vw;
    color: var(--blue);
    font-weight: bold;
  }
  .ce-cv__tabCourse-textarea {
    display: grid;
    row-gap: 2.133vw;
  }
  .ce-cv__tabCourse-details {
    display: flex;
    align-items: baseline;
    justify-content: center;
    column-gap: 2.133vw;
    text-align: center;
    font-size: 4.267vw;
    font-weight: 700;
    line-height: 1.4;
  }
  .ce-cv__tabCourse-priceMain {
    font-size: 8.533vw;
    font-weight: 600;
  }
  .ce-cv__tabCourse-note {
    display: inline-block;
    margin: 0 auto;
  }
  .ce-cv__tab-cta {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 15.467vw;
    margin: 0 auto;
    padding: 4.267vw 10.667vw;
    font-size: 4.267vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--cta);
    border-radius: 10.667vw;
    position: relative;
    transition: 0.3s all ease;
    text-decoration: none;
  }
  .ce-cv__tab-cta:hover {
    opacity: 0.7;
  }
  .ce-cv__tab-cta::after {
    content: "";
    background-image: url(/op/ce/icon_arrow_white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.6vw;
    height: 3.2vw;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6.4vw;
  }
}


/* ce-reason */
@media print, screen and (min-width:769px) {
  .ce-reason {
    display: grid;
    row-gap: 80px;
    width: 100%;
    padding: 80px 0;
    background-color: var(--bg_main);
  }
  .ce-reason-wrap {
    display: grid;
    row-gap: 24px;
    width: 100%;
    padding: 0 65px;
  }
  .ce-reason__body {
    display: grid;
    row-gap: 40px;
    width: 100%;
  }
  .ce-reason__lead {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-reason__title {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-reason__title-num {
    width: 120px;
    margin: 0 auto;
  }
  .ce-reason__title-textarea {
    display: grid;
    row-gap: 8px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
  }
  .ce-reason__title-sub {
    font-size: 16px;
  }
  .ce-reason__title-main {
    font-size: 36px;
  }
  .ce-reason__lead-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    padding: 20px;
    background-color: var(--bg_blue);
    border: 1px solid var(--blue);
    border-radius: 8px;
  }
  .ce-reason__lead-item {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
  }
  .ce-reason__lead-item::before {
    content: "";
    background-image: url(/op/ce/icon_check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0.33em;
    left: 0;
  }
  .ce-reason__box {
    display: grid;
    row-gap: 40px;
    width: 100%;
    padding: 56px 40px;
    background-color: var(--white);
  }
  .ce-reason__box-item {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-reason__box-item:not(:last-of-type) {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-reason__box-title {
    display: grid;
    row-gap: 4px;
    font-size: 26px;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
  }
  .ce-reason__box-titleSub {
    font-size: 16px;
  }
  .ce-reason__box-thumb {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .ce-reason__blueText {
    font-size: 18px;
    font-weight: bold;
    color: var(--blue);
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
  }
  .ce-reason__blueText::before {
    content: "";
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    background-color: var(--blue);
    color: var(--blue);
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .ce-reason__table-wrap {
    width: 100%;
  }
  .ce-reason__table-content {
    display: grid;
    row-gap: 16px;
    width: 100%;
  }
  .ce-reason__box-lead {
    display: grid;
    row-gap: 16px;
    width: 100%;
  }
  .ce-reason__table {
    width: 100%;
    border: 1px solid var(--line_gray);
  }
  .ce-reason__tr {
    display: flex;
    font-size: 14px;
    line-height: 1.4;
  }
  .ce-reason__th {
    display: grid;
    align-items: center;
    background-color: var(--blue);
    color: var(--white);
    font-size: 14px;
    line-height: 1.4;
    font-weight: bold;
    text-align: left;
    width: 100%;
    min-height: 40px;
    padding: 10px;
  }
  .ce-reason__th:not(:last-of-type) {
    border-right: 1px solid var(--line_gray);
  }
  .ce-reason__tbody .ce-reason__tr {
    border-top: 1px solid var(--line_gray);
  }
  .ce-reason__tbody td {
    display: grid;
    row-gap: 10px;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
  .ce-reason__tbody td > *:not(:last-of-type) {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-reason__tbody td:not(:last-of-type) {
    border-right: 1px solid var(--line_gray);
  }
  .ce-reason__th:nth-of-type(1),
  .ce-reason__tbody td:nth-of-type(1) {
    max-width: 160px;
  }
  .ce-reason__th:nth-of-type(2),
  .ce-reason__tbody td:nth-of-type(2) {
    max-width: 120px;
  }
  .ce-reason__th:nth-of-type(3),
  .ce-reason__tbody td:nth-of-type(3) {
    max-width: 140px;
  }
  .ce-reason__th:nth-of-type(4),
  .ce-reason__tbody td:nth-of-type(4) {
    max-width: 340px;
  }
  .ce-reason__tbody td.ce-reason__lebel-logoWrap {
    padding: 10px 0;
  }
  .ce-reason__lebel-logo {
    width: 100%;
    padding: 0 19.5px;
    margin: 0 auto;
  }
  .ce-reason__box-pointWrap {
    display: flex;
    column-gap: 40px;
    justify-content: center;
  }
  .ce-reason__box-pointWrap .ce-reason__box-point {
    width: 50%;
  }
  .ce-reason__box-pointWrap .ce-reason__box-point.--widthAuto {
    width: auto;
  }
  .ce-reason__box-pointItem {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    color: var(--black);
    padding-left: 1em;
    position: relative;
  }
  .ce-reason__box-pointItem::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .ce-reason__box-flow {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .ce-reason__box-flowList {
    display: grid;
    row-gap: 8px;
  }
  .ce-reason__box-flowItem {
    display: flex;
    align-items: stretch;
    border: 1px solid;
  }
  .ce-reason__box-flowNum {
    display: flex;
    align-items: center;
    width: 60px;
  }
  .ce-reason__box-flowThumb {
    width: 100%;
  }
  .ce-reason__box-flowTextarea {
    width: 100%;
    flex: 1;
    padding: 10px 15px;
  }
  .ce-reason__box-flowText {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
  }
  .ce-reason__box-flowText span {
    font-size: 16px;
  }
  .ce-reason__box-flowItem.--blue_light {
    border-color: #1DB8DE;
  }
  .ce-reason__box-flowItem.--blue_light .ce-reason__box-flowNum {
    background-color: #1DB8DE;
  }
  .ce-reason__box-flowItem.--blue_light .ce-reason__box-flowText span {
    color: #0A829F;
  }
  .ce-reason__box-flowItem.--pink {
    border-color: #EB6C9A;
  }
  .ce-reason__box-flowItem.--pink .ce-reason__box-flowNum {
    background-color: #EB6C9A;
  }
  .ce-reason__box-flowItem.--pink .ce-reason__box-flowText span {
    color: #D2366F;
  }
}
@media print, screen and (max-width:768px) {
  .ce-reason {
    display: grid;
    row-gap: 21.333vw;
    width: 100%;
    padding: 21.333vw 0;
    background-color: var(--bg_main);
  }
  .ce-reason-wrap {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
    padding: 0 4vw;
  }
  .ce-reason__body {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
  }
  .ce-reason__lead {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-reason__title {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-reason__title-num {
    width: 32vw;
    margin: 0 auto;
  }
  .ce-reason__title-textarea {
    display: grid;
    row-gap: 2.133vw;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
  }
  .ce-reason__title-sub {
    font-size: 4.267vw;
  }
  .ce-reason__title-main {
    font-size: 9.6vw;
  }
  .ce-reason__lead-list {
    display: grid;
    row-gap: 2.133vw;
    width: 100%;
    padding: 5.333vw;
    background-color: var(--bg_blue);
    border: 1px solid var(--blue);
    border-radius: 2.133vw;
  }
  .ce-reason__lead-item {
    font-size: 4.267vw;
    font-weight: 500;
    line-height: 1.6;
    padding-left: 6.4vw;
    position: relative;
  }
  .ce-reason__lead-item::before {
    content: "";
    background-image: url(/op/ce/icon_check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.267vw;
    height: 4.267vw;
    aspect-ratio: 1/1;
    position: absolute;
    top: 0.36em;
    left: 0;
  }
  .ce-reason__box {
    display: grid;
    row-gap: 10.667vw;
    width: 100%;
    padding: 10.667vw 4vw;
    background-color: var(--white);
  }
  .ce-reason__box-item {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-reason__box-item:not(:last-of-type) {
    padding-bottom: 10.667vw;
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-reason__box-title {
    display: grid;
    row-gap: 1.067vw;
    font-size: 6.933vw;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
  }
  .ce-reason__box-titleSub {
    font-size: 4.267vw;
  }
  .ce-reason__box-thumb {
    width: 100%;
    margin: 0 auto;
  }
  .ce-reason__blueText {
    font-size: 4.8vw;
    font-weight: bold;
    color: var(--blue);
    line-height: 1.4;
    margin-bottom: 2.133vw;
    padding-left: 4.267vw;
    position: relative;
  }
  .ce-reason__blueText::before {
    content: "";
    width: 2.133vw;
    height: 2.133vw;
    aspect-ratio: 1/1;
    background-color: var(--blue);
    color: var(--blue);
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .ce-reason__table-wrap {
    width: 100%;
  }
  .ce-reason__table-content {
    display: grid;
    row-gap: 4.267vw;
    width: 100%;
  }
  .ce-reason__box-lead {
    display: grid;
    row-gap: 4.267vw;
    width: 100%;
  }
  .ce-reason__table-overflow {
    width: 100%;
    overflow-x: scroll;
  }
  .ce-reason__table {
    width: 144vw;
    border: 1px solid var(--line_gray);
  }
  .ce-reason__tr {
    display: flex;
    font-size: 3.733vw;
    line-height: 1.4;
  }
  .ce-reason__th {
    display: grid;
    align-items: center;
    background-color: var(--blue);
    color: var(--white);
    font-size: 3.733vw;
    line-height: 1.4;
    font-weight: bold;
    text-align: left;
    width: 100%;
    min-height: 10.667vw;
    padding: 2.667vw;
  }
  .ce-reason__th:not(:last-of-type) {
    border-right: 1px solid var(--line_gray);
  }
  .ce-reason__tbody .ce-reason__tr {
    border-top: 1px solid var(--line_gray);
  }
  .ce-reason__tbody td {
    display: grid;
    row-gap: 2.667vw;
    align-items: center;
    width: 100%;
    padding: 2.667vw;
    min-height: 18.667vw;
  }
  .ce-reason__tbody td > *:not(:last-of-type) {
    padding-bottom: 2.667vw;
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-reason__tbody td:not(:last-of-type) {
    border-right: 1px solid var(--line_gray);
  }
  .ce-reason__th:nth-of-type(1),
  .ce-reason__tbody td:nth-of-type(1) {
    width: 26.667vw;
  }
  .ce-reason__th:nth-of-type(2),
  .ce-reason__tbody td:nth-of-type(2) {
    width: 32vw;
  }
  .ce-reason__th:nth-of-type(3),
  .ce-reason__tbody td:nth-of-type(3) {
    width: 37.333vw;
  }
  .ce-reason__th:nth-of-type(4),
  .ce-reason__tbody td:nth-of-type(4) {
    width: 48vw;
  }
  .ce-reason__tbody td.ce-reason__lebel-logoWrap {
    padding: 2.667vw 0;
  }
  .ce-reason__lebel-logo {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 2.667vw;
    margin: 0 auto;
    min-height: 18.667vw;
  }
  .ce-reason__box-pointWrap {
    display: grid;
    row-gap: 6.4vw;
  }
  .ce-reason__box-pointWrap .ce-reason__box-point {
    width: 100%;
  }
  .ce-reason__box-pointWrap .ce-reason__box-point.--widthAuto {
    width: auto;
  }
  .ce-reason__box-pointItem {
    font-size: 4.267vw;
    font-weight: bold;
    line-height: 1.6;
    color: var(--black);
    padding-left: 1em;
    position: relative;
  }
  .ce-reason__box-pointItem::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .ce-reason__box-flow {
    width: 100%;
    margin: 0 auto;
  }
  .ce-reason__box-flowList {
    display: grid;
    row-gap: 2.133vw;
  }
  .ce-reason__box-flowItem {
    display: flex;
    align-items: stretch;
    border: 1px solid;
  }
  .ce-reason__box-flowNum {
    display: flex;
    align-items: center;
    width: 16vw;
  }
  .ce-reason__box-flowThumb {
    width: 100%;
  }
  .ce-reason__box-flowTextarea {
    width: 100%;
    flex: 1;
    padding: 2.667vw 4vw;
  }
  .ce-reason__box-flowText {
    font-size: 3.733vw;
    line-height: 1.6;
    font-weight: 500;
  }
  .ce-reason__box-flowText span {
    font-size: 4.267vw;
  }
  .ce-reason__box-flowItem.--blue_light {
    border-color: #1DB8DE;
  }
  .ce-reason__box-flowItem.--blue_light .ce-reason__box-flowNum {
    background-color: #1DB8DE;
  }
  .ce-reason__box-flowItem.--blue_light .ce-reason__box-flowText span {
    color: #0A829F;
  }
  .ce-reason__box-flowItem.--pink {
    border-color: #EB6C9A;
  }
  .ce-reason__box-flowItem.--pink .ce-reason__box-flowNum {
    background-color: #EB6C9A;
  }
  .ce-reason__box-flowItem.--pink .ce-reason__box-flowText span {
    color: #D2366F;
  }
}


/* ce-reasonMore */
@media print, screen and (min-width:769px) {
  .ce-reasonMore {
    display: grid;
    row-gap: 24px;
    width: 100%;
    padding: 56px 40px;
    background-color: var(--blue);
    position: relative;
  }
  .ce-reasonMore::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-bottom: 32px solid var(--blue);
    border-top: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
  }
  .ce-reasonMore__content {
    display: grid;
    row-gap: 24px;
  }
  .ce-reasonMore__thumb {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .ce-reasonMore__textarea {
    width: 100%;
  }
}
@media print, screen and (max-width:768px) {
  .ce-reasonMore {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
    padding: 10.667vw 4vw;
    background-color: var(--blue);
    position: relative;
  }
  .ce-reasonMore::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8vw solid transparent;
    border-left: 8vw solid transparent;
    border-bottom: 8.533vw solid var(--blue);
    border-top: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -8vw;
    left: 0;
    right: 0;
  }
  .ce-reasonMore__content {
    display: grid;
    row-gap: 4.267vw;
  }
  .ce-reasonMore__thumb {
    width: 100%;
  }
  .ce-reasonMore__textarea {
    width: 100%;
  }
}


/* ce-voice */
@media print, screen and (min-width:769px) {
  .ce-voice {
    display: grid;
    row-gap: 80px;
    width: 100%;
    padding: 80px 65px;
    background-color: var(--bg_main);
  }
  .ce-voice-wrap {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-voice__title {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
  }
  .ce-voiceReview__list {
    display: grid;
    row-gap: 24px;
    width: 100%;
  }
  .ce-voiceReview__item {
    padding: 20px;
    background-color: var(--white);
    border: 1px solid var(--gray_deep);
    position: relative;
  }
  .ce-voiceReview__item::before {
    content: "";
    background-image: url(/op/ce/icon_voice.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 18px;
    position: absolute;
    top: -8px;
    left: 10px;
  }
  .ce-voiceReview__name {
    font-size: 14px;
    line-height: 1.6;
    text-align: right;
    font-weight: bold;
  }
  .ce-voiceFaq__list {
    display: grid;
    row-gap: 16px;
    width: 100%;
  }
  .ce-voiceFaq__item {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow_M);
  }
  .ce-voiceFaq__head {
    display: flex;
    align-items: baseline;
    padding: 20px;
    column-gap: 8px;
    cursor: pointer;
  }
  .ce-voiceFaq__head-text {
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
    flex: 1;
    padding-left: 24px;
    position: relative;
  }
  .ce-voiceFaq__head-text::before {
    content: "";
    background-image: url(/op/ce/icon_q.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 23px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ce-voiceFaq__body-overflow {
    overflow: hidden;
  }
  .ce-voiceFaq__body-wrap {
    padding: 20px 0 25px;
    margin: 0 20px;
    border-top: 1px solid var(--line_gray);
  }
  .ce-voiceFaq__body-textarea {
    display: grid;
    row-gap: 16px;
    padding-left: 24px;
    position: relative;
  }
  .ce-voiceFaq__body-textarea::before {
    content: "";
    background-image: url(/op/ce/icon_a.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 23px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ce-voiceFaq__body-text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
  }
  .toggle-icon {
    width: 14px;
    height: 14px;
    margin-top: 5px;
    position: relative;
    transition: all 0.3s ease;
  }
  .toggle-icon::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    color: var(--blue);
    margin: auto;
    position: absolute;
    inset: 0;
  }
  .toggle-icon::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--blue);
    color: var(--blue);
    margin: auto;
    position: absolute;
    inset: 0;
    transition: 0.3s all ease;
    transform: rotate(90deg);
  }
  .toggle-icon.is-open::after {
    transform: rotate(0deg);
  }
  .ce-voiceFaq__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
  }
  .ce-voiceFaq__body.is-open {
    grid-template-rows: 1fr;
  }
}
@media print, screen and (max-width:768px) {
  .ce-voice {
    display: grid;
    row-gap: 21.333vw;
    width: 100%;
    padding: 21.333vw 4vw;
    background-color: var(--bg_main);
  }
  .ce-voice-wrap {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-voice__title {
    font-size: 8.533vw;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
  }
  .ce-voiceReview__list {
    display: grid;
    row-gap: 6.4vw;
    width: 100%;
  }
  .ce-voiceReview__item {
    padding: 5.333vw;
    background-color: var(--white);
    border: 1px solid var(--gray_deep);
    position: relative;
  }
  .ce-voiceReview__item::before {
    content: "";
    background-image: url(/op/ce/icon_voice.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 5.333vw;
    height: 4.8vw;
    position: absolute;
    top: -2.133vw;
    left: 2.667vw;
  }
  .ce-voiceReview__name {
    font-size: 3.733vw;
    line-height: 1.6;
    text-align: right;
    font-weight: bold;
  }
  .ce-voiceFaq__list {
    display: grid;
    row-gap: 4.267vw;
    width: 100%;
  }
  .ce-voiceFaq__item {
    background-color: var(--white);
    border-radius: 2.133vw;
    box-shadow: var(--shadow_M);
  }
  .ce-voiceFaq__head {
    display: flex;
    align-items: baseline;
    padding: 4vw;
    column-gap: 2.133vw;
    cursor: pointer;
  }
  .ce-voiceFaq__head-text {
    font-size: 4.267vw;
    line-height: 1.6;
    font-weight: bold;
    flex: 1;
    padding-left: 6.4vw;
    position: relative;
  }
  .ce-voiceFaq__head-text::before {
    content: "";
    background-image: url(/op/ce/icon_q.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.267vw;
    height: 6.133vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ce-voiceFaq__body-overflow {
    overflow: hidden;
  }
  .ce-voiceFaq__body-wrap {
    padding: 5.333vw 0;
    margin: 0 4vw;
    border-top: 1px solid var(--line_gray);
  }
  .ce-voiceFaq__body-textarea {
    display: grid;
    row-gap: 4.267vw;
    padding-left: 6.4vw;
    position: relative;
  }
  .ce-voiceFaq__body-textarea::before {
    content: "";
    background-image: url(/op/ce/icon_a.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.267vw;
    height: 6.133vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ce-voiceFaq__body-text {
    font-size: 3.733vw;
    line-height: 1.6;
    font-weight: 500;
  }
  .toggle-icon {
    width: 3.733vw;
    height: 3.733vw;
    margin-top: 1.6vw;
    position: relative;
    transition: all 0.3s ease;
  }
  .toggle-icon::before {
    content: "";
    width: 100%;
    height: 0.533vw;
    background-color: var(--blue);
    color: var(--blue);
    margin: auto;
    position: absolute;
    inset: 0;
  }
  .toggle-icon::after {
    content: "";
    width: 100%;
    height: 0.533vw;
    background-color: var(--blue);
    color: var(--blue);
    margin: auto;
    position: absolute;
    inset: 0;
    transition: 0.3s all ease;
    transform: rotate(90deg);
  }
  .toggle-icon.is-open::after {
    transform: rotate(0deg);
  }
  .ce-voiceFaq__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: 250ms grid-template-rows ease;
  }
  .ce-voiceFaq__body.is-open {
    grid-template-rows: 1fr;
  }
}


/* ce-terms */
@media print, screen and (min-width:769px) {
  .ce-terms {
    display: grid;
    row-gap: 40px;
    padding: 80px 0 40px;
  }
  .ce-terms__h2Title {
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 18px;
    position: relative;
  }
  .ce-terms__h2Title::before {
    content: "";
    width: 58px;
    height: 6px;
    color: #ff6a0e;
    background-color: #ff6a0e;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .ce-terms-wrap {
    display: grid;
    row-gap: 24px;
  }
  .ce-terms__h3Title {
    display: grid;
    place-content: center;
    min-height: 112px;
    font-size: 28px;
    margin-top: 30px;
    border-top: 2px solid #216c9b;
    border-bottom: 2px solid #216c9b;
    position: relative;
  }
  .ce-terms__h3Title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 54px;
    aspect-ratio: 48/45;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .ce-terms__h3Title::after {
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 54px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
  }
  .ce-terms__h3Title.--01::before {
    background-image: url(/op/ce/icon_num01.svg);
  }
  .ce-terms__h3Title.--02::before {
    background-image: url(/op/ce/icon_num02.svg);
  }
  .ce-terms__h3Title.--03::before {
    background-image: url(/op/ce/icon_num03.svg);
  }
  .ce-terms__h3Title.--04::before {
    background-image: url(/op/ce/icon_num04.svg);
  }
  .ce-terms__h3Title.--05::before {
    background-image: url(/op/ce/icon_num05.svg);
  }
  .ce-terms__h3Title.--06::before {
    background-image: url(/op/ce/icon_num06.svg);
  }
  .ce-terms__content {
    display: grid;
    row-gap: 24px;
  }
  .ce-terms__content.--large {
    row-gap: 40px;
  }
  .ce-terms__text {
    font-size: 16px;
    line-height: 1.6;
  }
  .ce-terms__text a {
    color: var(--blue);
    transition: 0.3s all ease;
  }
  .ce-terms__text a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .ce-terms__text.--bold {
    font-weight: bold;
  }
  .ce-terms__list li {
    padding-left: 1em;
    position: relative;
  }
  .ce-terms__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .ce-terms__list li.--kome::before {
    content: "※";
  }
  .ce-terms__table-wrap {
    display: grid;
    row-gap: 12px;
  }
  .ce-terms__table {
    width: 100%;
    border: 1px solid var(--black);
  }
  .ce-terms__table tr {
    display: flex;
  }
  .ce-terms__table th,
  .ce-terms__table td {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    flex: 1;
  }
  .ce-terms__table th:nth-of-type(1),
  .ce-terms__table td:nth-of-type(1) {
    width: 360px;
    flex: none;
  }
  .ce-terms__table th:not(:last-of-type),
  .ce-terms__table td:not(:last-of-type) {
    border-right: 1px solid var(--black);
  }
  .ce-terms__table tbody tr {
    border-top: 1px solid var(--black);
  }
  .ce-terms__table-thead {
    background-color: #216c9b;
  }
  .ce-terms__table th.--grey,
  .ce-terms__table td.--grey {
    background-color: #dfdfdf;
  }
  .ce-terms__table th.--yellow,
  .ce-terms__table td.--yellow {
    background-color: #fffac0;
  }
  .ce-terms__table th.--bold,
  .ce-terms__table td.--bold {
    font-weight: bold;
  }
  .ce-terms__table-thead th {
    color: #fff;
    font-weight: bold;
  }
}
@media print, screen and (max-width:768px) {
  .ce-terms {
    display: grid;
    row-gap: 10.667vw;
    padding: 21.333vw 4vw 10.667vw;
  }
  .ce-terms__h2Title {
    font-size: 8.533vw;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    padding-bottom: 4.8vw;
    position: relative;
  }
  .ce-terms__h2Title::before {
    content: "";
    width: 15.467vw;
    height: 1.6vw;
    color: #ff6a0e;
    background-color: #ff6a0e;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .ce-terms-wrap {
    display: grid;
    row-gap: 6.4vw;
  }
  .ce-terms__h3Title {
    display: grid;
    place-content: center;
    min-height: 29.867vw;
    font-size: 5.333vw;
    text-align: center;
    margin-top: 8vw;
    border-top: 2px solid #216c9b;
    border-bottom: 2px solid #216c9b;
    position: relative;
  }
  .ce-terms__h3Title::before {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 14.4vw;
    aspect-ratio: 48/45;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -8vw;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .ce-terms__h3Title::after {
    content: "";
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    width: 42.667vw;
    height: 14.4vw;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: -8vw;
    left: 0;
    right: 0;
  }
  .ce-terms__h3Title.--01::before {
    background-image: url(/op/ce/icon_num01.svg);
  }
  .ce-terms__h3Title.--02::before {
    background-image: url(/op/ce/icon_num02.svg);
  }
  .ce-terms__h3Title.--03::before {
    background-image: url(/op/ce/icon_num03.svg);
  }
  .ce-terms__h3Title.--04::before {
    background-image: url(/op/ce/icon_num04.svg);
  }
  .ce-terms__h3Title.--05::before {
    background-image: url(/op/ce/icon_num05.svg);
  }
  .ce-terms__h3Title.--06::before {
    background-image: url(/op/ce/icon_num06.svg);
  }
  .ce-terms__content {
    display: grid;
    row-gap: 6.4vw;
  }
  .ce-terms__content.--large {
    row-gap: 10.667vw;
  }
  .ce-terms__text {
    font-size: 4.267vw;
    line-height: 1.6;
  }
  .ce-terms__text a {
    color: var(--blue);
    transition: 0.3s all ease;
  }
  .ce-terms__text a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .ce-terms__text.--bold {
    font-weight: bold;
  }
  .ce-terms__list li {
    padding-left: 1em;
    position: relative;
  }
  .ce-terms__list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  .ce-terms__list li.--kome::before {
    content: "※";
  }
  .ce-terms__table-wrap {
    display: grid;
    row-gap: 3.2vw;
  }
  .ce-terms__table {
    width: 100%;
    border: 1px solid var(--black);
  }
  .ce-terms__table tr {
    display: flex;
  }
  .ce-terms__table th,
  .ce-terms__table td {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 12.8vw;
    font-size: 3.733vw;
    text-align: center;
    padding: 2.667vw;
    flex: 1;
  }
  .ce-terms__table th:nth-of-type(1),
  .ce-terms__table td:nth-of-type(1) {
    width: 35%;
    flex: none;
  }
  .ce-terms__table th:not(:last-of-type),
  .ce-terms__table td:not(:last-of-type) {
    border-right: 1px solid var(--black);
  }
  .ce-terms__table tbody tr {
    border-top: 1px solid var(--black);
  }
  .ce-terms__table-thead {
    background-color: #216c9b;
  }
  .ce-terms__table th.--grey,
  .ce-terms__table td.--grey {
    background-color: #dfdfdf;
  }
  .ce-terms__table th.--yellow,
  .ce-terms__table td.--yellow {
    background-color: #fffac0;
  }
  .ce-terms__table th.--bold,
  .ce-terms__table td.--bold {
    font-weight: bold;
  }
  .ce-terms__table-thead th {
    color: #fff;
    font-weight: bold;
  }
  .ce-terms__table .sp-display-block {
    display: block;
  }
}


/* ce-modal */
@media print, screen and (min-width:769px) {
  .ce-modal__body {
    display: grid;
    row-gap: 32px;
    max-width: 740px;
    padding: 80px 80px 60px;
    border-radius: 8px;
  }
  .ce-modal__lead {
    display: grid;
    row-gap: 8px;
    text-align: center;
    line-height: 1.6;
  }
  .ce-modal__lead-main {
    font-size: 20px;
  }
  .ce-modal__lead-sub {
    font-size: 14px;
  }
  .ce-modal__button {
    display: flex;
    justify-content: center;
    column-gap: 16px;
  }
  .ce-modal__button-item {
    flex: 1;
  }
  .ce-modal__button-link {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 58px;
    font-size: 16px;
    font-weight: bold;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 40px;
    background-color: var(--white);
    padding: 16px 36px;
    position: relative;
    box-shadow: var(--shadow_M);
    transition: 0.3s all ease;
    text-decoration: none;
  }
  .ce-modal__button-link:hover {
    opacity: 0.7;
  }
  .ce-modal__button-link::before {
    content: "";
    content: "";
    background-image: url(/common_rn/text_icon_out_chu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    aspect-ratio: 1/1;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    right: 24px;
    bottom: 0;
  }
  .ce-modal__note-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  .ce-modal__note-link {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    color: var(--blue);
    font-weight: 500;
    padding-right: 16px;
    position: relative;
  }
  .ce-modal__note-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .ce-modal__note-link::before {
    content: "";
    content: "";
    background-image: url(/op/ce/icon_blank.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .ce-modal__acc {
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-modal__acc-head {
    width: 100%;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    line-height: 1.6;
    padding: 8px 0;
    text-decoration: none !important;
  }
  .ce-modal__acc-body {
    padding-bottom: 16px;
  }
  .ce-modal__acc-txt {
    font-size: 11px;
    line-height: 1.6;
    color: var(--black);
  }
  .ce-modal__acc-head.c-acc-text__head.c_rn-acc-text__head::after {
    background-image: url(/op/ce/icon_plus.svg);
    width: 14px;
    height: 14px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .ce-modal__acc-head.c-acc-text__head.c_rn-acc-text__head.js-c-acc-text-open::after {
    background-image: url(/op/ce/icon_minus.svg);
    width: 14px;
    height: 2px;
    right: 0;
  }
}
@media print, screen and (max-width:768px) {
  .ce-modal {
    padding: 8vw 4vw;
  }
  .ce-modal__body {
    display: grid;
    row-gap: 8.533vw;
    padding: 21.333vw 4vw 16vw;
    border-radius: 2.133vw;
  }
  .ce-modal__lead {
    display: grid;
    row-gap: 2.133vw;
    text-align: center;
    line-height: 1.6;
  }
  .ce-modal__lead-main {
    font-size: 5.333vw;
  }
  .ce-modal__lead-sub {
    font-size: 3.733vw;
  }
  .ce-modal__button {
    display: grid;
    row-gap: 4.267vw;
  }
  .ce-modal__button-item {
    width: 100%;
  }
  .ce-modal__button-link {
    display: grid;
    place-content: center;
    width: 100%;
    min-height: 15.467vw;
    font-size: 4.267vw;
    font-weight: bold;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 10.667vw;
    background-color: var(--white);
    padding: 4.267vw 9.6vw;
    position: relative;
    box-shadow: var(--shadow_M);
    transition: 0.3s all ease;
    text-decoration: none;
  }
  .ce-modal__button-link:hover {
    opacity: 0.7;
  }
  .ce-modal__button-link::before {
    content: "";
    content: "";
    background-image: url(/common_rn/text_icon_out_chu.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.2vw;
    height: 3.2vw;
    aspect-ratio: 1/1;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    right: 6.4vw;
    bottom: 0;
  }
  .ce-modal__note-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 2.133vw;
  }
  .ce-modal__note-link {
    display: inline-block;
    font-size: 3.733vw;
    line-height: 1.4;
    color: var(--blue);
    font-weight: 500;
    padding-right: 4.267vw;
    position: relative;
  }
  .ce-modal__note-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .ce-modal__note-link::before {
    content: "";
    content: "";
    background-image: url(/op/ce/icon_blank.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.267vw;
    height: 4.267vw;
    aspect-ratio: 1/1;
    position: absolute;
    margin-top: auto;
    margin-bottom: auto;
    top: 0;
    right: 0;
    bottom: 0;
  }
  .ce-modal__acc {
    width: 80vw;
    margin: 0 auto;
    border-bottom: 1px solid var(--line_gray);
  }
  .ce-modal__acc-head {
    width: 100%;
    font-size: 3.733vw;
    color: var(--black);
    font-weight: 500;
    line-height: 1.6;
    padding: 2.133vw 0;
    text-decoration: none !important;
  }
  .ce-modal__acc-body {
    padding-bottom: 4.267vw;
  }
  .ce-modal__acc-txt {
    font-size: 2.933vw;
    line-height: 1.6;
    color: var(--black);
  }
  .ce-modal__acc-head.c-acc-text__head.c_rn-acc-text__head::after {
    background-image: url(/op/ce/icon_plus.svg);
    width: 3.733vw;
    height: 3.733vw;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .ce-modal__acc-head.c-acc-text__head.c_rn-acc-text__head.js-c-acc-text-open::after {
    background-image: url(/op/ce/icon_minus.svg);
    width: 3.733vw;
    height: 0.533vw;
    right: 0;
  }
}