@charset "UTF-8";
/* ==========================================================================
 *Foundation
 *========================================================================== */
/* Reset
 *----------------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain) */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* Base
 *	----------------------------------------------------------------- */
html {
  background: #fff;
  font-size: 62.5%;
  height: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100%;
  background: #fff;
}
body.ext-bg_blue {
  background: url(/assets/img/bg-body.png) repeat-y center top;
  background-size: 100% auto;
}

a {
  opacity: 1;
  text-decoration: none;
  outline: none;
  color: #333;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media screen and (min-width: 834px) {
  a:hover {
    opacity: 0.7;
    text-decoration: none;
    -webkit-transition: none;
    transition: none;
  }
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
}

/* ==========================================================================
 *	Layout
 *========================================================================== */
/* Header ============== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  background-color: #fff;
  border-bottom: 1px solid #e5eaf0;
  -webkit-transition: background 0.4s, border-color 0.4s;
  transition: background 0.4s, border-color 0.4s;
  z-index: 100;
  /* SVG Setting */
}
.l-header.ext-white {
  color: #fff;
  background-color: transparent;
  border-bottom-color: rgba(229, 234, 240, 0);
}
.l-header path {
  fill: #333;
  -webkit-transition: fill 0.4s;
  transition: fill 0.4s;
}
.l-header .cls-1,
.l-header .cls-2,
.l-header .cls-3 {
  fill: none;
  stroke: #333;
  stroke-width: 3px;
  -webkit-transition: fill 0.4s, stroke 0.4s;
  transition: fill 0.4s, stroke 0.4s;
}
.l-header .cls-1 {
  stroke-miterlimit: 10;
}
.l-header .cls-2 {
  stroke-linecap: round;
  stroke-linejoin: round;
}
.l-header .cls-3 {
  fill-rule: evenodd;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.l-header.ext-white path {
  fill: #fff;
}
.l-header.ext-white .cls-1,
.l-header.ext-white .cls-2,
.l-header.ext-white .cls-3 {
  stroke: #fff;
}

.l-header__inner {
  max-width: 1024px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
}

.l-header__title {
  height: 47px;
  line-height: 47px;
  font-size: 17px;
  text-align: center;
}

.l-header__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.l-header__menu,
.l-header__info,
.l-header__back,
.l-header__close {
  top: 50%;
  position: absolute;
  margin-top: -12px;
}
.l-header__menu.is-disable,
.l-header__info.is-disable,
.l-header__back.is-disable,
.l-header__close.is-disable {
  display: none;
}

.l-header__menu {
  right: 14px;
}

.l-header__info {
  right: 66px;
}
.l-header__info a.unread:before {
  content: "●";
  color: #de4f58;
  position: absolute;
  top: -9px;
  right: -6px;
  font-size: 14px;
}

.l-header__back {
  left: 10px;
}

.l-header__close {
  right: 15px;
}

/* Contents ============== */
.l-contents {
  padding: 0 0 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh;
}
.l-header + .l-contents {
  padding: 47px 0 80px;
}
.ext-bg_blue .l-contents {
  background: url(/assets/img/bg-contents.svg) no-repeat center bottom;
  background-size: 100% auto;
}

/* Sidebar ============== */
.l-sidebar {
  position: fixed;
  left: -200%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.2s, left 0s 0.2s;
  transition: background-color 0.2s, left 0s 0.2s;
  cursor: pointer;
  z-index: 200;
}
.is-openSidebar .l-sidebar {
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: background-color 0.4s, left 0s 0s;
  transition: background-color 0.4s, left 0s 0s;
}

.l-sidebar__inner {
  position: absolute;
  top: 0;
  right: -275px;
  overflow: hidden;
  overflow-y: scroll;
  background: #fff;
  max-width: 275px;
  width: 100%;
  height: 100%;
  padding: 23px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
  cursor: default;
}
.is-openSidebar .l-sidebar__inner {
  right: 0;
  -webkit-transition: right 0.4s 0s;
  transition: right 0.4s 0s;
}
@media screen and (min-width: 834px) {
  .l-sidebar__inner {
    max-width: 380px;
    padding: 40px 30px;
  }
}

.l-sidebar__logo {
  font-size: 16px;
  color: #23a0d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  -webkit-transition: transform 0.4s 0s, opacity 0.4s 0s;
  transition: transform 0.4s 0s, opacity 0.4s 0s;
}
.is-openSidebar .l-sidebar__logo {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: transform 0.4s 0.2s, opacity 0.4s 0.2s;
  transition: transform 0.4s 0.2s, opacity 0.4s 0.2s;
}
.l-sidebar__logo img {
  margin-right: 10px;
}

.l-sidebar__name {
  margin-top: 35px;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  -webkit-transition: transform 0.4s 0s, opacity 0.4s 0s;
  transition: transform 0.4s 0s, opacity 0.4s 0s;
}
.is-openSidebar .l-sidebar__name {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: transform 0.4s 0.25s, opacity 0.4s 0.25s;
  transition: transform 0.4s 0.25s, opacity 0.4s 0.25s;
}

.l-sidebar__list {
  margin-top: 17px;
  padding-top: 29px;
  font-size: 14px;
  border-top: 1px solid #e5eaf0;
}
.l-sidebar__list + .l-sidebar__list {
  margin-top: 29px;
}
.l-sidebar__list li {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  display: flex;
}
.is-openSidebar .l-sidebar__list li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.l-sidebar__list li + li {
  margin-top: 34px;
}
.l-sidebar__list a {
  display: -ms-flexbox;
  display: inline list-item;
  width: 100%;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-sidebar__list span {
  width: 20px;
  margin-right: 10px;
  display: block;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-sidebar__list .external-link-icon {
  opacity: 0.6;
}

.l-sidebar__list li:nth-child(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.l-sidebar__list li:nth-child(2) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(2) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.l-sidebar__list li:nth-child(3) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.l-sidebar__list li:nth-child(4) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(4) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.l-sidebar__list li:nth-child(5) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.l-sidebar__list li:nth-child(6) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(6) {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}

.l-sidebar__list li:nth-child(7) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(7) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.l-sidebar__list li:nth-child(8) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(8) {
  -webkit-transition-delay: 0.65s;
  transition-delay: 0.65s;
}

.l-sidebar__list li:nth-child(9) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(9) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.l-sidebar__list li:nth-child(10) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(10) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

.l-sidebar__list li:nth-child(11) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(11) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.l-sidebar__list li:nth-child(12) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-openSidebar .l-sidebar__list li:nth-child(12) {
  -webkit-transition-delay: 0.85s;
  transition-delay: 0.85s;
}

.l-sidebar__close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.disclaimer {
  margin: 30px auto;
  text-align: center;
}
.run_btn {
  background: #23a0d3;
  color: #fff;
  padding: 13px 58px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.5s ease-out;
  border: solid 1px;
}
.run_btn:hover {
  border: 1px solid #23a0d3;
  background: #fff;
  color: #23a0d3;
}
.run_btn[disabled] {
  background-color: #fff;
  color: #ccc;
  border-color: #ccc;
  cursor: default;
}

/* Tabbar ============== */
.l-tabbar {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 57px;
  background-color: #f8fafa;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 1px solid #e5eaf0;
}
@media screen and (min-width: 834px) {
  .l-tabbar {
    display: none;
  }
}
.l-tabbar .cls-1,
.l-tabbar .cls-2 {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.l-tabbar .cls-1 {
  stroke: #666;
  stroke-width: 3px;
}
.l-tabbar .cls-2 {
  stroke: #f8fafa;
  stroke-width: 7px;
}
.l-tabbar .cls-3 {
  fill: none;
  stroke: #666;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
  -webkit-transition: stroke 0.4s;
  transition: stroke 0.4s;
}
.l-tabbar .is-active .cls-3,
.l-tabbar .is-active .cls-1 {
  stroke: #23a0d3;
}
.l-tabbar .is-active .st0 {
  stroke: #23a0d3;
  fill: #23a0d3;
}
.l-tabbar .is-active .st1 {
  stroke: #23a0d3;
}
.l-tabbar .is-active .st3 {
  stroke: #23a0d3;
}

.l-tabbar__list {
  max-width: 1024px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ==========================================================================
 *	Object
 *========================================================================== */
/* Component
 *----------------------------------------------------------------- */
/* Contents header */
.c-contents__title {
  background: #fff url(/assets/img/bg-stats.svg) no-repeat center bottom;
  background-size: 100% auto;
  min-height: 108px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 19px;
  margin-bottom: 20px;
}
.c-contents__title.ext-complete {
  background: none;
  color: #333;
  margin-bottom: -23px;
}

/* Section */
.c-section {
  background: #fff;
  padding: 0;
  max-width: 1024px;
  margin: 0 auto;
  padding: 25px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.c-section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Button */
.c-button {
  background: #23a0d3;
  height: 45px;
  line-height: 45px;
  border-radius: 22.5px;
  padding: 0 20px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.c-button_white {
  color: #23a0d3;
  background: #ffffff;
  font-size: 15px;
  min-width: 225px;
  height: 45px;
  text-align: center;
  display: inline-block;
  line-height: 45px;
  padding: 0 20px;
  margin-top: 20px;
  box-sizing: border-box;
  border: 1px solid #23a0d3;
  border-radius: 22.5px;
}
.p-button__black {
  background: #fff;
  border-radius: 22.5px;
  border: solid 1px #ccc;
  display: inline-block;
  font-size: 14px;
  height: 45px;
  line-height: 45px;
  margin: 0 5px 15px;
  padding: 0 20px;
  min-width: 225px;
}
.c-button.ext-white {
  background: #fff;
  color: #23a0d3;
}
.c-button.ext-autoadress {
  background: #eaeef3;
  height: 35px;
  line-height: 35px;
  border-radius: 17.5px;
  padding: 0 20px;
  width: 100%;
  color: #333;
}
@media screen and (max-width: 480px) {
  .c-button.ext-autoadress {
    font-size: 1.1em;
  }
}
.c-button.is-disable {
  opacity: 0.5;
  pointer-events: none;
}
.c-button.is-animate {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.c-button.is-animate:before,
.c-button.is-animate:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 22.5px;
  background: #23a0d3;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
.c-button.ext-white.is-animate:before,
.c-button.ext-white.is-animate:after,
.ext-white .c-button.is-animate:before,
.ext-white .c-button.is-animate:after {
  background: #fff;
}
.c-button.is-animate:before {
  -webkit-animation: buttonAnime 2s ease-out infinite;
  animation: buttonAnime 2s ease-out infinite;
}
.c-button.is-animate:after {
  -webkit-animation: buttonAnime 2s ease-out 1s infinite;
  animation: buttonAnime 2s ease-out 1s infinite;
}
.c-button_sign-up {
  color: #23a0d3;
  background: #ffffff;
  font-size: 15px;
  min-width: 225px;
  height: 45px;
  text-align: center;
  display: inline-block;
  line-height: 45px;
  padding: 0 20px;
  margin-top: 20px;
  box-sizing: border-box;
  border: 1px solid #23a0d3;
  border-radius: 22.5px;
}
.c-button_zendesk {
  background: #999933;
  min-width: 225px;
  height: 45px;
  line-height: 45px;
  border-radius: 22.5px;
  padding: 0 20px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-size: 15px;
  box-sizing: border-box;
}

@-webkit-keyframes buttonAnime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}
@keyframes buttonAnime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    opacity: 0;
  }
}
/* Table */
.c-table {
  border-top: 1px solid #e5eaf0;
  border-bottom: 1px solid #e5eaf0;
  width: 100%;
}
.c-table tr:nth-child(even) {
  background-color: #f3f5f8;
}
.c-table th {
  font-size: 13px;
  text-align: left;
  padding: 3px 15px;
  vertical-align: middle;
}
.c-table td {
  text-align: right;
  padding: 3px 15px;
  vertical-align: middle;
  font-size: 13px;
}
.c-table td strong {
  font-size: 17px;
}

/* Tab */
.c-tab {
  position: relative;
}

.c-tab_icon::after {
  content: "●";
  color: #fbb635;
  position: relative;
  top: -10px;
  right: -5px;
  font-size: 7px;
}

.c-tab__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #cccccc;
}
.c-tab.ext-white .c-tab__navi {
  border-color: #fff;
}
.c-tab__navi li {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 207px;
  width: 50%;
}
.c-tab__navi li:first-child {
  margin-left: 0;
}
.c-tab__navi li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-bottom: 15px;
  font-size: 14px;
  color: #a5a5a5;
  border-bottom: 3px solid transparent;
}
.c-tab.ext-white .c-tab__navi li a {
  color: #fff;
}
.c-tab__navi li a.is-active {
  color: #23a0d3;
  border-bottom: 3px solid #23a0d3;
}
.c-tab.ext-white .c-tab__navi li a.is-active {
  color: #fff;
  border-color: #fff;
}

.c-tab__content {
  display: none;
}
.c-tab__content.is-active {
  display: block;
  -webkit-animation: fade-in 0.4s ease 0s 1 normal;
  animation: fade-in 0.4s ease 0s 1 normal;
}

/* Modal */
body.is-noscroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.c-modal {
  position: fixed;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 50;
  opacity: 0;
  -webkit-transition: left 0s 0.4s, opacity 0.2s 0.2s;
  transition: left 0s 0.4s, opacity 0.2s 0.2s;
}
.c-modal.is-active {
  left: 0;
  opacity: 1;
  -webkit-transition: left 0s, opacity 0.2s;
  transition: left 0s, opacity 0.2s;
}

.c-modal__inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  bottom: -100%;
  background: #fff;
  border-radius: 6px 6px 0 0;
  width: 100%;
  max-width: 430px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 250px;
  max-height: 90vh;
  padding: 30px 15px 75px;
  -webkit-transition: bottom 0.4s;
  transition: bottom 0.4s;
}
.is-active .c-modal__inner {
  bottom: 0;
}

.c-modal__title {
  font-size: 18px;
  line-height: 1;
  text-align: center;
}

.c-modal__close {
  position: absolute;
  top: 17px;
  right: 17px;
}
.c-modal__close a {
  display: inline-block;
  text-indent: -10000px;
  outline: none;
  width: 17px;
  height: 17px;
  background: url(/assets/img/icn-header_close.svg) no-repeat center center;
  background-size: contain;
}

/* Form */
input {
  -webkit-appearance: none;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
input::-webkit-search-cancel-button {
  display: none;
}

select::-ms-expand {
  display: none;
}

.c-error {
  position: relative;
}
.c-error input {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  background: #feecf5 !important;
  border-bottom: 1px solid #de4f58 !important;
  width: 100%;
}

.c-form {
  max-width: 430px;
  padding: 0 15px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-form > div {
  width: 100%;
  margin-top: 40px;
}
.c-form > div:first-child {
  margin-top: 0;
}

.c-form__slider {
  margin: 15px 0;
}

.c-form__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.c-form__column > div {
  width: calc(285 / 630 * 100%);
}
.c-form__column.ext-birthday {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.c-form__column.ext-birthday > div:nth-child(2) {
  width: calc(220 / 630 * 100%);
}
.c-form__column.ext-birthday > div:nth-child(3),
.c-form__column.ext-birthday > div:nth-child(4) {
  margin-left: calc(60 / 630 * 100%);
  width: calc(145 / 630 * 100%);
}

.c-form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-form__radio label {
  margin-right: 30px;
  margin-top: 20px;
}

.c-form__label {
  width: 100%;
  font-size: 14px;
  color: #a5a5a5;
}
.ext-birthday .c-form__label {
  margin-bottom: 20px;
}

.c-form__text {
  width: 100%;
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
  line-height: 1.6;
}
.c-form__text:first-child {
  margin-top: 0;
}
.c-form__text a {
  text-decoration: underline;
}
.c-pass__text {
  width: 100%;
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
  line-height: 1;
  text-decoration: underline;
  display: flex;
  justify-content: flex-end;
}
.c-confirm {
  padding-bottom: 10px;
}

.c-form__require:after {
  content: "*" !important;
  display: inline-block !important;
  opacity: 1 !important;
  color: #de4f58;
  font-size: 12px;
  margin-left: 6px;
}

.c-form__showpw {
  display: inline-block;
  width: 23px;
  height: 14px;
  background: url(/assets/img/icn-form_pwshow.svg) no-repeat center center;
  background-size: 23px 14px;
  text-indent: -100000px;
  position: absolute;
  right: 7px;
  top: 50%;
  margin-top: -7px;
  cursor: pointer;
}
.c-form__showpw.is-active {
  background-image: url(/assets/img/icn-form_pwshow_active.svg);
}

.c-form__delete {
  width: 16px;
  height: 16px;
  background: url(/assets/img/icn-form_delete.svg) no-repeat center center;
  background-size: 16px 16px;
  text-indent: -100000px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -8px;
  display: none;
  cursor: pointer;
}
.c-form__delete.is-active {
  display: block;
}

.c-error .c-form__delete.c-form__delete_down {
  margin-top: -8px !important;
}

.c-form__action {
  margin-top: 54px;
  text-align: center;
}
.c-form__action .c-button {
  min-width: 225px;
}

.c-form__action__text {
  font-size: 13px;
  margin-top: 30px;
  line-height: 1;
}
.c-form__action__text + .c-form__action__text {
  margin-top: 60px;
}
.c-form__action__text a {
  text-decoration: underline;
}

.c-form__select {
  position: relative;
}
.c-form__select select {
  -webkit-appearance: none;
  border: 0;
  font-size: 16px;
  height: 33px;
  line-height: 33px;
  width: 100%;
  margin: 5px 0 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: #fff;
}
.c-form__select:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top: 7px solid #a6a6a6;
  position: absolute;
  bottom: 11px;
  margin-bottom: -7px;
  right: 14px;
}
.c-form__select.c-error:after {
  margin-bottom: 12px;
}

.c-form__dc {
  font-size: 13px;
  line-height: 1;
  position: relative;
  border: solid 1px #ccc;
  max-width: 430px;
  margin: 30px auto 0;
  text-align: center;
}

.c-form__dc a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 20px 0;
}

.c-form__dc img {
  position: absolute;
  top: 10px;
  right: 10px;
}

.c-form__disclaimer {
  text-align: center;
}
.c-form__disclaimer__button a.ac-btn {
  border-radius: 22.5px;
  border: solid 1px #ccc;
  display: inline-block;
  font-size: 14px;
  height: 45px;
  line-height: 45px;
  margin: 0 5px 15px;
  padding: 0 20px;
  min-width: 285px;
}
.c-confirm_bd {
  border-bottom: solid 1px #ccc;
  border-top: solid 1px #ccc;
  padding: 30px 0;
  text-align: center;
}

/* For iPhone5s */
@media screen and (max-width: 320px) {
  .c-tab__navi li a,
  .mlz-input_field > input,
  .mlz-input_field > label,
  .c-form__label,
  .c-form__require:after,
  .c-form__select select,
  .c-form__radio span,
  .c-button.ext-autoadress {
    font-size: 11px !important;
  }
}
/* Tinny Parts */
.c-colortip {
  display: inline-block;
  width: 22px;
  height: 9px;
  margin-right: 10px;
}

/* Project
 *----------------------------------------------------------------- */
/* Status */
.page-status .l-contents {
  background-color: #ebf6f8;
  padding-top: 0;
}
.page-status .c-section {
  margin-top: 15px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(68, 170, 191, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(68, 170, 191, 0.2);
  padding: 25px 15px;
}
.page-status .c-section__title {
  font-size: 18px;
  line-height: 1;
}
.page-status .c-section__title img {
  margin-right: 10px;
}

.p-stats {
  position: relative;
  padding-top: 47px;
  background: #fff url(/assets/img/bg-stats.svg) no-repeat center bottom;
  background-size: 100% auto;
  min-height: 265px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1024px;
  margin: 0 auto;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}

.p-stats__main {
  margin-top: 25px;
}

.p-stats__valuation {
  display: inline-block;
}
.is-preview .p-stats__valuation {
  text-align: center;
}
.p-stats__valuation span {
  font-size: 14px;
}
.p-stats__valuation span + span {
  color: #9fd3f3;
  font-size: 12px;
  margin-left: 11px;
}
.p-stats__valuation strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 48px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
.is-preview .p-stats__valuation strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  margin-top: 18px;
}
.p-stats__valuation strong span {
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  font-size: 35px;
  margin-right: 6px;
}

.p-stats__update {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #de4f58;
  width: 73px;
  height: 32px;
  border-radius: 16px;
  color: #fff;
  margin-left: 17px;
}
.p-stats__update img {
  margin-right: 5px;
}

.p-stats__loading {
  font-size: 0;
  display: inline-block;
  margin-left: 13px;
}
.p-stats__loading:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/assets/img/icn-status_loading.svg) no-repeat center center;
  background-size: cover;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.p-stats__sub {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-stats__sub__item + .p-stats__sub__item {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 22px;
  margin-left: 22px;
}

.p-stats__sub__title,
.p-stats__sub__text {
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.p-stats__sub__title {
  font-size: 14px;
}

.p-stats__sub__text {
  margin-top: 8px;
  font-size: 26px;
}
.is-preview .p-stats__sub__text {
  font-size: 12px;
  line-height: 1;
  width: 100%;
  margin-top: 12px;
}

.p-stats__sub__unit {
  font-size: 18px;
}

.p-preview.c-section {
  margin-top: 0;
  padding-top: 38px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.p-preview.c-section + .c-section {
  margin-top: 0;
}

.p-preview__text {
  text-align: center;
  font-size: 14px;
}

.p-preview__button {
  text-align: center;
  margin-top: 25px;
}
.p-preview__button .c-button {
  min-width: 225px;
}

.p-valuation.c-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.p-valuation__chart {
  position: relative;
  max-width: 264px;
  margin: 0 auto;
}
.p-valuation__chart.ext-paid {
  margin-top: 30px;
  max-width: 164px;
}

.p-valuation__chart__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  text-align: center;
  pointer-events: none;
  z-index: -1;
}
.ext-paid .p-valuation__chart__title {
  font-size: 14px;
}

.p-valuation__chart + .c-table {
  margin-top: 25px;
}

.p-valuation__button {
  text-align: center;
  margin-top: 20px;
}

.p-transition.c-section {
  padding: 25px 5px;
}

.p-transition__chart {
  margin: 15px 0 0;
}

.p-transition__chart__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 11px;
  padding: 0 5px;
}
.p-transition__chart__unit.ext-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: -27px;
}

.p-transition__chart__legend {
  margin: 20px 10px 0;
  background: #f3f5f8;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
}
.p-transition__chart__legend li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-transition__chart__legend li + li {
  margin-left: 12px;
}
.p-transition__chart__legend li img {
  margin-right: 10px;
}

/* Message & Information */
.p-message__list {
  margin-top: 15px;
}
.p-message__list:first-child {
  margin-top: 0;
}
@media screen and (min-width: 834px) {
  .p-message__list li a:hover p {
    opacity: 0.7;
  }
}
.p-message__list li + li {
  border-top: 1px solid #e5eaf0;
  margin-top: 15px;
}

.m-ar {
  background: url(/assets/img/icn-status_message_arrow.svg) no-repeat top 35px
    right;
  background-size: 8px 15px;
  padding-top: 20px;
}

.p-message__title {
  font-size: 14px;
  line-height: 1;
}
.is-new .p-message__title:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 50%;
  background: #23a0d3;
  vertical-align: middle;
}

.p-message__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: calc(48 / 28);
  position: relative;
  padding-right: 22px;
  word-wrap: break-word;
}
.p-message__text:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  right: 0;
  top: 50%;
  margin-top: -7px;
  background: url(/assets/img/icn-status_message_arrow.svg) no-repeat center
    center;
  background-size: contain;
}

