html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic Pro",
        "ヒラギノ角ゴ Pro W3", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
    color: #434343;
    vertical-align: bottom;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}
/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body {
    font-size: 12px;
    font-family: "Meiryo", "メイリオ", "Hiragino Kaku Gothic Pro",
        "ヒラギノ角ゴ Pro W3", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

select,
input,
textarea,
button {
    font: 99% sans-serif;
}
/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre,
code,
kbd,
samp {
    font-family: monospace, sans-serif;
}
/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html {
    overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover,
a:active {
    outline: none;
}
ul,
ol {
    list-style: none;
}
ol {
    st-style-type: decimal;
}

/* Remove margins for navigation lists */
nav ul,
nav li {
    margin: 0;
    list-style: none;
    list-style-image: none;
}
nav li img {
    vertical-align: bottom;
}
small {
    font-size: 85%;
}
strong,
th {
    font-weight: bold;
}
td {
    vertical-align: top;
}
/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
pre {
    /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 15px;
}
textarea {
    overflow: auto;
} /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend,
.ie7 legend {
    margin-left: -7px;
}
input[type="text"],
input[type="password"] {
    padding: 9px 3px;
    border: 1px solid #dedede;
    /* background-color: #EFEFEF; */
    font-size: 80%;
    font-size: 10px;
}
/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
    vertical-align: text-bottom;
}
input[type="checkbox"] {
    vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
    vertical-align: baseline;
}
.ie6 input {
    vertical-align: text-bottom;
}
/* Hand cursor on clickable input elements */
label,
input[type="button"],
input[type="submit"],
input[type="image"],
button {
    cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button,
input,
select,
textarea {
    margin: 0;
}

/* Colors for form validity */
input:invalid,
textarea:invalid {
    border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
    -webkit-box-shadow: 0px 0px 5px red;
    box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
    background-color: #f0dddd;
}

/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection {
    background: #ff5e99;
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #ff5e99;
    color: #fff;
    text-shadow: none;
}
/* j.mp/webkit-tap-highlight-color */
a:link {
    -webkit-tap-highlight-color: #ff5e99;
}
/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
    width: auto;
    overflow: visible;
}
/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
    -ms-interpolation-mode: bicubic;
}
/**
 * You might tweak these..
 */

body,
select,
input,
textarea {
    /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
    color: #333; /* Set your base font here, to apply evenly */
    /* font-family: Georgia, serif;  */
}
/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
a,
a:active,
a:visited {
    color: #06c;
    text-decoration: none;
}
a:hover {
    color: #09f;
    text-decoration: underline;
}

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir {
    display: block;
    text-indent: -999em;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
}
/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
    display: none;
    visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
    visibility: hidden;
}
/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before,
.clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}
.clearfix:after {
    clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
    zoom: 1;
}

/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation: portrait) {
    /* Style adjustments for portrait mode goes here */
}
@media all and (orientation: landscape) {
    /* Style adjustments for landscape mode goes here */
}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
    /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
    /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    } /* Black prints faster: sanbeiji.com/archives/953 */
    /*a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }   Don't show links for images, or javascript/internal links */
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    } /* css-discuss.incutio.com/wiki/Printing_Tables */
    tr,
    img {
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}

/*------------------------------------------------------------------ clearfix @layout&template */

/******************** exp IE
*/

div#header:after,
div#container:after,
div#footer:after,
div.article:after,
div.section:after,
#header #nav ul:after,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    line-height: 0;
    visibility: hidden;
}
/******************** for IE
Level 2.1*/
div#header,
div#container,
div#footer,
div.article,
div.section,
#header #nav ul,
.clearfix {
    display: inline-block;
}
/* Holly Hack Targets IE Win only \*/
* html div#header,
* html div#container,
* html div#footer,
* html div.article,
* html div.section,
* html #header #nav ul,
* html .clearfix {
    height: 1%;
}

