/*　全ページ共通のベースのスタイル　*/

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin:  0 auto 0 auto;
    padding: 0;
    color: #333;
    max-width: 1500px;
}

.main-contents {
    margin: 20px;
}

h2 {
    color: #444;
    border-bottom: 2px solid #444;
    padding-bottom: 5px;
    margin-top: 20px;
}

a {
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
}

li {
    margin-bottom: 5px;
}

dl {
    margin-top: 10px;
    margin-bottom: 20px;
}

dt {
    font-weight: bold;
    margin-top: 10px;
}

dd {
    margin-bottom: 5px;
}

.breadcrumbs {
    margin-top: 10px;
}

.smartphone-text {
    display: none;
}

@media (max-width: 767px) {
    .pc-text{
        display: none;
    }
    .smartphone-text {
        display: block;
    }
  }