.p-message__time {
  font-size: 12px;
  color: #a5a5a5;
  text-align: right;
  margin-top: 18px;
  line-height: 1;
}

.p-message_detail__title {
  font-size: 16px;
  font-weight: bold;
}

.p-message_detail__time {
  font-size: 12px;
  line-height: 1;
  color: #a5a5a5;
  margin-top: 15px;
}

.p-message_detail__text {
  margin-top: 25px;
  font-size: 14px;
  line-height: calc(48 / 28);
  white-space: pre-wrap;
}

.p-message_detail__link {
  display: block;
  border: solid 1px #23a0d3;
  color: #23a0d3;
  padding: 20px;
  font-size: 16px;
  margin-top: 25px;
}

.p-condition.c-section {
  padding: 5px 5px 25px;
}

.p-message_detail.c-section {
  word-wrap: break-word;
}

.p-condition__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.p-condition__image.market-column-image-good {
  background-image: url(/assets/img/bg-condition_sunny.svg);
}
.p-condition__image.market-column-image-ordinary {
  background-image: url(/assets/img/bg-condition_cloud.svg);
}
.p-condition__image.market-column-image-bad {
  background-image: url(/assets/img/bg-condition_rain.svg);
}
.p-condition__image.market-column-image-very-bad {
  background-image: url(/assets/img/bg-condition_thunder.svg);
}
.p-condition__image span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 159px;
  font-size: 18px;
}
.p-condition__image span img {
  margin-top: 10px;
}

