@charset "UTF-8";
/*!===========================
style.cssはSassから生成されていますので、
直接編集しないようご注意ください。
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("wow/animate.css");
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0; }

html {
  -webkit-text-size-adjust: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

ul, ol {
  list-style: none; }

button, input, select, textarea {
  margin: 0; }

html, * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit; }

img, embed, iframe, object, audio, video {
  height: auto;
  max-width: 100%; }

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: bottom; }

iframe {
  border: 0; }

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

td,
th {
  padding: 0;
  text-align: left; }

article,
aside,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active,
a:hover {
  outline-width: 0; }

b,
strong {
  font-weight: bold; }

.clear {
  clear: both; }

.cf:before, .cf:after {
  content: "";
  display: block; }

.cf:after {
  clear: both; }

.cf {
  zoom: 1;
  overflow: hidden; }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100; }

.table_w {
  width: 100%;
  display: table;
  table-layout: fixed; }

.table_c {
  display: table-cell;
  vertical-align: top; }

.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.align_center {
  text-align: center !important; }

.align_left {
  text-align: left !important; }

.align_right {
  text-align: right !important; }

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }

/* ===================================================================
	utility
=================================================================== */
.mt05 {
  margin-top: 5px; }

.mt10 {
  margin-top: 10px; }

.mt20 {
  margin-top: 20px; }

.mt30 {
  margin-top: 30px; }

.mt40 {
  margin-top: 40px; }

.mt50 {
  margin-top: 50px; }

.mt60 {
  margin-top: 60px; }

.txt_c {
  text-align: center; }

/* ===================================================================
	form
=================================================================== */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0; }

legend {
  padding: 0;
  border: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0; }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1; }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0; } }
.click_btn {
  animation: vertical 2s linear infinite;
  transform-origin: center; }

@keyframes vertical {
  5% {
    transform: translate(0px, 2px); }
  10% {
    transform: translate(0px, 0); }
  15% {
    transform: translate(0px, 2px); }
  20% {
    transform: translate(0px, 0); } }
html {
  font-size: 62.5%; }
  @media only screen and (max-width: 768px) {
    html {
      font-size: 50%; } }

body {
  background: url("img/body_bg.jpg");
  background-size: 100vw 100vh;
  background-position: top left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-size: 1.6em;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5; }

a {
  color: #333; }

header .inner {
  display: flex;
  justify-content: center;
  position: relative; }

.header__pr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px; }

.pr_txt {
  margin-top: 10px;
  text-align: center;
  position: relative;
  z-index: 10; }

@media only screen and (min-width: 769px) {
  a:hover {
    color: #333;
    text-decoration: none; }

  a, a img {
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s; }

  a img:hover {
    filter: alpha(opacity=75);
    -moz-opacity: 0.75;
    opacity: 0.75; } }