div#header,
div#container,
div#footer,
div.article,
div.section,
#header #nav ul,
.clearfix {
    display: block;
}

/*------------------------------ new clearfix */
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
* html .clearfix {
    zoom: 1;
} /* IE6 */
*:first-child + html .clearfix {
    zoom: 1;
} /* IE7 */

/* IE6 - なにがあってもカラム落ちを防ぐ
----------------------------------------------*/

div.utilities div {
    _overflow: hidden;
}

a.zipcode {
    color: #256c89;
    font-size: 11px;
}

.post_search {
    background: url(../../image/search.png) no-repeat left 17px;
    height: 25px;
    width: 25px;
    margin: auto;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: inline-flex;
}
.calendar_blue {
    background: url(../../image/calendar-blue.png) no-repeat left 17px;
    height: 25px;
    width: 25px;
    margin: auto;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: inline-flex;
}

.application_form {
    width: 38%;
}

.button_footer {
    width: 19%;
    border: 1px solid;
    border-radius: 4px;
    height: 23px;
    background: #ededec;
    margin-left: 10px;
    box-shadow: 0 0 5pt 0.5pt #d3d3d3;
}

.footer-button {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: auto;
}

input.checkbox-update {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
}

.border-update {
    border: 1px solid;
    margin-bottom: 10px;
    margin-top: -10px;
}

.margin-left-service {
    margin-left: 10px;
    padding: 7px;
}

.button-service {
    width: 30%;
}
.button-service-2 {
    width: 188%;
    margin-left: -9px;
}
.button-service-3 {
    width: 191%;
    margin-left: -9px;
}

input.ime_active {
    padding: 3px;
}

span.font-size-service {
    font-size: 20px;
    font-weight: bold;
    color: blue;
}

span.procedure {
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    color: #216a8d;
}
span.procedure-2 {
    font-size: 17px;
    text-decoration: underline;
    color: #216a8d;
}
span.procedure-4 {
    font-size: 15px;
    font-weight: bold;
    background: yellow;
    color: red;
}

span.procedure-3 {
    font-size: 15px;
    font-weight: bold;
    color: red;
}

span.procedure-5 {
    font-size: 17px;
    font-weight: bold;
    color: red;
    background: yellow;
    text-decoration: underline;
}
span.procedure-6 {
    font-size: 17px;
    text-decoration: underline;
    color: #216a8d;
}
li.li-service {
    font-size: 15px;
    color: red;
    font-weight: bold;
}

.border-service {
    border: 1px solid #cccccc;
    padding: 5px;
}

.border-bottom--7 {
    border-bottom: solid 5px #7e7e7e;
    margin-bottom: 10px;
    display: block;
    position: relative;
}
.border-bottom--10 {
    margin-bottom: 10px;
    display: block;
    position: relative;
    margin-top: 5%;
}

.border-bottom--12 {
    margin-bottom: 10px;
    display: block;
    position: relative;
    margin-top: 5%;
}

table.table-service {
    border: 1px solid;
    width: 98%;
}

th.th-service {
    border: 1px solid #000;
    background: #fa9c3c;
    color: #fff;
    padding: 5px;
}

td.td-service {
    border: 1px solid #000;
    margin-right: auto;
    color: #b32729;
    padding: 5px;
    font-weight: bold;
}
td.td-service:first-child {
    text-align: right;
}