.p-condition__text {
  margin-top: 20px;
  font-size: 14px;
  line-height: calc(48 / 28);
  padding: 0 15px;
  word-wrap: break-word;
}

/* simulation */
.p-simulation {
  background-color: #ebf6f8;
  text-align: center;
}
.p-simulation__robo-svg {
  display: inline-block;
  width: 160px;
  margin: 36px auto;
}
.p-simulation__button {
  display: inline-block;
  border: 2px solid #23a0d3;
  color: #23a0d3;
  background-color: #ffffff;
  padding: 12px 32px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 12px;
}
.p-simulation__button-disabled {
  display: inline-block;
  color: #ffffff;
  border: 2px solid #808080;
  opacity: 0.5;
  background-color: #808080;
  padding: 12px 32px;
  font-size: 20px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.p-simulation__button-small {
  font-size: 16px;
}
.p-simulation__button:hover {
  background-color: #23a0d3;
  color: #ffffff;
  opacity: 1;
}
.p-simulaion__button-box {
  text-align: center;
}
.p-simulaion__button-round {
  margin: 16px 0;
  width: 80%;
  max-width: 360px;
}
.p-simulaion__button-round .p-simulation__svg {
  margin-left: 8px;
}
.p-simulation__list {
  max-width: 1024px;
  margin: auto;
}
.p-simulation__list-title {
  margin-bottom: 5px;
}
.p-simulation__list-description {
  font-size: 12px;
  opacity: 0.7;
}
.p-simulation__list li {
  border-bottom: solid 1px #e5eaf0;
  padding: 8px 8px;
  font-size: 17px;
}
.p-simulation__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-simulation__list a img {
  opacity: 0.7;
}
.p-simulation__list a:hover p {
  opacity: 0.5;
}
.p-simulation__table {
  width: 100%;
  margin-bottom: 32px;
}
.p-simulation__table-header {
  font-size: 14px;
  background-color: #acacac;
  color: #fff;
}
.p-simulation__table-header-asset {
  text-align: left;
  padding: 8px;
}
.p-simulation__table-header-allocation {
  text-align: right;
  padding: 8px;
}
.p-simulation__table-asset-class {
  padding: 8px 0;
  font-size: 13px;
}
.p-simulation__table-percentage {
  text-align: end;
  padding: 8px;
  font-size: 17px;
}
.p-simulation__table-asset {
  background-color: #f3f5f8;
  padding: 8px;
  font-size: 13px;
  border-top: 1px solid #e5eaf0;
  border-bottom: 1px solid #e5eaf0;
}
.p-simulation__table-your-choice {
  width: 100%;
  margin-bottom: 32px;
  font-size: 14px;
}
.p-simulation__table-your-choice th {
  border: 1px solid #e5eaf0;
  background-color: #f3f5f8;
  padding: 8px;
}
.p-simulation__table-your-choice td {
  border: 1px solid #e5eaf0;
  padding: 8px;
}
.el__arrow-left {
  border-top: solid 2px;
  border-right: solid 2px;
  width: 9px;
  height: 9px;
  opacity: 0.7;
  transform: rotate(45deg);
  margin-right: 4px;
}
.el__required-pop-up {
  display: inline-block;
  font-size: 11px;
  height: 24px;
  line-height: 24px;
  margin-bottom: 8px;
  border: 1px solid #ffccc7;
  background-color: #fff2f0;
  border-radius: 16px;
  padding: 4px 24px;
}
.p-simulation-speech-bubbles {
  position: relative;
  background: #23a0d3;
  height: 40px;
  line-height: 40px;
  border-radius: 22.5px;
  padding: 0px 20px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 8px;
}
.p-simulation-speech-bubbles:before {
  content: "";
  position: absolute;
  top: 72%;
  left: 48%;
  margin-left: 52px;
  border: 10px solid transparent;
  border-top: 15px solid #23a0d3;
  transform: rotate(-45deg);
}
.p-simulation__mb-negative {
  margin-bottom: -31px;
}
.p-simulation__manual-section {
  border-bottom: 1px solid #e5eaf0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-simulation__manual-section:last-of-type {
  margin-bottom: 0px;
}
.p-simulation__manual-title {
  font-size: 18px;
  margin-bottom: 8px;
}
.p-simulation__manual-body {
  font-size: 14px;
  margin-bottom: 8px;
}
.p-simulation__manual-description {
  font-size: 12px;
  margin-bottom: 24px;
}
.p-simulation__manual-img {
  height: auto;
  width: 80%;
}
.p-simulation__manual-button {
  margin-bottom: 12px;
  width: 80%;
  max-width: 300px;
}
.p-simulation__text-align-center {
  text-align: center;
}
.p-simulation__vertical-text-bottom {
  vertical-align: text-bottom;
}
.p-simulation__manual-caution {
  color: #de4f58;
}
.p-simulation__manual-color-blue {
  color: #23a0d3;
}
.p-simulation__movie-container {
  position: relative;
  padding-top: 56.25%;
}
.p-simulation__movie {
  position: absolute;
  top: 0px;
}
.p-simulation__cart {
  position: relative;
  max-width: 264px;
  margin: 0 auto 32px;
}
.p-simulation__cart-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}
.p-simulation__cart-description {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  pointer-events: none;
}

