@charset "utf-8";


/* CSS Reset
   ========================================================================== */

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

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

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
}

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 #333;
    margin: 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

img {
    max-width: 100%;
}

img[src$=".svg"] {
    width: 100%;
    height: auto;
}


/* Common
   ========================================================================== */

body {
    position: relative;
    background-color: #fff;
    color: #000;
    font-size: 15px;
    font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ＭＳ 明朝', 'MS Mincho',serif;
	-webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}


/* Helper Classes
   ========================================================================== */

.sp-dsp {
    display: block;
}

.pc-dsp {
    display: none;
}

@media screen and (min-width: 769px) {
    .sp-dsp {
        display: none;
    }
    
    .pc-dsp {
        display: block;
    }
}

.section-title span {
    display: block;
    padding-left: 30px;
    white-space: nowrap;
}

.section-title span:first-child {
    width: 75%;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    font-size: 22px;
    letter-spacing: 2px;
}

.section-title span:last-child {
    padding-top: 13px;
    letter-spacing: 1px;
}

.text {
    letter-spacing: 1px;
    line-height: 1.8;
}

@media screen and (max-width: 359px) {
    .section-title span {
        white-space: normal;
    }
}


/* Site Header
   ========================================================================== */

#site-header {
    position: fixed;
    z-index: 99;
    width: 100%;
    padding: 25px 15px 15px;
    background-color: #fff;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-logo {
    position: relative;
    z-index: 99;
    width: 80%;
    max-width: 270px;
}

.header-catch {
    position: relative;
    z-index: 99;
    margin-bottom: 10px;
    color: #313992;
    font-weight: bold;
    letter-spacing: 2px;
}

@media screen and (max-width: 359px) {
    .header-logo {
        max-width: 80%;
    }
}

/* Navigation Menu Btn */

.nav-btn,
.icon-bar {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.nav-btn {
    position: relative;
    z-index: 99;
    width: 38px;
    height: 24px;
    margin-top: 5px;
}

.icon-bar {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.icon-bar-top {
    top: 0;
}

.icon-bar-middle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon-bar-bottom {
    bottom: 0;
}

/* Navigation Menu Btn Active */

.nav-btn.active .icon-bar-top {
    -webkit-transform: translateY(11.5px) rotate(-45deg);
    transform: translateY(11.5px) rotate(-45deg);
}

.nav-btn.active .icon-bar-middle {
    opacity: 0;
}

.nav-btn.active .icon-bar-bottom {
    -webkit-transform: translateY(-11.5px) rotate(45deg);
    transform: translateY(-11.5px) rotate(45deg);
}

/* Global Navigation */

.global-nav {
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 98;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    padding: 120px 30px 0;
    background-color: #fff;
    -webkit-transition: .5s all;
    transition: .5s all;
}

.global-nav.show {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.global-nav-item {
    margin-bottom: 20px;
}

.global-nav-item.global-nav-tel {
    margin-top: 50px;
}

.global-nav-item a {
    display: inline-block;
    padding: 7px 2px;
    color: #000;
    letter-spacing: 1px;
}

.global-nav-item a::before {
    content: "▶︎";
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    color: #cacaca;
}

.global-nav-tel a::before,
.global-nav-contact a::before {
    display: none;
}

.global-nav-tel span {
    display: block;
    font-size: 12px;
    color: #3c61aa;
}

.global-nav-tel a {
    color: #3c61aa;
    font-size: 20px;
}

.global-nav-contact a {
    padding: 12px 20px;
    border-radius: 5px;
    background-color: #3c61aa;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
}

/* Overlay */

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 97;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-color: rgba(0, 0, 0, .4);
    opacity: 0;
    -webkit-transition: 1s ease;
    transition: 1s ease;
}

.overlay.visible {
    display: block;
    opacity: 1;
}


/* Site Footer
   ========================================================================== */

#site-footer {
    padding: 20px 15px;
    background-color: #3d62aa;
    color: #fff;
}

.footer-contents {
    margin-bottom: 45px;
}

.footer-text {
    margin-bottom: 10px;
    font-size: 13px;
    font-family: sans-serif;
    letter-spacing: 1px;
    line-height: 1.5;
}

.footer-logo {
    width: 85%;
    max-width: 320px;
    margin-bottom: 10px;
}

.footer-address {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Footer Contact */

.footer-contact p {
    margin-bottom: 5px;
    font-size: 13px;
    font-family: sans-serif;
    letter-spacing: 1px;
}

.footer-tel-number {
    margin-bottom: 10px;
}

.footer-tel-number a {
    color: #fff;
    font-size: 30px;
    letter-spacing: 1px;
}

.footer-contact-btn a {
    display: inline-block;
    padding: 15px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
}

/* Footer Navi */

.footer-navi {
    margin-bottom: 30px;
}

.footer-navi li {
    display: inline-block;
    margin-bottom: 13px;
}

.footer-navi li::after {
    content: "/";
    display: inline-block;
    margin: 0 3px;
}

.footer-navi li:last-child::after {
    display: none;
}

.footer-navi a {
    color: #fff;
    font-size: 13px;
    font-family: sans-serif;
    letter-spacing: 2px;
}

footer small {
    display: block;
    font-size: 11px;
}


/* Top Page
   ========================================================================== */

.first-view {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: url(../images/first-view.jpg);
    background-size: cover;
}

.catch {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-left: 30px;
}

.catch h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 3px #333;
}

.catch p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px #333;
}