.cta_btn a {
  background-color: #d70e18 !important;
  border-radius: 0 !important;
  border-bottom: 3px solid #6D0F11 !important; }

.container {
  width: 1120px;
  margin: 0 auto;
  position: relative;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between; }
  .container .fixed_contents {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 45%;
    padding-left: 20px;
    height: 100vh; }
    .container .fixed_contents .inner {
      height: 100vh;
      -webkit-display: flex;
      -moz-display: flex;
      -ms-display: flex;
      -o-display: flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      padding-bottom: 80px;
      position: fixed; }
      .container .fixed_contents .inner .fixed_fv {
        position: relative; }
        .container .fixed_contents .inner .fixed_fv .fixed_fv_txt {
          position: absolute;
          top: 306px;
          left: 100px;
          font-size: 27px;
          font-weight: 700;
          display: inline-block;
          background-color: #ebf220;
          padding: 4px 40px; }
          .container .fixed_contents .inner .fixed_fv .fixed_fv_txt strong {
            font-weight: 700;
            font-size: 28px;
            color: #2e67e7; }
    .container .fixed_contents .fixed_contents_cta {
      margin-top: 50px;
      border-radius: 10px;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      -o-border-radius: 10px;
      -ms-border-radius: 10px;
      padding: 15px; }
      .container .fixed_contents .fixed_contents_cta .heading {
        font-weight: 700;
        position: relative;
        padding-left: 90px;
        font-size: 15px;
        font-size: 1.5rem;
        padding-top: 8px; }
        .container .fixed_contents .fixed_contents_cta .heading::before {
          content: "";
          position: absolute;
          width: 80px;
          height: 200%;
          background-image: url("../../sp/glp1/assets/img/client_rank_01.png");
          background-repeat: no-repeat;
          background-position: center top;
          background-size: 100% auto;
          left: 0;
          top: 0;
          pointer-events: none; }
        .container .fixed_contents .fixed_contents_cta .heading strong {
          font-size: 19px;
          font-size: 1.9rem;
          font-weight: 700; }
      .container .fixed_contents .fixed_contents_cta .cta_wrap {
        margin-top: 20px;
        -webkit-display: flex;
        -moz-display: flex;
        -ms-display: flex;
        -o-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -o-justify-content: center;
        justify-content: center; }
        .container .fixed_contents .fixed_contents_cta .cta_wrap .image {
          width: 120px; }
        .container .fixed_contents .fixed_contents_cta .cta_wrap .btn {
          width: calc(100% - 120px);
          padding-left: 15px; }
          .container .fixed_contents .fixed_contents_cta .cta_wrap .btn .cta_btn a {
            font-size: 17px;
            font-size: 1.7rem;
            padding: 12px 0; }
          .container .fixed_contents .fixed_contents_cta .cta_wrap .btn .txt {
            margin-top: 3px;
            text-align: center;
            font-size: 13px;
            font-size: 1.3rem;
            font-weight: 500;
            color: #f85987; }
    .container .fixed_contents .feature_hash ul li {
      display: inline-block;
      padding: 3px 7px;
      text-align: center;
      margin-right: 5px;
      color: #2e67e7;
      border: solid 2px #2e67e7;
      border-radius: 15px;
      font-weight: bold;
      background-color: #fff; }
  .container .main_contents {
    width: 52%;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
    -moz-box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
    box-shadow: 0 0 30px rgba(62, 35, 48, 0.1); }

.index sup {
  font-size: 10px;
  font-size: 1rem; }
.index .remarks {
  margin-top: 10px;
  font-size: 10px;
  font-size: 1rem; }
.index .cta .cta_txt {
  text-align: center;
  font-weight: 700;
  color: #f85987;
  font-size: 19px;
  font-size: 1.9rem;
  margin-bottom: 4px; }
.index .section08 .cta .cta_txt {
  text-align: center;
  font-weight: 700;
  color: #2e67e7;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 4px; }
.index .section08 .cta_btn a {
  background: #d70e18;
  border-bottom: 3px solid #234aa3; }
  .index .section08 .cta_btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 100%;
    background-image: url("../../sp/ed/assets/img/cta_ico.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 10px;
    pointer-events: none; }
.index .cta_btn a {
  display: block;
  text-decoration: none;
  background: #2e67e7;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  line-height: 1.3;
  padding: 18px 0; }
  .index .cta_btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 100%;
    background-image: url("../../sp/ed/assets/img/cta_ico.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    right: 15px;
    pointer-events: none; }
.index .cta_btn.variable_height a {
  padding: 8px 0; }
.index .shiny_btn {
  position: relative;
  overflow: hidden; }
  .index .shiny_btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, white 100%, rgba(255, 255, 255, 0) 0%);
    animation-name: shiny;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    pointer-events: none; }
.index .main_ttl {
  background: #2ebee7;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  padding: 12px 10px;
  position: relative;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -o-border-radius: 8px;
  -ms-border-radius: 8px; }
  .index .main_ttl::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #2ebee7 transparent transparent transparent;
    bottom: -10px; }
  .index .main_ttl strong {
    color: #ffef88 !important; }
.index .fv {
  position: relative; }
  .index .fv .fv_txt {
    position: absolute;
    text-align: center;
    font-size: 4vw;
    font-size: 15px;
    font-weight: 700;
    color: #5f3b38;
    line-height: 1.3;
    z-index: 1;
    background-color: #ebf220;
    padding: 10px;
    bottom: 60px; }
    .index .fv .fv_txt strong {
      font-weight: 700;
      font-size: 5vw;
      font-size: 18px;
      color: #2e67e7; }
  .index .fv .fv_txt2 {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #fff; }
    .index .fv .fv_txt2 span {
      background-color: #0492c0e6;
      display: inline-block;
      padding: 4px 40px;
      border-radius: 30px; }
    .index .fv .fv_txt2 strong {
      font-weight: 700;
      font-size: 28px;
      color: #ebf220; }
.index .fv_copy {
  text-align: center;
  width: 100%;
  padding: 20px 0;
  background-color: #2ebee7;
  font-weight: bold;
  font-size: 18px;
  color: #fff; }
  .index .fv_copy strong {
    color: #ebf220; }
.index .client_list {
  background: #d1ecf6;
  padding: 10px; }
  .index .client_list ul {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center; }
    .index .client_list ul li {
      width: calc((100% - 8%) / 5);
      margin-left: 2%; }
      .index .client_list ul li:first-child {
        margin-left: 0; }
      .index .client_list ul li img {
        border-radius: 8px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        -o-border-radius: 8px;
        -ms-border-radius: 8px; }
.index .section01 {
  padding: 15px 10px; }
  .index .section01 h2 {
    padding: 0 10px;
    text-align: center; }
  .index .section01 .items {
    margin-top: 8px;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #bdbdbd;
    border-right: none;
    position: relative; }
    .index .section01 .items .item {
      width: 100%;
      border-left: 1px solid #bdbdbd;
      padding: 10px 5px; }
      .index .section01 .items .item:first-child {
        border-left: none;
        background: #fffced;
        border: 2px solid #ff3210; }
      .index .section01 .items .item:nth-child(2) {
        background-color: #fff; }
      .index .section01 .items .item:last-child {
        border-right: 1px solid #bdbdbd;
        background-color: #fff; }
      .index .section01 .items .item .name {
        position: relative;
        padding-top: 50px; }
        .index .section01 .items .item .name::before {
          content: "";
          position: absolute;
          width: 70px;
          height: 100%;
          background-repeat: no-repeat;
          background-position: center 3px;
          background-size: 100% auto;
          left: 0;
          right: 0;
          margin: 0 auto;
          top: 0;
          pointer-events: none; }
        .index .section01 .items .item .name a {
          text-decoration: none;
          color: #00b1e4;
          font-weight: 500; }
      .index .section01 .items .item:nth-child(1) .name::before {
        background-image: url("../../sp/ed/assets/img/client_rank_01.png"); }
      .index .section01 .items .item:nth-child(2) .name::before {
        background-image: url("../../sp/ed/assets/img/client_rank_02.png"); }
      .index .section01 .items .item:nth-child(3) .name::before {
        background-image: url("../../sp/ed/assets/img/client_rank_03.png"); }
      .index .section01 .items .item:nth-child(4) .name::before {
        background-image: url("../../sp/ed/assets/img/client_rank_04.png"); }
      .index .section01 .items .item:nth-child(5) .name::before {
        background-image: url("../../sp/ed/assets/img/client_rank_05.png"); }
      .index .section01 .items .item:nth-child(1) .lead {
        color: #d70e18; }
    .index .section01 .items .name {
      text-align: center;
      font-size: 15px;
      font-size: 1.5rem; }
      .index .section01 .items .name a {
        text-decoration: none;
        font-weight: 500; }
    .index .section01 .items .image {
      margin-top: 5px; }
    .index .section01 .items .lead {
      margin-top: 5px;
      text-align: center;
      font-weight: 500;
      font-size: 10px;
      font-size: 1rem; }
    .index .section01 .items .reserve_btn {
      color: #fff;
      text-align: center;
      width: 100%;
      padding: 10px 0;
      background-color: #2e67e7;
      font-size: 13px;
      display: block;
      margin: 0 auto;
      text-decoration: none;
      border-radius: 25px;
      font-weight: bold; }
    .index .section01 .items .access {
      margin-top: 5px; }
      .index .section01 .items .access .ttl {
        background: #2ebee7;
        text-align: center;
        font-weight: 700;
        font-size: 12px;
        font-size: 1.2rem;
        color: #fff;
        padding: 3px 0;
        position: relative; }
        .index .section01 .items .access .ttl::before {
          content: "";
          position: absolute;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 6px 3px 0 3px;
          border-color: #2ebee7 transparent transparent transparent;
          left: 0;
          right: 0;
          margin: 0 auto;
          bottom: -6px; }
      .index .section01 .items .access .txt {
        margin-top: 5px;
        text-align: center;
        font-size: 10px;
        font-size: 1rem;
        font-weight: 700; }
        .index .section01 .items .access .txt span {
          display: inline-block;
          margin-right: 5px;
          font-size: 4.5vw;
          font-size: 24px; }
  .index .section01 table {
    width: 100%; }
    .index .section01 table .name {
      text-decoration: none;
      color: #00b1e4;
      font-weight: 500; }
    .index .section01 table th, .index .section01 table td {
      text-align: center;
      padding: 8px;
      vertical-align: middle;
      font-size: 12px;
      font-size: 1.2rem; }
    .index .section01 table th {
      font-weight: 700;
      color: #fff;
      background: #2e67e7; }
    .index .section01 table .th_image td {
      position: relative;
      padding-top: 70px; }
      .index .section01 table .th_image td::before {
        content: "";
        position: absolute;
        width: 70px;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center 3px;
        background-size: 100% auto;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 10px;
        pointer-events: none; }
      .index .section01 table .th_image td:nth-child(1)::before {
        background-image: url("../../sp/ed/assets/img/client_rank_01.png"); }
      .index .section01 table .th_image td:nth-child(2)::before {
        background-image: url("../../sp/ed/assets/img/client_rank_02.png"); }
      .index .section01 table .th_image td:nth-child(3)::before {
        background-image: url("../../sp/ed/assets/img/client_rank_03.png"); }
    .index .section01 table td {
      border: 1px solid #d4d4d4;
      width: calc(100% / 3); }
    .index .section01 table tr td:first-child {
      background: #fdf9ef; }
    .index .section01 table .ico img {
      width: 40px;
      margin: 0 0 10px; }
    .index .section01 table .btn {
      color: #fff;
      text-align: center;
      width: 100%;
      padding: 10px 0;
      background-color: #d70e18;
      font-size: 13px;
      display: block;
      margin: 0 auto;
      text-decoration: none;
      font-weight: bold;
      overflow: hidden; }
      .index .section01 table .btn a {
        color: #fff;
        text-decoration: none; }
.index .section02 {
  background: #ece9e6;
  padding: 20px; }
  .index .section02 .heading {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }
    .index .section02 .heading .image {
      width: 100px; }
    .index .section02 .heading .txt {
      width: calc(100% - 100px);
      padding-left: 15px; }
      .index .section02 .heading .txt .txt_inner {
        background: #fff;
        padding: 15px 0;
        font-size: 15px;
        border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        -o-border-radius: 10px;
        -ms-border-radius: 10px;
        position: relative;
        text-align: center; }
        .index .section02 .heading .txt .txt_inner::before {
          content: "";
          position: absolute;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 3px 6px 3px 0;
          border-color: transparent #fff transparent transparent;
          left: -6px;
          top: 50%;
          margin-top: -3px; }
        .index .section02 .heading .txt .txt_inner span {
          font-size: 18px;
          font-weight: 700; }
          .index .section02 .heading .txt .txt_inner span strong {
            font-weight: 700;
            color: #2ebee7; }
  .index .section02 .acordion_wrap {
    margin-top: -10px;
    background: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    padding: 0 15px; }
    .index .section02 .acordion_wrap .trigger {
      font-size: 20px;
      font-size: 2rem;
      font-weight: 700;
      position: relative;
      padding: 15px 0; }
      .index .section02 .acordion_wrap .trigger::before {
        content: "＋";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        font-size: 30px;
        font-size: 3rem;
        font-weight: 400;
        color: #5f5f5f; }
      .index .section02 .acordion_wrap .trigger.active::before {
        content: "－"; }
    .index .section02 .acordion_wrap .acordion_inner {
      padding: 15px 0;
      border-top: 2px solid #2ebee7;
      font-size: 18px;
      font-size: 1.8rem; }
    .index .section02 .acordion_wrap p strong {
      background: -webkit-linear-gradient(transparent 80%, #ebf220 20%);
      background: -o-linear-gradient(transparent 80%, #ebf220 20%);
      background: linear-gradient(transparent 80%, #ebf220 20%); }
    .index .section02 .acordion_wrap .heading {
      margin: 15px 0;
      text-align: center;
      font-weight: 700;
      color: #2ebee7; }
    .index .section02 .acordion_wrap ul {
      margin-top: 10px; }
      .index .section02 .acordion_wrap ul li {
        margin-top: 8px; }
        .index .section02 .acordion_wrap ul li:first-child {
          margin-top: 0; }
.index .section03 {
  padding: 20px 0; }
  .index .section03 .inner {
    padding: 0 10px; }
  .index .section03 .client {
    margin-top: 5px; }
    .index .section03 .client ul li {
      margin-top: 20px;
      border: 1px solid #b6b6b6;
      padding: 15px 10px;
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
      .index .section03 .client ul li:first-child {
        margin-top: 0; }
      .index .section03 .client ul li:nth-child(1) {
        margin-top: 0;
        background: #fffced;
        border-color: #cfb42d; }
      .index .section03 .client ul li .name {
        font-size: 4vw; }
        .index .section03 .client ul li .name a {
          display: block;
          text-decoration: none;
          font-weight: 700;
          position: relative;
          line-height: 44px;
          padding-left: 80px; }
          .index .section03 .client ul li .name a::before {
            content: "";
            position: absolute;
            width: 70px;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 100% auto;
            left: 0;
            top: 0;
            pointer-events: none; }
    .index .section03 .client table {
      margin-top: 8px;
      width: 100%;
      border: 1px solid #c4ac30;
      background: #fff; }
      .index .section03 .client table th, .index .section03 .client table td {
        text-align: center;
        vertical-align: top;
        width: calc(100% / 3); }
      .index .section03 .client table tr th {
        background: #c4ac30;
        color: #fff;
        font-weight: 700;
        padding: 5px;
        border-left: 1px solid #fff; }
        .index .section03 .client table tr th:first-child {
          border-left: none; }
      .index .section03 .client table tr td {
        padding: 10px;
        font-size: 12px;
        font-size: 1.2rem;
        border-left: 1px solid #c4ac30; }
        .index .section03 .client table tr td:first-child {
          border-left: none; }
        .index .section03 .client table tr td span {
          font-size: 24px;
          font-size: 2.4rem;
          font-weight: 700;
          color: #f85987; }
      .index .section03 .client table .ico {
        width: 50%;
        margin: 0 auto 6px; }
    .index .section03 .client .cta {
      margin-top: 15px; }
      .index .section03 .client .cta .cta_btn {
        padding: 0 10px; }
    .index .section03 .client .remarks {
      text-align: center; }
      .index .section03 .client .remarks span {
        color: #f85987;
        font-weight: 700; }
    .index .section03 .client ul li:nth-child(1) .name a::before {
      background-image: url("../../sp/ed/assets/img/client_rank_01.png"); }
    .index .section03 .client ul li:nth-child(2) .name a::before {
      background-image: url("../../sp/ed/assets/img/client_rank_02.png"); }
    .index .section03 .client ul li:nth-child(2) table {
      border-color: #9a9a9a; }
      .index .section03 .client ul li:nth-child(2) table th {
        background: #9a9a9a; }
      .index .section03 .client ul li:nth-child(2) table td {
        border-color: #9a9a9a; }
    .index .section03 .client ul li:nth-child(3) .name a::before {
      background-image: url("../../sp/ed/assets/img/client_rank_03.png"); }
.index .section04 {
  padding: 20px 10px; }
  .index .section04 .content {
    margin-top: 20px;
    background-image: url("../../sp/ed/assets/img/section04_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    padding-top: calc(700 / 710 * 100%); }
    .index .section04 .content .remarks, .index .section04 .content .txt, .index .section04 .content .item {
      position: absolute; }
    .index .section04 .content .remarks {
      font-size: 14px;
      font-size: 1.4rem;
      width: 100%;
      text-align: center;
      top: 1vw; }
    .index .section04 .content .txt {
      font-size: 20px;
      font-weight: 700;
      color: #d70e18;
      top: 130px;
      right: 70px;
      pointer-events: none; }
    .index .section04 .content .item {
      overflow: hidden;
      box-shadow: 2px 2px 2px 0 #333;
      width: 25.33%; }
      .index .section04 .content .item img {
        width: 100%; }
    .index .section04 .content .item_01 {
      top: 170px;
      right: 130px;
      border: 5px solid #99d9eb;
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
    .index .section04 .content .item_02 {
      top: 320px;
      right: 280px; }
    .index .section04 .content .item_03 {
      top: 400px;
      right: 350px; }
    .index .section04 .content .item_04 {
      top: 55vw;
      left: 21vw; }
    .index .section04 .content .item_05 {
      top: 69vw;
      left: 30vw; }
.index .section05 {
  padding: 20px 10px;
  overflow: hidden; }
  .index .section05 h2 {
    position: relative;
    z-index: 10; }
  .index .section05 .client_archive {
    margin-top: 20px; }
    .index .section05 .client_archive ul li {
      position: relative;
      margin-top: 50px; }
      .index .section05 .client_archive ul li:first-child {
        margin-top: 0; }
      .index .section05 .client_archive ul li::before {
        content: '';
        position: absolute;
        top: 350px;
        left: 0;
        width: 300%;
        height: 45.2%;
        margin: 0 -80% 0;
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
        z-index: 1; }
      .index .section05 .client_archive ul li::after {
        content: '';
        position: absolute;
        bottom: -200px;
        left: 0;
        width: 300%;
        height: 38%;
        margin: 0 -80% 0;
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
        z-index: 1; }
      .index .section05 .client_archive ul li .overview, .index .section05 .client_archive ul li .point, .index .section05 .client_archive ul li .recommend, .index .section05 .client_archive ul li .cta, .index .section05 .client_archive ul li .remarks {
        position: relative;
        z-index: 2; }
      .index .section05 .client_archive ul li .calendar {
        text-align: center;
        position: relative;
        margin: 20px auto;
        display: flex;
        justify-content: center;
        background-color: #fff;
        max-width: max-content;
        width: 100%;
        z-index: 3; }
      .index .section05 .client_archive ul li .name {
        font-size: 25px; }
        .index .section05 .client_archive ul li .name a {
          display: block;
          text-decoration: none;
          font-weight: 700;
          position: relative;
          line-height: 44px;
          padding-left: 80px; }
          .index .section05 .client_archive ul li .name a::before {
            content: "";
            position: absolute;
            width: 70px;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 100% auto;
            left: 0;
            top: 0;
            pointer-events: none; }
      .index .section05 .client_archive ul li:nth-child(1) .name a::before {
        background-image: url("../../sp/ed/assets/img/client_rank_01.png"); }
      .index .section05 .client_archive ul li:nth-child(2) .name a::before {
        background-image: url("../../sp/ed/assets/img/client_rank_02.png"); }
      .index .section05 .client_archive ul li:nth-child(3) .name a::before {
        background-image: url("../../sp/ed/assets/img/client_rank_03.png"); }
      .index .section05 .client_archive ul li:nth-child(4) .name a::before {
        background-image: url("../../sp/ed/assets/img/client_rank_04.png"); }
      .index .section05 .client_archive ul li:nth-child(5) .name a::before {
        background-image: url("../../sp/ed/assets/img/client_rank_05.png"); }
    .index .section05 .client_archive .overview {
      padding: 10px 5px;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 5px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      -o-border-radius: 5px;
      -ms-border-radius: 5px; }
      .index .section05 .client_archive .overview .headline {
        margin-top: 3px;
        text-align: center;
        font-weight: 700;
        font-size: 25px;
        color: #fc2b68; }
        .index .section05 .client_archive .overview .headline strong {
          font-weight: 700;
          font-size: 5.5vw; }
      .index .section05 .client_archive .overview .image {
        width: 59.15%;
        margin: 10px auto 0; }
      .index .section05 .client_archive .overview .data {
        margin-top: 8px; }
        .index .section05 .client_archive .overview .data .heading {
          text-align: center;
          color: #f48696;
          font-size: 20px;
          font-size: 2rem; }
        .index .section05 .client_archive .overview .data table {
          width: 100%;
          background: #fff;
          border: 1px solid #f48696;
          margin-top: 5px; }
          .index .section05 .client_archive .overview .data table th, .index .section05 .client_archive .overview .data table td {
            padding: 5px;
            font-size: 12px;
            font-size: 1.2rem; }
          .index .section05 .client_archive .overview .data table tr th {
            background: #f48696;
            border-bottom: 1px solid #fff;
            color: #fff;
            font-weight: 500;
            width: 25%; }
            .index .section05 .client_archive .overview .data table tr th:last-child {
              border-bottom: none; }
          .index .section05 .client_archive .overview .data table tr td {
            border-bottom: 1px solid #f48696; }
            .index .section05 .client_archive .overview .data table tr td sup {
              font-size: 10px;
              font-size: 1rem; }
          .index .section05 .client_archive .overview .data table .ico_wrap {
            -webkit-display: flex;
            -moz-display: flex;
            -ms-display: flex;
            -o-display: flex;
            display: flex;
            -webkit-flex-wrap: wrap;
            -moz-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            -o-flex-wrap: wrap;
            flex-wrap: wrap;
            -webkit-justify-content: flex-start;
            -moz-justify-content: flex-start;
            -ms-justify-content: flex-start;
            -o-justify-content: flex-start;
            justify-content: flex-start;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            -o-align-items: center;
            align-items: center; }
            .index .section05 .client_archive .overview .data table .ico_wrap .ico {
              width: 20px; }
            .index .section05 .client_archive .overview .data table .ico_wrap .txt {
              padding-left: 5px; }
      .index .section05 .client_archive .overview .feature_items {
        -webkit-display: flex;
        -moz-display: flex;
        -ms-display: flex;
        -o-display: flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -o-justify-content: flex-start;
        justify-content: flex-start; }
        .index .section05 .client_archive .overview .feature_items .feature_item {
          margin-left: 1%;
          margin-top: 2px;
          text-align: center;
          font-size: 11px;
          font-size: 1.1rem;
          color: #fff;
          font-weight: 500;
          padding: 2px 4px;
          background: #faa0ae;
          border-radius: 50px;
          -moz-border-radius: 50px;
          -webkit-border-radius: 50px;
          -o-border-radius: 50px;
          -ms-border-radius: 50px; }
    .index .section05 .client_archive .blue .recommend h3 {
      background-color: #2e67e7; }
    .index .section05 .client_archive .yellow .recommend h3 {
      background-color: #ffae00; }
    .index .section05 .client_archive .green .recommend h3 {
      background-color: #4ea36c; }
    .index .section05 .client_archive .red .recommend h3 {
      background-color: #f24949; }
    .index .section05 .client_archive .purple .recommend h3 {
      background-color: #a084d2; }
    .index .section05 .client_archive .pickup .recommend h3 {
      background-color: #55acce; }
    .index .section05 .client_archive .recommend {
      margin-top: 5px; }
      .index .section05 .client_archive .recommend h3 {
        color: #fff;
        text-align: center;
        font-weight: 600;
        padding: 15px 0;
        font-size: 16px; }
        .index .section05 .client_archive .recommend h3 img {
          position: absolute;
          z-index: -1;
          width: 70%;
          left: 15%; }
      .index .section05 .client_archive .recommend .items {
        background: #fff;
        padding: 15px 15px;
        border-radius: 8px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        -o-border-radius: 8px;
        -ms-border-radius: 8px; }
        .index .section05 .client_archive .recommend .items .item {
          position: relative;
          font-size: 17px;
          font-size: 1.7rem;
          font-weight: 500;
          padding-left: 15px; }
          .index .section05 .client_archive .recommend .items .item::before {
            content: "";
            position: absolute;
            width: 10px;
            height: 100%;
            background-image: url("../../sp/ed/assets/img/ico_check.png");
            background-repeat: no-repeat;
            background-position: center top;
            background-size: 100% auto;
            left: 0;
            top: 6px;
            pointer-events: none; }
          .index .section05 .client_archive .recommend .items .item strong {
            font-weight: 700;
            color: #fc2b68; }
    .index .section05 .client_archive .blue .recommend .items .item strong {
      color: #4772c8; }
    .index .section05 .client_archive .blue .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .blue .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .blue .overview .headline {
      color: #2e67e7; }
    .index .section05 .client_archive .blue .overview .feature_items .feature_item {
      background: #2e67e7; }
    .index .section05 .client_archive .blue .point p strong {
      color: #2e67e7; }
    .index .section05 .client_archive .blue .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .yellow .recommend .items .item strong {
      color: #ffae00; }
    .index .section05 .client_archive .yellow .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .yellow .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .yellow .overview .headline {
      color: #ffae00; }
    .index .section05 .client_archive .yellow .overview .feature_items .feature_item {
      background: #ffae00; }
    .index .section05 .client_archive .yellow .point p strong {
      color: #ffae00; }
    .index .section05 .client_archive .yellow .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .green .recommend .items .item strong {
      color: #4ea36c; }
    .index .section05 .client_archive .green .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .green .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .green .overview .headline {
      color: #4ea36c; }
    .index .section05 .client_archive .green .overview .feature_items .feature_item {
      background: #4ea36c; }
    .index .section05 .client_archive .green .point p strong {
      color: #4ea36c; }
    .index .section05 .client_archive .green .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .red .recommend .items .item strong {
      color: #f24949; }
    .index .section05 .client_archive .purple .recommend .items .item strong {
      color: #a084d2; }
    .index .section05 .client_archive .purple .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .purple .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .purple .overview .headline {
      color: #a084d2; }
    .index .section05 .client_archive .purple .overview .feature_items .feature_item {
      background: #a084d2; }
    .index .section05 .client_archive .purple .point p strong {
      color: #a084d2; }
    .index .section05 .client_archive .purple .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .red .recommend .items .item strong {
      color: #f24949; }
    .index .section05 .client_archive .red .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .red .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .red .overview .headline {
      color: #f24949; }
    .index .section05 .client_archive .red .overview .feature_items .feature_item {
      background: #f24949; }
    .index .section05 .client_archive .red .point p strong {
      color: #ff3210; }
    .index .section05 .client_archive .red .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .pickupmain_ttl {
      top: 40px;
      background: #2ebee7;
      text-align: center;
      color: #fff;
      font-weight: 700;
      font-size: 25px;
      padding: 12px 10px;
      position: relative;
      border-radius: 8px;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      -o-border-radius: 8px;
      -ms-border-radius: 8px; }
      .index .section05 .client_archive .pickupmain_ttl::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 8px 0 8px;
        border-color: #2ebee7 transparent transparent transparent;
        bottom: -10px; }
    .index .section05 .client_archive .pickup .name a::before {
      background-image: url("../../sp/ed/assets/img/client_rank_pickup.png") !important; }
    .index .section05 .client_archive .pickup .cta .cta_txt {
      color: #d70e18; }
    .index .section05 .client_archive .pickup .cta .cta_btn a {
      background: #2e67e7;
      border-bottom: 3px solid #234aa3; }
    .index .section05 .client_archive .pickup .overview .headline {
      color: #55acce; }
    .index .section05 .client_archive .pickup .overview .feature_items .feature_item {
      background: #55acce; }
    .index .section05 .client_archive .pickup .point p strong {
      color: #55acce; }
    .index .section05 .client_archive .pickup .point p span {
      font-weight: bold; }
    .index .section05 .client_archive .point {
      margin-top: 10px;
      background: #fff;
      padding: 15px 15px;
      border-radius: 8px;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      -o-border-radius: 8px;
      -ms-border-radius: 8px; }
      .index .section05 .client_archive .point .heading {
        text-align: center;
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: 700;
        color: #f48696; }
      .index .section05 .client_archive .point p {
        margin-top: 10px;
        font-size: 18px;
        font-size: 1.8rem; }
        .index .section05 .client_archive .point p strong {
          font-weight: 700;
          color: #fc2b68; }
    .index .section05 .client_archive .cta {
      margin-top: 15px; }
      .index .section05 .client_archive .cta .cta_btn {
        padding: 0 15px; }
    .index .section05 .client_archive ul li.red::before {
      background: #e55869;
      opacity: 0.2; }
    .index .section05 .client_archive ul li.red::after {
      background: #e55869;
      opacity: 0.2; }
    .index .section05 .client_archive ul li.red .overview .data .heading {
      color: #f24949; }
    .index .section05 .client_archive ul li.red .overview .data table {
      border-color: #f24949; }
      .index .section05 .client_archive ul li.red .overview .data table th {
        background: #f24949; }
      .index .section05 .client_archive ul li.red .overview .data table td {
        border-color: #f24949; }
    .index .section05 .client_archive ul li.red .point .heading {
      color: #f24949; }
    .index .section05 .client_archive ul li.blue::before {
      background: #7ba4e1;
      opacity: 0.2; }
    .index .section05 .client_archive ul li.blue::after {
      background: #7ba4e1;
      opacity: 0.2; }
    .index .section05 .client_archive ul li.blue .overview .data .heading {
      color: #2e67e7; }
    .index .section05 .client_archive ul li.blue .overview .data table {
      border-color: #2e67e7; }
      .index .section05 .client_archive ul li.blue .overview .data table th {
        background: #2e67e7; }
      .index .section05 .client_archive ul li.blue .overview .data table td {
        border-color: #2e67e7; }
    .index .section05 .client_archive ul li.blue .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li.orange::before {
      background: #fdf5eb;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.orange::after {
      background: #fdf5eb;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.orange .overview .data .heading {
      color: #eda033; }
    .index .section05 .client_archive ul li.orange .overview .data table {
      border-color: #eda033; }
      .index .section05 .client_archive ul li.orange .overview .data table th {
        background: #eda033; }
      .index .section05 .client_archive ul li.orange .overview .data table td {
        border-color: #eda033; }
    .index .section05 .client_archive ul li.orange .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li.green::before {
      background: #e9f7ee; }
    .index .section05 .client_archive ul li.green::after {
      background: #e9f7ee; }
    .index .section05 .client_archive ul li.green .overview .data .heading {
      color: #4ea36c; }
    .index .section05 .client_archive ul li.green .overview .data table {
      border-color: #4ea36c; }
      .index .section05 .client_archive ul li.green .overview .data table th {
        background: #4ea36c; }
      .index .section05 .client_archive ul li.green .overview .data table td {
        border-color: #4ea36c; }
    .index .section05 .client_archive ul li.green .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li.purple::before {
      background: #f3eefb; }
    .index .section05 .client_archive ul li.purple::after {
      background: #f3eefb; }
    .index .section05 .client_archive ul li.purple .overview .data .heading {
      color: #a084d2; }
    .index .section05 .client_archive ul li.purple .overview .data table {
      border-color: #a084d2; }
      .index .section05 .client_archive ul li.purple .overview .data table th {
        background: #a084d2; }
      .index .section05 .client_archive ul li.purple .overview .data table td {
        border-color: #a084d2; }
    .index .section05 .client_archive ul li.purple .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li.yellow::before {
      background: #f6de6e;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.yellow::after {
      background: #f6de6e;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.yellow .overview .data .heading {
      color: #ffae00; }
    .index .section05 .client_archive ul li.yellow .overview .data table {
      border-color: #ffae00; }
      .index .section05 .client_archive ul li.yellow .overview .data table th {
        background: #ffae00; }
      .index .section05 .client_archive ul li.yellow .overview .data table td {
        border-color: #ffae00; }
    .index .section05 .client_archive ul li.yellow .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li.pickup::before {
      background: #55acce;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.pickup::after {
      background: #55acce;
      opacity: 0.3; }
    .index .section05 .client_archive ul li.pickup .overview .data .heading {
      color: #55acce; }
    .index .section05 .client_archive ul li.pickup .overview .data table {
      border-color: #55acce; }
      .index .section05 .client_archive ul li.pickup .overview .data table th {
        background: #55acce; }
      .index .section05 .client_archive ul li.pickup .overview .data table td {
        border-color: #55acce; }
    .index .section05 .client_archive ul li.pickup .point .heading {
      color: #ff3210; }
    .index .section05 .client_archive ul li:last-child {
      padding-bottom: 20px; }
  .index .section05 strong {
    color: #d70e18 !important; }
.index .section06 {
  padding: 20px 10px; }
  .index .section06 .main_ttl {
    font-size: 25px; }
    .index .section06 .main_ttl strong {
      font-size: 30px;
      color: #ffef88; }
  .index .section06 p {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 20px;
    padding: 0 10px; }
  .index .section06 .merit {
    margin: 20px -10px;
    position: relative; }
    .index .section06 .merit .message {
      position: absolute;
      z-index: 10;
      width: 41.86%;
      right: 2.67%;
      top: 15.57%; }
  .index .section06 .heading {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #5f3b38;
    text-align: center; }
  .index .section06 .image_02 {
    margin-top: 15px;
    text-align: center; }
.index .section07 {
  padding: 20px 10px; }
  .index .section07 .main_ttl {
    font-size: 25px;
    line-height: 1.3;
    z-index: 20; }
    .index .section07 .main_ttl strong {
      font-size: 25px;
      color: #ffef88; }
  .index .section07 .table {
    margin-right: -10px; }
  .index .section07 .wrap {
    width: 100%;
    overflow: scroll; }
  .index .section07 table {
    width: 800px;
    border: 1px solid #e4e4e4;
    margin-top: 20px; }
    .index .section07 table th, .index .section07 table td {
      text-align: center;
      font-size: 14px;
      font-size: 1.4rem;
      border: 1px solid #e4e4e4;
      padding: 8px 5px;
      width: 110px;
      background: #fff; }
    .index .section07 table thead th {
      background: #55acce;
      color: #fff;
      padding-top: 4px;
      padding-bottom: 4px; }
    .index .section07 table tbody tr:first-child {
      /*border:2px solid $mainColor;*/
      background: #fffcee; }
      .index .section07 table tbody tr:first-child td {
        background: #fffdea; }
    .index .section07 table tbody td p {
      margin-top: 3px;
      line-height: 1.4;
      font-size: 13px;
      font-size: 1.3rem; }
    .index .section07 table tbody a p {
      color: #10adf6;
      font-weight: 500;
      text-decoration: underline;
      font-size: 12px;
      font-size: 1.2rem; }
    .index .section07 table tbody .ico {
      width: 30px;
      margin: 0 auto; }
    .index .section07 table thead tr th:first-child,
    .index .section07 table tbody tr td:first-child {
      position: sticky;
      top: 0;
      left: 0;
      z-index: 10;
      width: 100px; }
      .index .section07 table thead tr th:first-child::after,
      .index .section07 table tbody tr td:first-child::after {
        content: "";
        position: absolute;
        top: -1px;
        right: -1px;
        width: 1px;
        height: 100%;
        border-right: 1px solid #e4e4e4;
        z-index: -1; }
  .index .section07 .cta_btn a {
    font-size: 1vw;
    padding: 14px 0; }
    .index .section07 .cta_btn a::before {
      display: none; }
.index .section08 {
  position: relative;
  padding: 50px 10px 20px;
  overflow: hidden;
  /*&::before {
      content: '';
      position: absolute;
      background: #fdf3f5;
      top: -100px;
      left: 0;
      width: 300%;
      height: 80%;
      margin: 0 -80% 0;
      -webkit-transform-origin: right center;
      -ms-transform-origin: right center;
      transform-origin: right center;
      -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
      transform: rotate(-15deg);
      z-index: -1;
  }*/ }
  .index .section08 .wrap {
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    padding: 15px 10px;
    background: #fdf9ef; }
  .index .section08 .client .heading {
    text-align: center;
    font-weight: 700;
    color: #ff3210;
    font-size: 20px;
    font-size: 2rem; }
  .index .section08 .client .name a {
    text-align: center;
    font-weight: 700;
    display: block;
    text-decoration: none;
    font-size: 28px;
    font-size: 2.8rem; }
  .index .section08 .client .image {
    width: 59.15%;
    margin: 10px auto 0; }
  .index .section08 .txt {
    margin-top: 15px;
    font-size: 18px;
    font-size: 1.8rem; }
    .index .section08 .txt strong {
      font-weight: 700; }
    .index .section08 .txt span {
      color: #d70e18; }
    .index .section08 .txt sup {
      font-size: 10px;
      font-size: 1rem; }
  .index .section08 .cta {
    margin-top: 15px; }
    .index .section08 .cta .cta_txt {
      color: #d70e18; }
    .index .section08 .cta .cta_btn {
      padding: 0 15px; }
.index .section09 {
  padding: 30px 15px 20px; }
  .index .section09 .wrap {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -o-justify-content: flex-start;
    justify-content: flex-start; }
    .index .section09 .wrap .image {
      width: 22%; }
    .index .section09 .wrap .txt {
      width: 75%;
      margin-left: 3%;
      border: 1px solid #bdbdbd;
      border-radius: 8px;
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      -o-border-radius: 8px;
      -ms-border-radius: 8px;
      padding: 1em; }
      .index .section09 .wrap .txt span {
        font-size: 11px;
        font-size: 1.1rem; }
.index .side_effects {
  margin: 20px 10px 60px;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px; }
  .index .side_effects .heading {
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ebee7;
    text-align: center; }
  .index .side_effects .items .item {
    background: #fff;
    margin-top: 30px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px; }
    .index .side_effects .items .item:first-child {
      margin-top: 0; }
    .index .side_effects .items .item ul li {
      margin-top: 20px; }
      .index .side_effects .items .item ul li:first-child {
        margin-top: 0; }
  .index .side_effects .name {
    padding: 20px 30px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 1px solid #dcdcdc; }
  .index .side_effects .item_inner {
    padding: 20px 30px; }
    .index .side_effects .item_inner .ico {
      margin: 0 0 5px;
      position: relative;
      font-weight: 700; }
      .index .side_effects .item_inner .ico span {
        display: inline-block;
        font-weight: 500; }
    .index .side_effects .item_inner .ico2 {
      margin: 0 0 5px;
      position: relative;
      padding-left: 1.1em;
      font-weight: 700; }
      .index .side_effects .item_inner .ico2::before {
        content: "・";
        position: absolute;
        top: 0;
        left: 0; }
      .index .side_effects .item_inner .ico2 span {
        display: inline-block;
        font-weight: 500; }
  .index .side_effects .heading.acd-trigger {
    position: relative;
    cursor: pointer; }
  .index .side_effects .heading.acd-trigger::after {
    content: "＋";
    font-size: inherit;
    display: inline-block;
    position: absolute;
    right: 0; }
  .index .side_effects .inner.active > .acd-trigger::after {
    content: "－"; }
  .index .side_effects .content {
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    transition: max-height 0.5s ease, margin-top 0.5s ease; }
  .index .side_effects .inner.active .content {
    max-height: unset;
    margin-top: 30px; }
.index .fixed_cta {
  position: fixed;
  width: 583px;
  z-index: 100;
  left: 50%;
  bottom: 0;
  background: #2ebee7;
  padding: 8px 25px;
  margin-left: -23px; }
  .index .fixed_cta .txt {
    width: 85%;
    margin: 0 auto; }
  .index .fixed_cta .wrap {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    margin-top: 5px; }
    .index .fixed_cta .wrap .image {
      width: 20%;
      position: relative; }
      .index .fixed_cta .wrap .image .heading {
        position: absolute;
        top: -5vw;
        left: 0;
        padding-right: 5.5vw;
        width: 125%; }
      .index .fixed_cta .wrap .image .client_image {
        width: 32%;
        position: absolute;
        right: -0.3vw;
        bottom: 1.2vw; }
    .index .fixed_cta .wrap .btn {
      width: 80%;
      padding-left: 15px; }
      .index .fixed_cta .wrap .btn .txt {
        text-align: center;
        font-weight: 500;
        color: #f85987;
        font-size: 14px;
        font-size: 1.4rem; }
      .index .fixed_cta .wrap .btn .cta_btn {
        margin-top: 2px; }
        .index .fixed_cta .wrap .btn .cta_btn a {
          font-size: 17px !important;
          padding: 16px 0;
          border-bottom: none;
          line-height: auto;
          min-height: auto;
          border-radius: 100px; }
          .index .fixed_cta .wrap .btn .cta_btn a::before {
            width: 14px;
            right: 8px; }

.exitProtection_overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: none; }

.exitProtection {
  width: 400px !important;
  margin: 0 auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 15%;
  border: none;
  z-index: 1000; }
  .exitProtection a {
    outline: none; }
  .exitProtection .wrap {
    position: relative;
    overflow: auto !important;
    padding-top: 40px;
    height: 510px;
    background-image: url("../../sp/ed/assets/img/exit_protection_dmm.png");
    background-repeat: no-repeat;
    background-position-y: bottom; }
    .exitProtection .wrap .exitProtection_banner {
      width: 250px;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: 205px; }
    .exitProtection .wrap .modal_close {
      background: #8d8d8d;
      color: #fff !important;
      width: 40px;
      line-height: 40px;
      display: block;
      font-size: 20px;
      font-weight: bold;
      position: absolute;
      top: 0px;
      right: 0;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      z-index: 100; }
    .exitProtection .wrap .cta_btn {
      width: 370px;
      left: 0;
      right: 0;
      margin: 0 auto;
      bottom: 12px;
      position: absolute; }
      .exitProtection .wrap .cta_btn a {
        display: block;
        text-decoration: none;
        background: #f85987;
        border-bottom: 3px solid #e94877;
        position: relative;
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-size: 2rem;
        font-weight: 700;
        border-radius: 100px;
        -moz-border-radius: 100px;
        -webkit-border-radius: 100px;
        -o-border-radius: 100px;
        -ms-border-radius: 100px;
        line-height: 1.3;
        padding: 18px 0; }
        .exitProtection .wrap .cta_btn a::before {
          content: "";
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 25px;
          height: 100%;
          background-image: url("../../sp/ed/assets/img/cta_ico.png");
          background-repeat: no-repeat;
          background-position: center center;
          background-size: 100% auto;
          right: 15px;
          pointer-events: none; }
      .exitProtection .wrap .cta_btn.variable_height a {
        padding: 8px 0; }
    .exitProtection .wrap .shiny_btn {
      position: relative;
      overflow: hidden; }
      .exitProtection .wrap .shiny_btn::after {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 50px;
        height: 50px;
        background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, white 100%, rgba(255, 255, 255, 0) 0%);
        animation-name: shiny;
        animation-duration: 4s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        pointer-events: none; }

.ui-dialog-titlebar {
  display: none; }

.ui-dialog {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 90% !important; }

.footer {
  background-color: #ddd;
  color: #555;
  padding: 10px 20px;
  margin-bottom: 10px; }
  .footer .foot_wrap {
    display: flex;
    justify-content: space-around;
    align-items: center; }
  .footer a {
    color: #555 !important;
    font-weight: normal;
    text-decoration: none;
    letter-spacing: .1em; }

.logo {
  width: 35%;
  padding-left: 10px; }

strong {
  color: #d70e18; }

.coupon {
  margin: 20px 0 0;
  border: 1px solid #2e67e7;
  background: #fff;
  text-align: center;
  border-radius: 8px;
  position: relative;
  z-index: 2; }
  .coupon .cp_ttl {
    background: #2e67e7;
    padding: 10px;
    color: #fff;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px; }

.js-coupon-copy {
  width: 320px;
  margin: 30px auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer; }

.js-coupon-copy img {
  display: block; }

.coupon-toast {
  position: fixed;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease; }

.coupon-toast.is-show {
  opacity: 1; }