/* portfolio */
.page-portfolio .c-tab__content {
  margin-top: 25px;
  padding: 0 15px;
}

.p-property.c-section {
  margin: 0 auto;
  position: relative;
  max-width: 430px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 10px 10px rgba(68, 170, 191, 0.2);
  box-shadow: 0px 0px 10px 10px rgba(68, 170, 191, 0.2);
  padding: 30px 15px 15px;
}
.p-property.c-section + .p-property {
  margin-top: 10px;
}

.p-property__label {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid #e2e7ee;
  border-radius: 4px;
  height: 27px;
  line-height: 27px;
  padding: 0 8px;
  font-size: 12px;
}
.p-property__label span {
  font-size: 15px;
  margin-left: 5px;
  font-family: system-ui, "Roboto", sans-serif;
  font-weight: bold;
}

.p-property__alert {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  text-indent: -100000px;
  outline: none;
  width: 34px;
  height: 23px;
  background-image: url(/assets/img/icn-portfolio_alert.svg);
  background-position: left top;
  background-size: 34px 23px;
}
.p-property__alert.is-active {
  background-image: url(/assets/img/icn-portfolio_alert_active.svg);
}
.p-property__alert.is-achieved:after {
  content: "達成";
  text-indent: 0;
  display: inline-block;
  font-size: 12px;
  padding: 0 7px;
  height: 22px;
  line-height: 22px;
  border-radius: 3px;
  color: #ffffff;
  background: #de4f58;
  position: absolute;
  white-space: nowrap;
  right: 100%;
  margin-right: 9px;
  top: 50%;
  margin-top: -12px;
}
.p-property__alert.is-achieved:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid #de4f58;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -7px;
}

.p-property__title {
  font-size: 16px;
  padding: 15px 0;
  text-align: center;
  overflow: hidden;
}
.p-property__title span {
  display: inline-block;
  white-space: nowrap;
}

.p-property__detail {
  background: #f3f5f8;
  padding: 15px;
}

.p-property__detail__inner {
  max-width: 320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
.ext-installment .p-property__detail__inner {
  padding: 0;
  max-width: 100%;
}

.p-property__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  white-space: nowrap;
}