/* Compare ----------------------------------- */

.compare {
    padding-top: 45px;
    margin-bottom: 60px;
}

.compare .section-title {
    margin-bottom: 30px;
}

.compare-wrapper {
    padding: 0 15px;
}

/* Accordion for SmartPhone */

.accordion-label {
    display: block;
    position: relative;
    height: 52px;
    -webkit-transition: .5s all;
    transition: .5s all;
}

.accordion-input {
    display: none;
}

.accordion-contents {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: .8s;
    transition: .8s;
}

.accordion-input:checked + label + .accordion-contents {
    height: auto;
    opacity: 1;
}

.accordion-main-label {
    margin-top: 5px;
    padding: 15px 25px;
    background-color: #447690;
    color: #fff;
    font-size: 20px;
}

.accordion-main-label::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 25px;
    height: 15px;
    background: url(../images/icon_down-arrow_wht.svg) center center no-repeat;
    background-size: contain;
    content: "";
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.accordion-main-label + .accordion-contents {
    border: 1px solid #707070;
}

.accordion-input:checked + .accordion-main-label::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.accordion-child-label {
    padding: 13px 25px;
    border-bottom: 1px solid #707070;
    color: #707070;
    font-size: 16px;
    letter-spacing: 1px;
}

@media screen and (max-width: 359px) {
    .accordion-child-label {
        font-size: 15px;
    }
    
    .accordion-child-label span:first-child {
        font-size: 22px;
    }
}

.accordion-child-label::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 22px;
    height: 13px;
    background: url(../images/icon_down-arrow_gry.svg) center center no-repeat;
    background-size: contain;
    content: "";
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.accordion-input:checked + .accordion-child-label::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.accordion-bottom-label,
.accordion-bottom-contents p {
    border-bottom: none;
}

.accordion-child-label span {
    vertical-align: middle;
}

.accordion-child-label span:first-child {
    margin-right: 12px;
    font-size: 26px;
}

.cross-icon {
    display: inline-block;
    position: relative;
    width: 27px;
    height: 26px;
}

.cross-icon::before,
.cross-icon::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 25px;
    background-color: #707070;
    content: "";
}

.cross-icon::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.cross-icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.accordion-input:checked + .accordion-child-label {
    border-bottom: none;
}

.accordion-contents-text {
    padding: 1px 25px 10px;
    border-bottom: 1px solid #707070;
    color: #707070;
    line-height: 1.5;
}

/* Business Guide ---------------------------- */

.business-guide {
    margin-bottom: 15px;
}

.business-guide .section-title {
    margin-bottom: 30px;
}

.guide-item {
    padding-bottom: 40px;
}

.guide-image {
    position: relative;
    height: 200px;
}

.guide-title-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
    padding-top: 20px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, .7);
}

.guide-title-inner {
    text-align: center;
}

.guide-title-inner h3 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    text-indent: 1px;
}

.guide-title-inner p {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    text-indent: 1px;
    white-space: nowrap;
}

.guide-title-inner span {
    display: inline-block;
    width: 80%;
    height: 1px;
    background-color: #000;
    vertical-align: bottom;
}

.guide-text {
    padding: 25px;
}

.business-guide-more {
    text-align: center;
}

.business-guide-more a {
    display: inline-block;
    width: 170px;
    padding: 12px 0;
    border: 1px solid #000;
    color: #000;
    font-size: 18px;
    letter-spacing: 4px;
    text-indent: 4px;
    white-space: nowrap;
}

.guide-school .guide-image {
    background: url(../images/business-guide_sample_01.jpg);
}


.guide-bookkeeping .guide-image {
    background: url(../images/business-guide_sample_02.jpg);
}


.guide-accounting .guide-image {
    background: url(../images/business-guide_sample_03.jpg);
}


.guide-support .guide-image {
    background: url(../images/business-guide_sample_04.jpg);
}


.guide-experts .guide-image {
    background: url(../images/business-guide_sample_05.jpg);
}


