/* すべてのぺージに適応される設定 */
html {
    font-size: 16px;
    font-family: sans-serif;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0 0 0 0;
}
p,li,td,h2 {
    line-height: 1.7;
    text-align: left;
}
g1 {
    font-size: 1.3rem;
    line-height: 1.7;
}
i1 {
    font-size: 1.1rem;
}
i2 {
    font-size: 1.2rem;
}
a:link {
    color: #F07D34;
    text-decoration: none;
}
a:visited {
    color: #F07D34;
    text-decoration: none;
}
a:hover {
    color: #F07D34;
    text-decoration: underline;
}
a:active {
    color: #F07D34;
    text-decoration: underline;
}
img {
    max-width: 100%;
}
/* すべてのページに適応 - ヘッダー */
.header {
    padding-top: 40px;
    background-image: url(画像/stripe.png);
    background-repeat: repeat-x;
}
.tytle {
    font-size: 30px;
    text-align: center;
}
.nav ul {
    margin: 30px 0 0 0;
    padding: 0;
    list-style-type: none;

    display: flex;
    justify-content: center;
    gap: 40px;
}
.nav a:link {
    color: #253958;
}
.nav a:visited {
    color: #253958;
}
.nav a:hover {
    text-decoration: none;
} 
.nav a:active {
    text-decoration: none;
}
/* すべてのページに適応 - ヒーロー */

/* すべてのページに適応 - メイン */
main {
    margin: 90px auto 90px auto;
    max-width: 1000px;
}
main h2 {
    margin: 60px 0 20px 0;
    border-bottom: 2px solid #253958;
    padding: 0 0 5px 0;
    color: #253958;
    font-size: 1.3rem;
    text-align: left;
}
main li {
    text-align: left;
}
.work {
    line-height: 1.7;
}
.philosophy {
    margin: 6px 0 20px 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #253958;
    text-align: left;
}
.feature {
    margin: 6px 0 20px 0;
    font-size: 2.1rem;
    border-bottom: 2px solid #253958;
    text-align: left;
}
/* すべてのページに適応 - フッター */
.gotop {
    text-align: center;
}
.copyright {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 75px;
    padding-bottom: 75px;
    background-color: #253958;
    color: #FFFFFF;
    text-align: center;
}
.image {
    text-align: center;
}
/* モバイル対応 */
@media (max-width: 767px) {
    .nav ul {
        flex-wrap: wrap;
        gap: 20px;
    }
    main {
        padding: 0 4%;
    }

    /* index.html */
    .hero.index {
        padding: 28vh 0;
    }
}
/* 個別のスタイル */
/* index.html */
.office-info {
    border-collapse: collapse;
    background-color: #FFFFFF;
}
.office-info tr, .office-info td {
    border: 1px solid #DBDBDB;
    padding: 20px;
}
.office-info tr {
    width: 112px;
    text-align: left;
    vertical-align: top;
}
.news {
    width: 112px;
    text-align: left;
    vertical-align: top;
}
.charge-info {
    border-collapse: collapse;
    background-color: #FFFFFF;
}
.charge-info th, .charge-info td {
    border: 1px solid #DBDBDB;
    padding: 20px;
}
.charge-info th {
    width: 112px;
    text-align: left;
    vertical-align: top;
}
.result-info {
    border-collapse: collapse;
    background-color: #FFFFFF;
}
.result-info th, .result-info td {
    font-size: 20px;
    border: 1px solid #DBDBDB;
    padding: 20px;
}
.result-info th {
    width: 150px;
    text-align: center;
    vertical-align: center;
}
.result-info td {
    width: 150px;
    text-align: center;
    vertical-align: center;
}
/* acess.html */
p,ol {
    font-size: 1.3rem;
}
/* 全体のスタイルを統一 */
* {
    box-sizing: border-box; /* これで padding, border を含めたサイズ計算をする */
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 0;

}