.p-property__value-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  white-space: nowrap;
  flex-flow: column;
  padding-top: 15px;
}

.p-property__value-secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  white-space: nowrap;
  flex-flow: column;
  border-top: 1px solid #d2dbe5;
  padding-top: 15px;
  margin-top: 20px;
}

.p-property__value__col {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}
.p-property__value__col + .p-property__value__col {
  padding-right: 0;
  padding-left: 20px;
  border-left: 1px solid #d2dbe5;
}
.p-property__value__col h2 {
  font-size: 13px;
  line-height: 1;
}
.p-property__value__col p {
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 23px;
  margin-top: 7px;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}
.p-property__value__col p span {
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  font-size: 16px;
  margin-left: 6px;
  font-weight: normal;
}
.ext-installment .p-property__value__col {
  text-align: center;
  display: block;
  width: calc(365 / 630 * 100%);
}
.ext-installment .p-property__value__col:nth-child(2) {
  width: calc(265 / 630 * 100%);
}
.ext-installment .p-property__value__col h2,
.ext-installment .p-property__value__col p {
  width: 100%;
  text-align: center;
}

.p-property__subvalue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  line-height: 1;
  margin-top: 20px;
  white-space: nowrap;
  flex-flow: column;
  border-top: 1px solid #d2dbe5;
  padding-top: 15px;
}
.p-property__subvalue + .p-property__subvalue {
  margin-top: 10px;
}
.p-property__subvalue h2 {
  font-size: 12px;
  width: 100%;
  padding-bottom: 5px;
}
.p-property__subvalue p {
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 16px;
  text-align: right;
}
.p-property__subvalue p span {
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  font-size: 12px;
  margin-left: 10px;
}
.p-property__subvalue.ext-loss {
  margin-top: 8px;
}
.p-property__subvalue.ext-loss h2 {
  font-size: 13px;
}
.p-property__subvalue.ext-loss P {
  font-size: 23px;
  font-weight: bold;
}
.p-property__subvalue.ext-loss P span {
  font-size: 16px;
  font-weight: normal;
}

.p-property__number {
  background: #fff;
  padding: 15px;
  margin-top: 20px;
}

.p-property__number__title {
  color: #23a0d3;
  text-align: center;
  font-size: 13px;
}

.p-property__calculation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}
.p-property__calculation .c-error {
  display: inline-block;
  width: calc(214 / 509 * 100%);
}
.p-property__calculation .c-error input {
  width: 100%;
}
.c-error .error-text {
  font-size: 1.3rem;
  color: #de4f58;
}
.c-error .global-error-text {
  font-size: 1.3rem;
  color: #de4f58;
  margin-bottom: 10px;
}
.p-property__calculation input {
  display: inline-block;
  -webkit-appearance: none;
  border: 1px solid #d2dbe5;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  padding: 0 6px;
  width: calc(214 / 509 * 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: system-ui, "Roboto", sans-serif;
}
.p-property__calculation strong {
  font-weight: bold;
  font-size: 20px;
  margin-left: 10px;
  font-family: system-ui, "Roboto", sans-serif;
}
.p-property__calculation strong + strong {
  margin-left: auto;
}
.p-property__calculation span {
  margin-left: 5px;
}

.p-property__button {
  margin-top: 15px;
  text-align: center;
}
.p-property__button .c-button {
  min-width: 225px;
}

.p-modal__alert__title {
  font-size: 16px;
  line-height: 1;
  padding: 25px 0;
  text-align: center;
}

.p-modal__alert__detail {
  background: #f3f5f8;
  padding: 25px 15px;
}
.p-modal__alert__detail p {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  margin-top: 15px;
  text-align: center;
}
.p-modal__alert__detail p strong {
  font-size: 25px;
  font-family: system-ui, "Roboto", sans-serif;
  margin: 0 6px;
}
.p-modal__alert__detail input {
  font-size: 21px;
  font-family: system-ui, "Roboto", sans-serif;
  font-weight: bold;
  vertical-align: middle;
  margin-right: 10px;
  border: 1px solid #e2e7ee;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 145px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.p-modal__alert__detail input:after {
  content: attr(data-unit);
  display: inline-block;
  position: absolute;
}

.p-modal__alert__confirm {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  margin: 30px auto 0;
}

.p-modal__alert__button {
  margin-top: 30px;
  text-align: center;
}
.p-modal__alert__button .c-button {
  min-width: 225px;
}

/* Find */
.p-find.c-section {
  background: none;
  padding: 0px;
  margin-top: 35px;
}
.p-find.c-section:first-child {
  margin-top: 25px;
}
.p-find .c-section__title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.p-find__list {
  overflow: hidden;
  position: relative;
}

.p-find__item {
  background: #fff;
  border-radius: 5px;
  padding: 30px 15px 20px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-find__label {
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 4px;
  height: 24px;
  line-height: 24px;
  padding: 0 5px;
  font-size: 12px;
  color: #fff;
}

.p-find__title {
  font-size: 16px;
  padding: 10px 0 0;
  text-align: center;
  overflow: hidden;
}
.p-find__title span {
  display: inline-block;
  white-space: nowrap;
}

.p-find__value {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  background: #f3f5f8;
  padding: 15px;
  flex-flow: column;
}

.p-find__value__col {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}
.p-find__value__col + .p-find__value__col {
  text-align: left;
  padding-right: 0;
  border-top: 1px solid #d2dbe5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: start;
  padding-top: 15px;
  margin-top: 15px;
}
.p-find__value__col h3 {
  font-size: 13px;
  line-height: 1;
}
.p-find__value__col p {
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 19px;
  margin-top: 7px;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}
.p-find__value__col p span {
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  font-size: 13px;
  margin-left: 6px;
  font-weight: normal;
}

.p-find__value__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  white-space: nowrap;
}
.p-find__value__row + .p-find__value__row {
  margin-top: 7px;
}
.p-find__value__row p {
  margin-top: 0;
  margin-left: 5px;
}
.p-find__value__row p span {
  margin-left: 0;
}

.p-find__chart {
  padding-right: 11px;
}

.p-find__chart__title {
  font-size: 13px;
  line-height: 1;
  text-align: center;
  margin-top: 25px;
}

.p-find__chart__unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  font-size: 10px;
  padding: 0 5px;
  margin-top: -13px;
}
.p-find__chart__unit.ext-bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 0;
  margin-top: -27px;
  margin-right: -20px;
}

/* Study */
.p-study.c-section {
  background: none;
  max-width: 430px;
}

.p-study__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-study__list li {
  width: calc(335 / 690 * 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
}
.p-study__list li:nth-child(even) {
  margin-left: auto;
}
.p-study__list li a {
  display: block;
  min-height: 158px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-study__list__ja {
  display: block;
  line-height: 1;
  font-size: 16px;
}

.p-study__list__en {
  margin-top: 6px;
  display: block;
  line-height: 1;
  font-weight: 600;
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 12px;
  color: #a5a5a5;
}

.p-study__list__icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

/* Movie */
.p-movie {
  overflow-x: hidden;
}
.p-movie.c-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
}
.p-movie .c-section__title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 5px;
}