.guide-matching .guide-image {
    background: url(../images/business-guide_sample_06.jpg);
}

.guide-item .guide-image {
    background-size: cover;
}

/* Philosophy -------------------------------- */

.philosophy {
    margin-bottom: 30px;
}

.philosophy .section-title {
    margin-bottom: 30px;
}

.philosophy-wrapper {
    padding: 0 30px;
}

.philosophy-wrapper h3 {
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Map --------------------------------------- */

.top-page-map {
    padding: 30px 20px 80px;
}

.nbt-map {
    position: relative;
    width: 100%;
}

.nbt-map::after {
    display: block;
    content: "";
    padding-top: 150%;
}

.nbt-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Business Page
   ========================================================================== */

.business-contents-wrapper {
    margin-bottom: 60px;
}

#business-contents {
    padding-top: 135px;
}

#business-contents .section-title {
    margin-bottom: 30px;
}

/* Contents ---------------------------------- */

.business-contents-item {
    margin-bottom: 45px;
}

.business-contents-item:last-child {
    margin-bottom: 0;
}

.business-contents-image {
    position: relative;
    width: 100%;
}

.business-contents-image::after {
    display: block;
    padding-top: 62.5%;
    content: "";
}

.business-contents-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.business-contents-text {
    padding: 15px;
}

.business-title-wrapper {
    margin-bottom: 20px;
    text-align: center;
}

.business-title-wrapper h2 {
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 1px;
    text-indent: 1px;
}

.business-title-wrapper p {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    text-indent: 1px;
    white-space: nowrap;
}

.business-title-wrapper span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
}

.business-text-wrapper {
    margin-bottom: 25px;
    padding: 0 15px;
}

.business-text-wrapper .text {
    font-size: 14px;
}

.price {
    padding: 0 15px;
    color: #3e61aa;
    font-size: 22px;
    text-align: right;
}

.price span {
    font-size: 16px;
}

/* Contact Form ------------------------------ */

.business-contact-form {
    padding-bottom: 30px;
}


/* Contact Page
   ========================================================================== */

#contact-contents {
    padding: 135px 0 30px;
}

#contact-contents .section-title {
    margin-bottom: 45px;
}

#contact-contents .contact-form {
    margin-bottom: 30px;
}

/* Contact Form ------------------------------ */

.contact-form-wrapper {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
}

.contact-form-table {
    width: 100%;
}

.contact-form-row {
    display: block;
    margin-bottom: 15px;
}

.contact-form-row td {
    display: block;
    vertical-align: middle;
}

.contact-form-heading {
    padding: 10px 0 5px;
}

.contact-form-heading span {
    display: inline-block;
    vertical-align: middle;
}

.icon-required {
    margin-left: 10px;
    padding: 3px 8px;
    background-color: #f00;
    color: #fff;
    font-size: 11px;
}

.contact-form-input input,
.contact-form-input textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #fff;
    font-size: 13px;
    line-height: 1.25;
    outline-color: #00BCD4;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form-input input::-webkit-input-placeholder {
    color: #bbb;
}

.contact-form-input input:-ms-input-placeholder {
    color: #bbb;
}

.contact-form-input input::placeholder {
    color: #bbb;
}

.contact-form-input textarea {
    height: 160px;
    resize: none;
}

/* Postal Code */

.postal-code {
    margin-bottom: 10px;
}

.contact-form-input .postal-code-3 {
    width: 60px;
}

.contact-form-input .postal-code-4 {
    width: 80px;
}
.p-region {
    height: 32px;
    margin-bottom: 10px;
    border: 1px solid #cacaca;
    border-radius: 0;
    background-color: #fff;
    font-size: 13px;
    line-height: 1.25;
    outline-color: #00BCD4;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

.p-locality {
    margin-bottom: 10px;
}

/* Submit Button */

.submit-btn {
    text-align: center;
}

.submit-btn input {
    display: inline-block;
    padding: 7px 20px;
    border: none;
    border-radius: 3px;
    background-color: #74ABC4;
    color: #fff;
    font-size: 13px;
    letter-spacing: 10px;
    text-indent: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Google reCAPTCHA */

.grecaptcha-badge {
    visibility: hidden;
}

.protect-by-google {
    margin-bottom: 50px;
    padding: 0 15px;
}

.protect-by-google {
    font-size: 13px;
    line-height: 1.8;
}

/* Step Bar */

.form-steps {
    margin-bottom: 35px;
}

.step-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 80%;
    max-width: 260px;
    margin: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
}

.step-bar::before,
.step-bar::after {
    display: block;
    position: absolute;
    z-index: 0;
    top: 13.5px;
    width: 50%;
    height: 3px;
    background-color: #d0e1f9;
    content: "";
}

.step-bar::before {
    left: 0;
}

.step-bar::after {
    right: 0;
}

.step {
    position: relative;
    z-index: 1;
    font-size: 12px;
    text-align: center;
}

.step span {
    display: block;
    z-index: 0;
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
    border-radius: 50%;
    background-color: #d0e1f9;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
}

.step.current span,
.step.finished span {
    background-color: #4d648d;
}

/* Attention --------------------------------- */

.attention-wrapper {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
}

.attention-wrapper h2 {
    margin-bottom: 20px;
    padding: 10px 0 10px 15px;
    border-left: solid 3px #cacaca;
    font-size: 18px;
    letter-spacing: .5px;
}

.attention-list {
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.8;
    list-style: disc;
}

.attention-list li {
    margin-bottom: 10px;
}

.privacy-policy-link {
    display: block;
}

.privacy-policy-link a {
    padding-bottom: 3px;
    border-bottom: 1px dotted #000;
    color: #000;
}


/* Confirm Page
   ========================================================================== */

#confirm-contents {
    padding: 135px 0 30px;
}

