@charset "UTF-8";

/* CSS Docment */

/*---------------------------------
PC用レイアウト(768px以上スクリーン)
---------------------------------*/

/* body全体の初期スタイル調整 */

body{
 font-size:62.5%;
 font-family:"YuGothic","Yu Gothic medium","Hiragino Sans","Meiryo","sans-serif";
 font-weight: normal;
 color:#000;
}

/* リンク文字の設定 */

a{
 text-decoration:underline;
}

a:link,a:visited{
 color: #39f;  
}

a:hover,a:active{
 color: #f60;
}

/* ブラウザのCSSをリセット */

p{
 margin: 0 !important;
 margin: 0 !important;
}

section{
 clear: both;
 overflow: auto;
}

/*---------------------------------
全体レイアウト/背景設定(PC）
---------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */
.main{
    background-color: #f2f2f2;
}

/* 記事(ボディ)エリア*/
.article{
    background-color: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 1.6em;/*=16px*/
}

/* 記事(ボディ)エリアの行間*/
.article p{
line-height: 1.6;
}

/* カラム全体の幅を変更する*/
.article,.top_image_in{
 width: 950px;
 margin: 0 auto;/* 真ん中に要素を置きたいときに使う*/
}


/*---------------------------------
sectionの設定
---------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #444;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.legal-table th, .legal-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.legal-table th {
    background-color: #f0f0f0;
    width: 30%;
}

.legal-table td {
    background-color: #ffffff;
    color: #555;
}

@media (max-width: 600px) {
    .legal-table th, .legal-table td {
        display: block;
        width: 100%;
    }

    .legal-table th {
        background-color: #fafafa;
    }

    .legal-table td {
        padding-top: 0;
    }
}

/*---------------------------------
フッター部分
---------------------------------*/
.footer{
    background-color: #199771;
    padding: 2em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;
}

.footer a{
    color: #fff;
}