.p-movie__item {
  position: relative;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-movie__player {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.p-movie__player a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.p-movie__player a img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-movie__player a:after {
  position: absolute;
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
  background: url(/assets/img/icn-study_play.svg) no-repeat center center;
  background-size: 60px 60px;
}

.p-movie__title {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: calc(50 / 32);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-movie__text {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 14px;
  line-height: calc(48 / 28);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-movie__time {
  margin-top: 5px;
  padding: 0 10px 10px;
  text-align: right;
  font-weight: bold;
  font-size: 13px;
  color: #a5a5a5;
  line-height: 1;
}
.p-movie__time img {
  margin-right: 5px;
  vertical-align: bottom;
  display: inline-block !important;
}

/* Understanding */
.p-understanding {
  overflow-x: hidden;
}
.p-understanding.c-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
}
.p-understanding .c-section__title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 5px;
}

.p-understanding__item {
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.p-understanding__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.p-understanding__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 17px 17px 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-understanding__image {
  width: calc(160 / 550 * 100%);
  margin-right: calc(30 / 550 * 100%);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.p-understanding__image + div {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.p-understanding__image img {
  width: 100%;
  height: auto;
}

.p-understanding__title {
  font-size: 16px;
  font-weight: bold;
  line-height: calc(50 / 32);
}
.p-understanding__title.ext-new:before {
  font-family: system-ui, "Roboto", sans-serif;
  content: "NEW";
  background: #de4f58;
  border-radius: 4px;
  color: #ffffff;
  line-height: 18px;
  height: 18px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  padding: 0 6px;
  margin-right: 8px;
  margin-top: -3px;
}

.p-understanding__date {
  font-size: 12px;
  color: #a5a5a5;
  line-height: 1;
  margin-top: 10px;
}

.p-understanding__text {
  padding: 0 20px;
  margin-top: 13px;
  font-size: 14px;
  line-height: calc(48 / 28);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow: scroll;
}

.p-understanding__stats {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #fff;
  border-radius: 0px 0px 4px 4px;
  overflow: hidden;
}
.p-understanding__stats span {
  line-height: 32px;
  height: 32px;
  background: #f3f5f8;
  color: #d0d0d0;
  font-size: 13px;
  width: 33.3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.p-understanding__stats span + span {
  margin-left: 2px;
}
.p-understanding__stats span.ext-notyet.is-active {
  background-color: #23a0d3;
  color: #fff;
}
.p-understanding__stats span.ext-pass.is-active {
  background-color: #de4f58;
  color: #fff;
}
.p-understanding__stats span.ext-failure.is-active {
  background-color: #acacac;
  color: #fff;
}

/* Question */
.p-question {
  max-width: 430px;
}

.p-question__position {
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1;
}

.p-question__title {
  margin-top: 9px;
  font-size: 16px;
  font-weight: bold;
  line-height: calc(50 / 32);
  margin-bottom: 30px;
}

.p-question__list li {
  font-size: 14px;
  line-height: calc(48 / 28);
}
.p-question__list li + li {
  margin-top: 20px;
}

.p-question__truefalse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-question__truefalse li {
  width: calc(220 / 690 * 100%);
}
.p-question__truefalse li + li {
  margin-left: calc(100 / 690 * 100%);
}
.p-question__truefalse li label {
  display: block;
}
.p-question__truefalse li span {
  display: block;
  width: 100%;
  height: 0 !important;
  padding-top: 100%;
  background-color: #f3f5f8;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  padding-left: 0 !important;
  margin: 0;
  -webkit-transition: background-color 0.28s !important;
  transition: background-color 0.28s !important;
}
.p-question__truefalse li span:before,
.p-question__truefalse li span:after {
  display: none;
}
.p-question__truefalse li span.ext-true {
  background-image: url(/assets/img/icn-study_true.svg);
  background-size: 49px 49px;
}
.p-question__truefalse li span.ext-false {
  background-image: url(/assets/img/icn-study_false.svg);
  background-size: 36px 36px;
}
.p-question__truefalse li [type="radio"]:checked + span {
  background-color: #23a0d3;
}
.p-question__truefalse li [type="radio"]:checked + span.ext-true {
  background-image: url(/assets/img/icn-study_true_active.svg);
  background-size: 49px 49px;
}
.p-question__truefalse li [type="radio"]:checked + span.ext-false {
  background-image: url(/assets/img/icn-study_false_active.svg);
  background-size: 36px 36px;
}

/* Result */
.p-result__image {
  width: 259px;
  height: 259px;
  background: url(/assets/img/img-study_result.svg) no-repeat center top;
  background-size: 259px 259px;
  margin: 0 auto;
  padding-top: 49px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-result__image__inner {
  width: 135px;
  height: 160px;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  padding: 28px 12px 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-result__stats {
  display: inline-block;
  font-size: 33px;
  color: #de4f58;
  padding-bottom: 4px;
  border-bottom: 1px solid #de4f58;
}

.p-result__percent {
  font-family: system-ui, "Roboto", sans-serif;
  margin-top: 15px;
  font-size: 29px;
}
.p-result__percent span {
  font-size: 43px;
  line-height: 29px;
}

.p-result__score {
  margin-top: 12px;
  font-size: 14px;
}

.p-result__back {
  font-size: 13px;
  margin-top: 20px;
  text-align: center;
}
.p-result__back a {
  text-decoration: underline;
}

.p-explanation {
  max-width: 430px;
}

.p-explanation__title {
  font-size: 18px;
  text-align: center;
}
.p-explanation__title:before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(/assets/img/icn-study_explanation.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
  margin-top: -4px;
}

.p-explanation__list {
  margin-top: 12px;
  border-bottom: 1px solid #e5eaf0;
}
.p-explanation__list dt {
  font-size: 14px;
  border-top: 1px solid #e5eaf0;
  padding: 18px 0;
  position: relative;
  cursor: pointer;
}
.p-explanation__list dt:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(/assets/img/icn-study_plus.svg) no-repeat center center;
  background-size: 13px 13px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}
.p-explanation__list dt.is-active:after {
  background-image: url(/assets/img/icn-study_minus.svg);
  background-size: 13px 13px;
}
.p-explanation__list dt span {
  border-radius: 4px;
  display: inline-block;
  font-size: 12px;
  min-width: 48px;
  text-align: center;
  height: 24px;
  line-height: 24px;
  color: #fff;
  margin-left: 20px;
}
.p-explanation__list dt span.ext-success {
  background-color: #de4f58;
}
.p-explanation__list dt span.ext-failure {
  background-color: #23a0d3;
}
.p-explanation__list dt:first-child {
  border-top: 0;
}
.p-explanation__list dd {
  line-height: 0;
  opacity: 0;
  -webkit-transition: padding 0.3s, line-height 0.3s, opacity 0.3s;
  transition: padding 0.3s, line-height 0.3s, opacity 0.3s;
}
.p-explanation__list dd > * {
  -webkit-transition: margin-top 0.3s;
  transition: margin-top 0.3s;
  margin-top: 0;
}
.p-explanation__list dt.is-active + dd {
  padding-bottom: 25px;
  line-height: 1.7142857143;
  opacity: 1;
}
.p-explanation__list dt.is-active + dd > * {
  margin-top: 20px;
}

.p-explanation__question,
.p-explanation__answer {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.p-explanation__question:before,
.p-explanation__answer:before {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  height: 0;
  background: #eaeef3;
  border-radius: 50%;
  font-size: 15px;
  color: #333;
  margin-right: 10px;
  opacity: 0;
  -webkit-transition: line-height 0.3s, height 0.3s, opacity 0.3s;
  transition: line-height 0.3s, height 0.3s, opacity 0.3s;
}

.p-explanation__answer:before {
  content: "A";
}

dt.is-active + dd .p-explanation__question:before,
dt.is-active + dd .p-explanation__answer:before,
dt.is-active + dd .p-explanation__answer:before {
  opacity: 1;
  height: 25px;
}

.p-explanation__comment {
  font-size: 14px;
  word-wrap: break-word;
}

.p-explanation__back {
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}
.p-explanation__back a {
  text-decoration: underline;
}

/* Glossary */
.p-glossary.c-section {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.p-glossary__index {
  width: 100%;
  background: #f3f5f8;
  padding: 15px calc(22 / 333 * 100%) calc(1 / 333 * 100%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  position: fixed;
  top: 48px;
}
.p-glossary__index ul {
  max-width: 430px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
.p-glossary__index ul li {
  margin-left: calc(14 / 333 * 100%);
  margin-bottom: calc(14 / 333 * 100%);
  width: calc(35 / 333 * 100%);
  height: 0;
  padding-top: calc(35 / 333 * 100%);
  position: relative;
}
.p-glossary__index ul li:nth-child(7n + 1) {
  margin-left: 0;
}
.p-glossary__index ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #23a0d3;
  border: 2px solid #23a0d3;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-glossary__index ul li a.is-active {
  background: #23a0d3;
  color: #fff;
}

.p-glossary__list {
  padding: 0 15px;
  max-width: 430px;
  margin: 0 auto;
}
.p-glossary__list li {
  border-bottom: 1px solid #e5eaf0;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-glossary__list li a {
  display: block;
  width: 100%;
}

.p-modal__glossary__text {
  margin-top: 25px;
  font-size: 14px;
  line-height: calc(52 / 28);
  max-height: 70vh;
  overflow-y: scroll;
}

/* Complete */
.p-complete.c-section {
  padding-top: 0;
  padding-bottom: 0;
}

.p-complete__image {
  text-align: center;
}
.p-complete__image img {
  width: 100%;
  max-width: 230px;
  height: auto;
}

.p-complete__title {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}

.p-complete__text {
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  text-align: center;
  font-size: 14px;
  line-height: calc(28 / 14);
}

/* Terms & Policy Document */
.p-document {
  font-size: 14px;
  line-height: calc(48 / 28);
}

.p-document__item {
  margin-top: 30px;
}

.p-document__title {
  font-size: 15px;
  font-weight: bold;
}
.p-document__title:first-child {
  margin-top: 0;
}

.p-document__clause__title {
  margin-top: 30px;
}
.p-document__clause__title:first-child {
  margin-top: 0;
}

.p-document__clause__text {
  margin-top: 15px;
}
.p-document__clause__text:first-child {
  margin-top: 0;
}

/* Automatic */
.p-automatic {
  padding: 15px 30px;
}
.p-automatic .c-form {
  padding: 0;
}
.p-automatic.ext-white {
  padding-top: 21px;
}
.p-automatic.ext-white * {
  color: #fff !important;
  border-color: #fff !important;
}
.p-automatic.ext-white .c-button {
  background: #ffffff;
  color: #23a0d3 !important;
}

.p-automatic__title {
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.p-automatic__text {
  margin-top: 40px;
  font-size: 14px;
  line-height: calc(48 / 28);
  text-align: center;
}

.p-welcome__text {
  margin-top: 70px;
  font-size: 14px;
  line-height: calc(48 / 28);
  text-align: center;
}

.p-guide__detail {
  background: #f3f5f8;
  border: solid 1px #ccc;
  padding: 15px;
  max-width: 400px;
  margin: 20px auto 0;
}

.p-guide__detail p {
  margin: 15px 0;
}

.p-guide__detail span {
  color: #23a0d3;
}

.p-guide__top {
  border: solid 1px #ccc;
  padding: 15px;
  max-width: 400px;
  margin: 20px auto 0;
}

.p-guide__top p {
  margin: 15px 0;
}

.p-caution__detail {
  background: #ebf6f8;
  padding: 15px;
  max-width: 400px;
  margin: 20px auto 0;
  font-size: 14px;
}

.p-caution__detail p {
  text-align: center;
}

.p-caution__detail li {
  margin: 15px 0;
  padding-left: 1em;
  text-indent: -1em;
}

.p-caution__top {
  border: solid 1px #ccc;
  padding: 15px;
  max-width: 400px;
  margin: 20px auto 0;
  font-size: 14px;
}

.p-caution__top p {
  text-align: center;
}

.p-caution__top li {
  margin: 15px 0;
  padding-left: 1em;
  text-indent: -1em;
}

/* Notification */
.p-notification {
  padding: 0 15px;
  max-width: 430px;
  margin: 0 auto;
}

.p-notification__list li {
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e5eaf0;
  font-size: 14px;
  line-height: 1;
}
.p-notification__list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-notification__list li img {
  margin-right: 15px;
}

/* Slick */
.js-slick {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s, opacity 0.4s 0.01s;
  transition: visibility 0s, opacity 0.4s 0.01s;
}
.js-slick.slick-initialized {
  visibility: visible;
  opacity: 1;
}
.js-slick .slick-list {
  padding: 0 17px;
}
.p-movie .js-slick .slick-list,
.p-understanding .js-slick .slick-list {
  padding: 10px 17px;
}
.js-slick .slick-slide {
  margin: 0 5px;
  height: 100%;
}
.js-slick .slick-dots {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100vw;
}
@media screen and (min-width: 1024px) {
  .js-slick .slick-dots {
    max-width: 1024px;
  }
}
.js-slick .slick-dots li + li {
  margin-left: 5px;
}
.js-slick .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  text-indent: -10000px;
  outline: 0;
}
.js-slick .slick-dots li.slick-active button {
  background: #fff;
}

/* Magnific Popup */
body .mfp-iframe-holder .mfp-close {
  display: block;
  text-indent: -10000px;
  outline: 0;
  width: 25px;
  height: 25px;
  background: url(/assets/img/icn-magnific_close.svg) no-repeat center center;
  background-size: cover;
  padding: 0;
  margin: 0;
  right: 0;
  opacity: 1;
}
body .mfp-iframe-holder .mfp-close:hover {
  opacity: 0.7;
}

/* Utility
 *----------------------------------------------------------------- */
@media screen and (min-width: 834px) {
  .u-sp_only {
    display: none;
  }
}
@media screen and (max-width: 833px) {
  .u-pc_only {
    display: none;
  }
}
.u-clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.u-breakctrl {
  display: inline-block;
}

/* Margin ============== */
.u-margin_top_short {
  margin-top: 1em !important;
}

.u-margin_top_medium {
  margin-top: 3em !important;
}

.u-margin_top_long {
  margin-top: 5em !important;
}

/* image ============== */
.u-image__responsive {
  max-width: 100%;
  height: auto;
}

/* Text ============== */
.u-text__center {
  text-align: center !important;
}

.u-text__left {
  text-align: left !important;
}

.u-text__right {
  text-align: right !important;
}

.u-text__smaller {
  font-size: 0.857em !important;
}

.u-text__larger {
  font-size: 1.142em !important;
}

.u-text__exlarger {
  font-size: 1.71em !important;
}

@media screen and (max-width: 820px) {
  .u-text__exlarger {
    font-size: 1.5em !important;
  }

  .u-sp_text__center {
    text-align: center !important;
  }

  .u-sp_text__left {
    text-align: left !important;
  }

  .u-sp_text__right {
    text-align: right !important;
  }
}
/* Keyframe ============== */
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

::placeholder {
  color: #333 !important;
}

a.disable {
  color: #33333336;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #23a0d3;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.collapsible-body-settings,
.collapsible-body-terms {
  display: none;
}
.collapsible-body-settings li,
.collapsible-body-terms li {
  margin-top: 25px;
  margin-left: 20px;
}

.p-property__calculation .c-error-popup {
  display: inline-block;
  width: calc(214 / 509 * 100%);
}

.c-error-popup {
  position: relative;
}

.c-error-popup:before {
  content: attr(data-error);
  position: absolute;
  display: inline-block;
  background: #de4f58;
  border-radius: 3px;
  height: 37px;
  line-height: 37px;
  left: 0;
  bottom: 100%;
  margin-bottom: 9px;
  color: #fff;
  padding: 0 17px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.c-error-popup:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top: 5px solid #de4f58;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 100%;
}

.p-property__calculation .number-of-unit-container {
  display: inline-block;
  width: 200px;
  text-align: right;
}

.p-modal__alert__button .c-button {
  position: relative;
  min-width: 240px;
}

.alert-profit-send .p-stats__loading {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 0;
  display: inline-block;
  margin-left: 0;
}

.alert-profit-add-message {
  display: block;
  margin-bottom: 10px;
  color: #de4f58;
  visibility: hidden;
}
.p-stats__asset {
  margin-top: 10px;
  font-size: 14px;
}
.btn__ok__confirm {
  font-size: 14px !important;
}
.btn__ng__confirm {
  font-size: 14px !important;
}
.p-find__value__col__1 {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  padding-right: 20px;
  text-align: center;
}
.p-find__title__col {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 2px;
}
.p-find__title__row {
  font-size: 13px;
  line-height: 1;
  margin-top: 5px;
}
.p-find__value__col__1 p {
  font-family: system-ui, "Roboto", sans-serif;
  font-size: 19px;
  margin-top: 7px;
  line-height: 1;
  font-weight: bold;
}
.p-find__value__col__1 p span {
  font-family: "Noto Sans JP", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, "メイリオ", sans-serif;
  font-size: 13px;
  margin-left: 6px;
  font-weight: normal;
}
.c-form__action__button a.ac-btn {
  border-radius: 22.5px;
  border: solid 1px #ccc;
  display: inline-block;
  font-size: 14px;
  height: 45px;
  line-height: 45px;
  margin: 0 5px 15px;
  padding: 0 20px;
  min-width: 225px;
}
.c-form__action__button a.ac-btn.half {
  min-width: 90px;
}
.ac-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.ac-box-con {
  width: 50%;
}
.ac-txt {
  border: solid 1px #ccc;
  margin-top: 50px;
  padding: 20px 5px;
}

label {
  border-radius: 20px 20px 20px 20px;
}
.p-document c-section {
  padding: 15px;
}
.product-tit {
  border-bottom: solid 3px #c4def1;
  padding-top: 40px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  text-align: center;
}
.radio-buttons {
  opacity: 1 !important;
  position: relative !important;
  margin: 20px;
}
#sale_percentage {
  width: 87px;
}
.vertical-text-bottom {
  vertical-align: text-bottom;
}
.text-center {
  text-align: center;
}
.margin-top {
  margin-top: 8px;
}
table.product {
  border-collapse: collapse;
  width: 100%;
}
table.product-tb {
  border-collapse: collapse;
  width: 60%;
}
.product th,
.product-tb th {
  border: solid 1px;
  padding: 10px;
  text-align: left;
  background-color: #dddddd;
  width: 40%;
}
.product td,
.product-tb td {
  border: solid 1px;
  padding: 10px;
  text-align: left;
}
table.sellproduct-tb {
  border-collapse: collapse;
  width: 60%;
  margin-bottom: 20px;
}
.sellproduct th,
.sellproduct-tb th {
  border: solid 1px;
  padding: 10px;
  text-align: left;
  background-color: #d3ecf6;
  width: 40%;
}
.sellproduct td,
.sellproduct-tb td {
  border: solid 1px;
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 570px) {
  table.sellproduct-tb {
    width: 100%;
    margin-bottom: 20px;
  }
}
.inputPercentage {
  width: 80% !important;
}
table.buyproduct-tb {
  border-collapse: collapse;
  width: 60%;
  margin-bottom: 20px;
}
.buyproduct th,
.buyproduct-tb th {
  border: solid 1px;
  padding: 10px;
  text-align: left;
  background-color: #ffe7ce;
  width: 40%;
}
.buyproduct td,
.buyproduct-tb td {
  border: solid 1px;
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 570px) {
  table.buyproduct-tb {
    width: 100%;
    margin-bottom: 20px;
  }
}
.lead-form {
  padding: 10px 0;
}
.lead-title {
  padding: 10px 0;
  font-size: 15px;
}
.lead-heading {
  padding: 10px 0;
  font-size: 17px;
}
@media screen and (max-width: 570px) {
  table.product-tb {
    width: 100%;
  }
}
.btn-box {
  text-align: center;
  margin-top: 30px;
}
.btn-box p {
  padding-bottom: 10px;
}
.select-btn {
  text-align: center;
}
.table-box {
  width: 60%;
  margin: 20px 0 40px;
}
.table-box p {
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .product th {
    width: 55%;
  }
  .table-box {
    width: 80%;
  }
}
.next-btn-box {
  margin-top: 100px;
  text-align: center;
}
.next-btn {
  background: #23a0d3;
  color: #fff;
  padding: 13px 58px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
}
.back-btn {
  background: #aaaaaa;
  color: #fff;
  padding: 13px 58px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
}
.switching_icon {
  margin: 20px;
}
.cp_stepflow01 {
  font-size: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1em;
  padding: 0;
}
.cp_stepflow01 > li {
  position: relative;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  text-overflow: ellipsis;
  color: #b0bec5;
  -ms-flex: 1;
  -moz-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}
.cp_stepflow01 > li .procedure {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 0.5em;
  border-radius: 1000px;
  background-color: #b0bec5;
}
.cp_stepflow01 > li .procedure::after,
.cp_stepflow01 > li .procedure::before {
  position: absolute;
  top: 9px;
  display: block;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #b0bec5;
}
.cp_stepflow01 > li.completed,
.cp_stepflow01 > li.completed .procedure {
  color: #23a0d3;
}
.cp_stepflow01 > li.completed .procedure,
.cp_stepflow01 > li.completed .procedure::after,
.cp_stepflow01 > li.completed .procedure::before {
  background-color: #23a0d3;
}
.cp_stepflow01 > li:last-child .procedure::after,
.cp_stepflow01 > li:last-child .procedure::before {
  width: 0%;
  margin-right: 50%;
}
.cp_stepflow01 > li.active,
.cp_stepflow01 > li.active .procedure {
  font-weight: bold;
  color: #f57c00;
}
.cp_stepflow01 > li.active .procedure,
.cp_stepflow01 > li.active .procedure::after,
.cp_stepflow01 > li.active .procedure::before {
  background-color: #fb8c00;
}
.complete {
  margin: auto;
  width: 80%;
  text-align: center;
}
.complete > .switching_icon {
  width: 100px;
  height: 100px;
}
.rk {
  color: #23a0d3;
  background-color: white;
  padding: 11px 27px;
  border-radius: 30px;
  border: 2px solid;
}
.pro-error {
  text-align: center;
  font-size: 1.6rem;
  color: #de4f58;
  font-weight: bold;
  border: #de4f58 solid 1px;
  background: #ffeff0;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .table-box {
    width: 100%;
  }
}
.error-a {
  color: #23a0d3;
  font-size: 1.8rem;
  border-bottom: solid 2px;
  padding-bottom: 15px;
  margin-bottom: 50px;
}
.error-m {
  color: #de4f58;
  font-size: 1.8rem;
  margin: 30px 0;
}
.complete img {
  width: 120px;
  height: 120px;
}
.account {
  margin: auto;
  width: 80%;
  text-align: center;
}
.account img {
  width: 200px;
  height: auto;
}
.account-items {
  display: flex;
  flex-wrap: wrap;
}
.account-items .account-item {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .items .item {
    width: 100%;
  }
}
.ac-con {
  margin: 0 20px 20px 20px;
}
/* lang-btn */
.input-field {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.lang-btn {
  color: #23a0d3;
  border: #23a0d3 solid 1px;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 30px;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.5px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.lang-btn:hover,
.lang-btn:focus {
  background-color: #e6e6e6;
}
/* dropdown */
.dropdown-content {
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9999;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.dropdown-content:focus {
  outline: 0;
}
.dropdown-content li {
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
  background-color: #ebf6f8;
  border: #fff solid 1px;
}
.dropdown-content li:hover,
.dropdown-content li.active {
  background-color: #eee;
}
.dropdown-content li:focus {
  outline: none;
}
.dropdown-content li.divider {
  min-height: 0;
  height: 1px;
}
.dropdown-content li > a,
.dropdown-content li > span {
  font-size: 16px;
  color: #23a0d3;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
}
.dropdown-content li > span > label {
  top: 1px;
  left: 0;
  height: 18px;
}
.dropdown-content li > a > i {
  height: inherit;
  line-height: inherit;
  float: left;
  margin: 0 24px 0 0;
  width: 24px;
}
body.keyboard-focused .dropdown-content li:focus {
  background-color: #dadada;
}
.input-field.col .dropdown-content [type="checkbox"] + label {
  top: 1px;
  left: 0;
  height: 18px;
  -webkit-transform: none;
  transform: none;
}
.dropdown-trigger {
  cursor: pointer;
}
.allowed-domains {
  display: inline-block;
  width: 100%;
  margin: 12px 0;
  background: #f3f5f8;
}
.allowed-domains summary {
  color: #242323;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-size: 14px;
}
.allowed-domains summary::-webkit-details-marker {
  display: none;
}
.allowed-domains-triangle {
  width: 16px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #a6a6a6;
}
.allowed-domains[open] .allowed-domains-triangle {
  transform: rotate(180deg);
}
.allowed-domains-content {
  background-color: #fff;
  font-size: 12px;
  padding: 12px 8px;
  margin: 12px;
}
.allowed-domains hr {
  border: solid 0.5px #ccc;
  margin: 12px 0;
}
.allowed-domains-text-red {
  color: #de4f58;
}
.allowed-domains li {
  margin: 6px 0 6px 12px;
}
.c-form__input__group {
  width: 100% !important;
  margin: 0 !important;
  display: flex;
  gap: 8%;
}

.c-form__label-description {
  margin-top: -10px;
  margin-bottom: 30px;
  color: #fb8c00;
}