iframe#termview {
    /* margin-left: 25px; */
}
.icon_mail {
    background: url(../../image/icon/icon_mail.png) no-repeat left 17px;
    height: 25px;
    width: 25px;
    margin: auto;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.icon_sms {
    background: url(../../image/icon/icon_sms.png) no-repeat left 17px;
    height: 20px;
    width: 25px;
    margin: auto;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.button_footer_url {
    border: none;
    border-radius: 4px;
    background-color: #1f7bc6;
    height: 23px;
    margin-left: 10px;
    box-shadow: 0 0 5pt 0.5pt #d3d3d3;
    display: inline-flex;
    padding: 0 5px;
}
.button_txt {
    color: #fff;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    padding-top: 4px;
}
.service_sms {
    display: inline-flex;
    margin-left: 10px;
    width: 100%;
}
.service_qrcode {
    margin-left: 10px;
}
.service_sms_txt {
    font-size: 17px;
    font-weight: bold;
    width: 100%;
    color: #000;
}
.button--center {
    justify-content: center;
}
input.ime_disabled {
    width: 300px;
    height: 25px;
}
select#idRanktype {
    border: 1px solid;
    width: 100px;
}
.c-title.fntsz-3_8 {
    font-size: 3.8em !important;
}
.c-title-red-cont {
    border: 3px solid #ff0000;
    border-radius: 10px;
    margin: 30px 0 30px 0;
    width: 95%;
    font-size: 2em;
    font-weight: normal;
}
.c-title-red-details {
    color: #ff0000;
    font-size: 16px;
    font-weight: bold;
}
.red-txt {
    color: #ff0000;
}
.dsplay-flx {
    display: flex;
}
.fnt-bold {
    font-weight: bold;
}
.c-title-txt-red {
    color: #aa0000;
    font-size: 22px;
}
.c-title-tbl table td {
    font-weight: normal;
    background-color: #fff;
}
.c-title-pmethod input[type="radio"] {
    /* vertical-align: text-bottom; */
    position: relative;
    -webkit-appearance: button;
    appearance: button;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #ffffff;
    border: 1px solid #999999;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    -webkit-box-shadow: inset 4px 4px 10px rgb(0 0 0 / 20%);
    box-shadow: inset 4px 4px 10px rgb(0 0 0 / 20%);
    vertical-align: middle;
    cursor: pointer;
}
.c-title-pmethod label {
    font-weight: bold;
    font-size: 1.5em;
    color: #000033;
    padding: 0 0 5px 0;
    word-break: break-all;
}
.c-title-pmethod select {
    border: solid 1px #d3d3d3;
    font-size: 20px;
    padding: 1px;
    box-sizing: border-box;
    height: 30px;
}
.form_check {
    color: #5a7a9e;
    font-size: 0.9em;
}
.c-title-pmethod input[type="tel"] {
    border: solid 1px #d3d3d3;
    font-size: 1.6em;
    padding: 3px;
    box-sizing: border-box;
    height: 30px;
}
.display-column {
    display: flex;
    flex-direction: column;
}
.fnt-sz-1_8 {
    font-size: 18px;
}
.c-title-pmethod a {
    color: #256c89;
}
.c-title-pmethod a.red-btn {
    background: rgba(0, 0, 0, 0)
        linear-gradient(to bottom, #fb5a52 0%, #dc0902 100%) repeat scroll 0 0;
    color: #ffffff;
}
.c-title-pmethod a.sub-btn {
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 7px;
    text-align: center;
    margin: 20px 0;
}
#idCreditToken {
    width: 50%;
}
.form-pmethod .title {
    margin: 40px 0 20px 0;
    font-size: 30px;
    text-decoration: underline;
    text-underline-position: below;
}
.form-pmethod .ifrm-container {
    height: 450px;
    border: 1px solid #000000;
    -webkit-overflow-scrolling: touch;
    margin: 10px;
    padding-top: 5px;
    padding-left: 5px;
}
.form-pmethod.ifrm {
    width: 100%;
    height: 100%;
    border: none;
    padding: 5px;
    display: block;
}
.mgn-b-14 {
    margin-bottom: 90px;
}
/* Payment Error */

.alertBox {
    margin: 5px;
    padding: 8px;
    width: 65%;
}

.alertBox p {
    color: #a00 !important;
    font-size: 12px;
    font-weight: 600;
}

/* payment Error end */

/* CC required fields */
#idCardNo1, #idSecurityCode{
    box-shadow: none;
}
