@charset "utf-8";

.preview-top {
    width: 768px;
    margin: 30px auto 0;
    box-sizing: border-box;
}

.preview-top-left {
    padding-left: 75px;
    height: 40px;
    line-height: 43px;
    float: left;
    background: #00b7ee;
    color: #fff;
    width: 88%;
    border-radius: 5px 0px 0px 5px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    box-sizing: border-box;
}

.preview-top-right a {
    display: block;
    height: 40px;
    line-height: 40px;
    float: left;
    background: #0075a9;
    color: #fff;
    width: 12%;
    border-radius: 0px 5px 5px 0px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
}

.preview-top-right a:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
}

.ico-preview-close {
    display: inline-block;
    background: no-repeat url(../img/ico-preview-close.png);
    background-position: 0 0;
    width: 17px;
    height: 12px;
}

@media screen and (max-device-width: 480px) {
    .preview-top {
        width: 95%;
        margin: 20px auto;
    }

    .preview-top-left {
        width: 73%;
        padding-left: 15px;
        text-align: left;
    }

    .preview-top-right a {
        width: 27%;
        padding: 0 10px;
    }
}

.main {
    width: 768px;
    margin: 0 auto;
}

@media screen and (max-device-width: 480px) {
    .main {
        width: auto;
        margin: 0;
    }
}

.wrapper {
    width: 768px;
    margin: 32px auto;
    background: #fff;
    border: 1px solid #ccc;
}

@media screen and (max-device-width: 480px) {
    .wrapper {
        width: 100%;
        margin-top: 0;
        border: none;
    }
}

@media screen and (min-width: 768px) {
    .P2Parts.pt-fixed {
        max-width: 704px;
    }
}

.powerd-by-logo {
    max-width: 768px;
    margin: 0 auto;
}

.powerd-by-logo a {
    display: block;
    width: 200px;
    height: 40px;
    padding: 23px 0 0;
    background: url(/assets/img/expa/logo_powerd-by.svg) no-repeat;
    background-size: 200px;
    text-indent: -9999px;
    white-space: nowrap;
    overflow: hidden;
    margin-top: -16px;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 16px;
}

@media screen and (max-device-width: 480px) {
    .powerd-by-logo {
        padding-right: 8px;
    }

    .ft-logo {
        /* width: 60px; */
        margin: 0px auto 0px;
        float: right;
        text-align: center;
    }

    .logo a {
        display: block;
        width: 60px;
        height: 40px;
        background-size: 55px;
    }

    .powerd-by-logo a {
        width: 120px;
        background-size: 120px;
        text-indent: -9999px;
    }
}

.guest-header {
    padding: 12px;
    margin-bottom: 16px;
    border-radius: 8px;
    background-color: #555;
    position: relative;
}

.guest-header-inner {
    text-align: center;
    color: #fff;
    font-size: 24px;
    margin: 0;
    text-shadow: 1px -1px rgb(0 0 0 / 20%);
    line-height: 1.1;
}

@media screen and (max-device-width: 480px) {
    .guest-header {
        margin: 0 16px 16px 16px;
    }

    .guest-header-inner {
        font-size: 16px;
    }
}

.form-input-error {
    border: 1px solid #ff3a49 !important;
}

.error-message {
    color: #ff3a49 !important;
    font-size: 12px;
    line-height: 1;
}


/* tooltip(bootstrap)　*/

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.fade.in {
    opacity: 1;
}

.tooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9;
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.loader,
.loader:before,
.loader:after {
  background: #00a9ce;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 3em;
}
.loader {
  color: #00a9ce;
  text-indent: -9999em;
  margin:0 auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 3em;
  }
  40% {
    box-shadow: 0 -1em;
    height: 4em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 3em;
  }
  40% {
    box-shadow: 0 -1em;
    height: 4em;
  }
}

@media screen and (min-width: 769px) {
    .saipon-hidden-pc {
        display: none!important;
    }
}
@media screen and (max-width: 768px) {
    .saipon-hidden-sp {
        display: none!important;
    }
}
@media screen and (max-width: 767px) {
    form table.table-var td {
        padding-bottom: 32px!important;
    }
}