#confirm-contents .section-title {
    margin-bottom: 45px;
}

.confirm-guide {
    padding: 15px;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.8;
}

/* Confirm Table ----------------------------- */

.confirm-wrapper {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
}

.confirm-table {
    width: 100%;
    margin-bottom: 25px;
}

.confirm-row {
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.confirm-row td {
    display: block;
    vertical-align: middle;
}

.confirm-heading {
    padding: 20px 0 15px;
}

.confirm-input {
    padding-left: 15px;
}

.confirm-postal-code {
    margin-bottom: 10px;
}

/* Step Bar */

#confirm-contents .step-bar::before {
    background-color: #4d648d;
}

/* Buttons */

.confirm-buttons {
    text-align: center;
}

.confirm-buttons input {
    display: inline-block;
    width: 100px;
    padding: 7px 0;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.confirm-back {
    background-color: #cacaca;
    letter-spacing: 1px;
    text-indent: 1px;
    margin-right: 10px;
}

.confirm-submit {
    background-color: #74abc4;
    letter-spacing: 10px;
    text-indent: 10px;
    margin-left: 10px;
}


/* Thanks Page
   ========================================================================== */

#thanks-contents {
    padding: 135px 0 50px;
}

#thanks-contents .section-title {
    margin-bottom: 45px;
}

.thanks-wrapper {
    padding: 0 15px;
}

.thanks-message {
    margin-bottom: 50px;
    line-height: 1.8;
}

.back-to-top {
    text-align: center;
}

.back-to-top a {
    display: inline-block;
    width: 200px;
    padding: 13px 0;
    border: 1px solid #3c61aa;
    border-radius: 3px;
    color: #3c61aa;
    font-size: 16px;
}

/* Step Bar */

#thanks-contents .step-bar::before,
#thanks-contents .step-bar::after {
    background-color: #4d648d;
}


/* Philosophy Page
   ========================================================================== */

#philosophy-contents {
    padding: 135px 0 45px;
}

#philosophy-contents .section-title {
    margin-bottom: 35px;
}

.philosophy-wrapper h2 {
    margin-bottom: 30px;
    font-size: 19px;
    letter-spacing: 2px;
    line-height: 1.8;
}


/* About Page
   ========================================================================== */

#about-contents {
    padding: 135px 0 80px;
}

#about-contents .section-title {
    margin-bottom: 35px;
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto 45px;
    padding: 0 15px;
}

/* About List -------------------------------- */

.about-item {
    padding: 15px;
    border-bottom: 2px solid #f0f0ee;
    letter-spacing: 1px;
    line-height: 1.8;
}

.about-item dt {
    margin-bottom: 5px;
}

.about-item dd {
    padding-left: 15px;
    color: #333;
}

.about-item dd a {
    color: #0066ff;
    border-bottom: 1px solid #a2c6ff;
}

/* Map --------------------------------------- */

.about-page-map {
    padding: 0 20px;
}


/* Privacy Policy Page
   ========================================================================== */

#privacy-policy-content {
    padding: 110px 0 45px;
}

#privacy-policy .section-title {
    margin-bottom: 35px;
}

.privacy-policy-wrapper {
    max-width: 800px;
    margin: auto;
    padding: 0 15px;
    line-height: 1.8;
}

.privacy-policy-item {
    margin-bottom: 30px;
}

.privacy-policy-item:last-child {
    margin-bottom: 0;
}

.privacy-policy-item h2 {
    margin-bottom: 5px;
    padding-left: 10px;
    border-left: 3px solid #cacaca;
    font-size: 16px;
}

.privacy-policy-item p,
.privacy-policy-item ul {
    padding-left: 13px;
    font-size: 14px;
}