html, body, * {
    box-sizing: border-box;
    word-wrap: break-word;
}

body {
    padding-top: 80px;
}

a {
    color: #337ab7;
}

a, a:hover, a:focus {
    text-decoration: none;
}

.mobile {
    display: none !important; }
.tablet {
    display: none !important; }
.pc {
    display: none !important; }
@media only screen and (max-width: 767px) {
  .mobile {
      display: block !important; } }
@media only screen and (max-width: 991px) and (min-width: 768px) {
  .tablet {
    display: block !important; } }
@media only screen and (min-width: 992px) {
  .pc {
    display: block !important; } }

form button {
    -webkit-appearance: none;
    background-color: initial;
    border: none;
}

.red {
    color: #fb4c3e;
    font-weight: 600;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}

.hidden {
    display: none;
}

.error_message {
    background-color: #ffd9e1;
    padding: 18px 10px 10px;
    color: #630015;
    margin-bottom: 10px;
    position: relative;
}
.error_message div {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #FFF;
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    border: none;
}
.error_message div span {
    display: block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-weight: 700;
}
.error_message p {
    margin: 0;
}

main {
    /* background-image: url(https://p-seahorse-brain.s3-ap-northeast-1.amazonaws.com/images/blue_bk.jpg) */
    width: 100vw;
    /* background: radial-gradient(transparent, #87CEFA); */
    position: relative;
    clear: both;
}
main .hide {
    opacity: 0;
    visibility: hidden;
}
main .contents .noview {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: all 1s;
}
main .contents .noview.showed {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
main .contents section.plan .plan_contents {
    display: flex;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    box-shadow: rgba(0, 0, 0, 0.20) 0px 0px 16px 0px;
    border-radius: 20px;
}
main .contents section.plan .term {
    font-size: 24px;
    border-radius: 20px 0 0 20px;
    padding: 20px 0;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-image: linear-gradient(90deg, rgb(101, 206, 217), rgb(93, 190, 227)); */
    background-image: linear-gradient(90deg, rgb(0,150,231), rgb(0,100,180,2));
    color: #FFF;
}
main .contents .plan .term .term_title {
    font-size: 30px;
}
main .contents .plan .fee {
    font-size: 24px;
    padding: 20px 0;
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* main .contents .plan .fee .fee_from {
    text-decoration: line-through;
} */
main .contents .plan .fee .fee_arrow {
    font-size: 14px;
    padding: 4px 0px;
}
main .contents .plan .fee .fee_to {
    font-size: 18px;
    text-align: right;
    line-height: 20px;
}
main .contents .plan .fee .fee_tax {
    color: #BBB;
    font-size: 0.5em;
    line-height: 10px;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255,255,255, 0.8);
    z-index: 1000;
}

header .header-container {
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
}

header .logo {
    width: 30%;
    height: 60px;
    float: left;
    align-items: center;
}
header .logo a {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 120px;
}
header .logo img {
    height : auto;
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    width: 60px;
    height: auto;
    margin: 0;
}

header .profile {
    width:70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #FFF;
    height: 100%;
}

header .profile .profile_inner {
    height: 100%;
    background-color: #0190e1;
    display: flex;
    align-items: center;
    padding: 0 24px;
}
@media (max-width: 374px) {
    header .profile .profile_inner {
        padding: 0 12px;
    }
}

header .profile .service_menu {
    display: none;
}
@media only screen and (min-width: 768px) {
    header .profile .service_menu {
        background-color: #FF4500;
        color: #FFF;
        display: flex;
        border-right: 0.5px solid white;
        font-size: 12px;
        letter-spacing: 1.3px;
    }
}

header .profile .profile_detail {
    width: 40%;
    text-align: right;
}

header .profile .profile_image {
    max-width: 50px;
    height: auto;
    border-radius: 50%;
    padding-right: 2%;
    text-align: center;
}

header .profile .logout {
    /* float: right; */
    text-decoration: none;
    color: #FFF;
    display: inline-block;
    text-align: center;
    padding-right: 10px;
    font-size: 14px;
}

header .profile .logout button {
    color: #ada9a9;
}

header .profile .login {
    letter-spacing: 1.3px;
    text-decoration: none;
    color: #FFF;
    display: inline-block;
    text-align: center;
    font-size: 12px;
}

header .basic-contents {
    text-decoration: none;
    text-align: center;
    padding-right: 10px;
    font-size: 14px;
}

header .basic-contents a {
    color: #7d7979;
}

header .menu_wrapper {
    height: 100%;
    background-color: #FFF;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header .menu {
    width: 34px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
}

header .more {
    position: absolute;
    top: 0px;
    right: 4px;
    height: 100%;
}

header .more .icon-bar {
    margin-top: 6.5px;
    background-color: #000;
    display: block;
    width: 26px;
    height: 1px;
}

footer {
    position: relative;
    z-index: 100;
    background-color: #222;
    color: #FFF;
}

footer .footer_logo {
    text-align: center;
}

footer .footer_logo img {
    width: 100px;

}

footer .footer_guideline nav ul {
    list-style: none;
    margin: 0;
    padding: 50px 30px;
    text-align: center;
}

footer .footer_guideline nav ul li a {
    color: #FFF;
}

/* .logo {
    background: rgba(0,0,0,0.0);
    border-radius: 0;
    justify-content: center;
    opacity: 1;
    padding: 0 0 0 0;
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}
.logo img {
    display: inline-block;
    text-align: left;
    padding-top: 10px;
    padding-left: 20px;
    width: 80px;
    height: auto;
    animation-name: ninja;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
} */

@keyframes ninja {
    0% {
        transform: translate(0,0px);
    }

    100% {
        transform: translate(0,-15px)
    }
}

@media screen and (min-width: 481px) {
    .logo img {
        width: 80px;
    }
}

body main .trimming {
    padding-bottom: 56.12625%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    display: block;
    height: 0;
}

/* mm-slideout -----start----- */
html.mm-opening .mm-slideout {
    transform: translate(87%,0);
    transform: translate3d(87%,0,0);
}
.mm-menu.mm-offcanvas{
    width: 87%;
}
#sidemenu.mm-menu {
    background-color: #0190e1;
}
#sidemenu ul {
    padding: 40px;
}
#sidemenu ul li {
    color: #FFF;
}
#sidemenu ul li a, #sidemenu ul li .profile_detail, #sidemenu ul li .logout {
    display: inline-block !important;
    color: inherit;
    padding: 10px 10px 10px 20px;
    margin: 0;
}
#sidemenu ul li .profile_detail img {
    width: 2em;
    height: auto;
    border-radius: 50%;
}
#sidemenu ul li .logout button {
    color: #FFF;
    padding: 0;
}

.mm-listview>li:not(.mm-divider):after {
    border: none !important;
}
#sidemenu .mm-divider{
    clear: both;
    background-color: #f4f4f4;
    color: #999;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 4px 0 0 0;
}
html.mm-blocking, html.mm-blocking body {
    overflow: hidden !important;
}
/* mm-slideout -----end----- */

/* keen slider -----start------ */
.keen-slider-container {
    position: relative;
}

.navigation-wrapper {
  position: relative;
}

.dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  padding: 10px 0;
  justify-content: center;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  background: #eaeaea;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.5;
}

.dot:focus {
  outline: none;
}

.dot--active {
  background: #0190e1;
  opacity: 1;
}
/* keen slider ------end----- */

/* embed contents */
.embed-responsive, .trimming {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive .embed-responsive-item, .trimming .embed-responsive-item, .embed-responsive iframe, .trimming iframe, .embed-responsive embed, .trimming embed, .embed-responsive object, .trimming object, .embed-responsive video, .trimming video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
}