@charset "UTF-8";

/*   全体の設定  */
body,
html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    font-size: 100%;
    line-height: 1.7;
    color: #333;   
    background-color: white;
}
img {
    width: 100%;
    height: auto;
}
.menu li a:hover {
    background-color: #eee;
}

/* -----スマホ表示用----- */
@media (max-width: 430px) {

   /* ---ヘッダー部分--- */
    .header-page {
        width: 100%;
        height: 50px;
        padding: 0 20px;
        border-bottom: 1px solid #ccc;
        background-color: white;
        position: fixed; /* ヘッダーを固定 */
        top: 0;          /* 画面上部に固定 */
        left: 0;         /* 画面左に固定 */
        z-index: 1000;   /* ヘッダーを最前面に表示 */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .rogo-wrap {
        width: 23%;
        height: 72%;
        display: flex;
        align-items: center;
    }
    .rogo-img {
        width: 100%;
        height: auto;
    }
    /* ハンバーガーアイコンのスタイル */
    .hamburger {
        width: 45px;
        height: 35px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }
    .bar {
        width: 100%;
        height: 2px;
        background-color: #333;
    }
    /* ナビゲーションのスタイル */
    .menu {
        display: none;
        width: 200px;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 53px;
        right: 3px;
        background-color: white;
        list-style: none;
    }
    .menu li {
        border-left: 1px solid #ccc;   /* 左の境界線 */
        border-right: 1px solid #ccc;  /* 右の境界線 */
        border-bottom: 1px solid #ccc; /* 下の境界線 */
    }
    .menu li:first-child {
        border-top: 1px solid #ccc; /* 最初のリストアイテムにだけ上の境界線を追加 */
    }
    .menu li a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
    }

    /* ---トップページのボディ部分--- */
    .top-page {
        width: 100%;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .top-img {
        width: 100%;
        aspect-ratio: 430 / 240;
        background-image: url('../img/top-img.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .top-img p{
        background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
        padding: 10px;
        font-weight: bold;
        font-size: 20px;
        color: white;
    }

    /* 「NEWS」見出しのスタイル */
    .news-bar {
        width: 100%;
        height: 50px;
        margin:20px 0 10px 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center; /* 垂直方向の中央揃え */
        justify-content: center; /* 水平方向の中央揃え (必要なら) */
    }

    /* トピックのスタイル */
    .topic-wrap {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    .blank-wrap {
        width: 100%;
        height: auto;
        padding: 10px;
        background-color: white;
    }
    .blank-wrap p{
        font-size: 14px;
    }
    .blank-wrap h1{
        padding: 10px 0;
        text-align: center;
    }
    .topic-text {
        width: 100%;
        padding-bottom: 20px;
    }
    .topic-text p{
        text-align: left;
        padding: 0 20px;
        white-space: normal; /* 自動的な改行を行い、余計なスペースを排除 */
    }

    .topic-list {
        align-self: flex-end;
        padding-right: 20px;
        font-size: 13px;
        color: #333;
    }

    /* ---企業概要ページのボディ部分--- */

    /* ページ全体 */
    .company-page {
        margin-top: 50px;
        padding: 20px;
    }
    .company-page h1{
        font-size: 20px;
    }

    /* 企業概要 */
    .company-philosophy {
        margin-top: 16px;
    }
    .company-philosophy img{
        width: 100%;
        height: auto;
    }
    .company-philosophy p{
        margin-top: 16px;
    }

    /* 企業情報 */
    .company-information {
        margin-top: 32px;
    }
    .company-information ul {
        margin-top: 8px;
    }
    .company-information li {
        display: flex;
        align-items: flex-start; /* 上揃えにする */
    }
    .company-information .item-name {
        flex: 0.7;
    }
    .company-information .symbol {
        flex: 0.1;
    }
    .company-information .text {
        flex: 2;
    }

    /* ---サービスページのボディ部分--- */

    /* ページ全体 */
    .service-page {
        margin-top: 50px;
        padding: 20px;
    }
    .service-page h1{
        font-size: 20px;
    }

    /* サービス */
    .service-philosophy {
        margin-top: 16px;
    }
    .service-philosophy img{
        width: 100%;
        height: auto;
    }
    .service-philosophy p{
        margin-top: 16px;
    }

    /* 提供サービス・製品 */
    .service-information {
        margin-top: 32px;
    }

    /* ---採用情報ページのボディ部分--- */

    /* ページ全体 */
    .recruitment-page {
        margin-top: 50px;
        padding: 20px;
    }
    .recruitment-page h1{
        font-size: 20px;
    }

    /* 採用情報 */
    .recruitment-philosophy {
        margin-top: 16px;
    }
    .recruitment-philosophy img{
        width: 100%;
        height: auto;
    }
    .recruitment-philosophy p{
        margin-top: 16px;
    }

    /* 採用情報詳細 */
    .recruitment-information {
        margin-top: 32px;
    }
    .custom-table {
        width: 100%;
        margin-top: 8px;
        border-collapse: collapse;
        text-align: left;
        table-layout: fixed; /* 幅を固定する */
    }
    .custom-table tr {
        border-bottom: 1px solid #ccc;
    }
    .custom-table th {
        width: 25%; /* th の幅を 30% */
        border: 1px solid #ccc;
        padding: 10px;
        font-weight: lighter;
    }
    .custom-table td {
        width: 75%; /* th の幅を 70% */
        border: 1px solid #ccc;
        padding: 10px;
        word-break: break-word; /* 長い単語でも適切に改行 */
        white-space: normal; /* テキストの折り返しを許可 */
    }

    /* ---お問い合わせページのボディ部分--- */

    /* ページ全体 */
    .contach-page {
        margin-top: 50px;
        padding: 20px;
    }
    .contach-page h1{
        font-size: 20px;
    }

    /* お問い合わせ */
    .contach-philosophy {
        margin-top: 16px;
    }
    .contach-philosophy p{
        margin-top: 16px;
    }

    /* フォーム */
    .contach-form {
        margin-top: 32px;
    }
    .contach-form input[type="text"] ,
    .contach-form input[type="email"] {
        width: 100%;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form textarea {
        width: 100%;
        height: 100px;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form input[type="submit"] {
        border: 1px solid #ccc;
        margin-top: 32px;
        padding: 5px 10px;
    }

    /* ---フッダー部分--- */
    .footer-page {
        width: 100%;
        height: auto;
        padding: 20px;
        background: white;
    }
    .footer-page a:hover {
        text-decoration: underline;
        text-underline-offset: 4px; /* アンダーラインを3px下にずらす */
    }
    .footer-page small {
        font-size: 13px;  
    }

    .footer-list {
        display: flex;
        flex-direction: column;
    }
    .footer-list .line {
        width: 100%;
        height: 1px;
        margin: 16px 0;
        background-color: #ccc;
    }
    .footer-list ul {
        font-size: 13px;
        list-style: none; /* リストの「・」を消す */
        padding: 0;
        margin: 0;
    }
    .footer-list li {
        margin: 5px 0; /* アイテム間の余白を調整 */
    }

    .footer-media {
        font-size: 13px;
    }
    .footer-media .line {
        width: 100%;
        height: 1px;
        margin: 16px 0;
        background-color: #ccc;
    }
    .footer-media ul {
        display: flex;
        margin-top: 10px;
        list-style: none; /* リストの「・」を消す */
    }
    .footer-media li:first-child {
        margin-left: 0;
    }
    .footer-media li {
        margin-left: 16px;
    }
    .social-icon img {
        width: 36px;
        height: 36px;
    }

    .footer-copyright {
        margin-top: 16px;
        color: #666;
    }

}

/*  タブレット表示用  */
@media (min-width: 768px) and (max-width: 1024px) {

    /* ヘッダー部分 */
    .header-page {
        width: 100%;
        height: 50px;
        padding: 0 50px;
        border-bottom: 1px solid #ccc;
        background-color: white;
        position: fixed; /* ヘッダーを固定 */
        top: 0;          /* 画面上部に固定 */
        left: 0;         /* 画面左に固定 */
        z-index: 1000;   /* ヘッダーを最前面に表示 */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .rogo-wrap {
        width: 23%;
        height: 72%;
        display: flex;
        align-items: center;
    }
    .rogo-img {
        width: 100%;
        height: auto;
    }
    /* スマホ表示用、ハンバーガーアイコンのスタイル */
    .hamburger {
        display: none;
    }
    .bar {
        display: none;
    }
    /* ナビゲーションのスタイル */
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: white;
        list-style: none;
    }
    .menu li {
        border-top: 1px solid #ccc; /* 上の境界線 */
        border-left: 1px solid #ccc;   /* 左の境界線 */
        border-right: 1px solid #ccc;  /* 右の境界線 */
        border-bottom: 1px solid #ccc; /* 下の境界線 */
    }
    .menu li a {
        display: block;
        font-size: 18px;
        padding: 5px;
        color: #333;
        text-decoration: none;
    }

    /* トップページのボディ部分 */
    .top-page {
        width: 100%;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .top-img {
        width: 100%; /* 表示領域の幅 */
        aspect-ratio: 430 / 240;
        background-image: url('../img/top-img.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .top-img p{
        background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
        padding: 30px;
        font-weight: bold;
        font-size: 20px;
        color: white;
    }

    /* 「NEWS」見出しのスタイル */
    .news-bar {
        width: 100%;
        height: 50px;
        margin:20px 0 10px 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center; /* 垂直方向の中央揃え */
        justify-content: center; /* 水平方向の中央揃え (必要なら) */
    }

    /* トピックのスタイル */
    .topic-wrap {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    .blank-wrap {
        width: 100%;
        height: auto;
        padding: 15px;
        background-color: white;
    }
    .blank-wrap p{
        font-size: 14px;
    }
    .blank-wrap h1{
        padding: 10px 0;
        text-align: center;
    }
    .topic-text {
        width: 100%;
        padding-bottom: 20px;
    }
    .topic-text p{
        text-align: left;
        padding: 0 20px;
        white-space: normal; /* 自動的な改行を行い、余計なスペースを排除 */
    }

    .topic-list {
        align-self: flex-end;
        padding-right: 20px;
        font-size: 13px;
        color: #333;
    }

    /* ---企業概要ページのボディ部分--- */

    /* ページ全体 */
    .company-page {
        margin-top: 50px;
        padding: 20px;
    }
    .company-page h1{
        font-size: 20px;
    }

    /* 企業概要 */
    .company-philosophy {
        margin-top: 16px;
    }
    .company-philosophy img{
        width: 100%;
        height: auto;
    }
    .company-philosophy p{
        padding: 0 20px;
        margin-top: 16px;
    }

    .company-information {
        margin-top: 32px;
    }

    /* 企業情報 */
    .company-information ul {
        padding: 0 20px;
        margin-top: 8px;
    }
    .company-information li {
        display: flex;
        align-items: flex-start; /* 上揃えにする */
    }
    .company-information .item-name {
        flex: 0.7;
    }
    .company-information .symbol {
        flex: 0.1;
    }
    .company-information .text {
        flex: 2;
    }

    /* ---サービスページのボディ部分--- */

    /* ページ全体 */
    .service-page {
        margin-top: 50px;
        padding: 20px;
    }
    .service-page h1{
        font-size: 20px;
    }

    /* サービス */
    .service-philosophy {
        margin-top: 16px;
    }
    .service-philosophy img{
        width: 100%;
        height: auto;
    }
    .service-philosophy p{
        padding: 0 20px;
        margin-top: 16px;
    }

    /* サービス内容 */
    .service-information {
        margin-top: 32px;
    }
    .service-information ul {
        padding: 0 20px;
        margin-top: 8px;
    }

    /* ---採用情報ページのボディ部分--- */

    /* ページ全体 */
    .recruitment-page {
        margin-top: 50px;
        padding: 20px;
    }
    .recruitment-page h1{
        font-size: 20px;
    }

    /* 採用情報 */
    .recruitment-philosophy {
        margin-top: 16px;
    }
    .recruitment-philosophy img{
        width: 100%;
        height: auto;
    }
    .recruitment-philosophy p{
        margin-top: 16px;
    }

    /* 採用情報詳細 */
    .recruitment-information {
        margin-top: 32px;
    }
    .custom-table {
        width: 100%;
        margin-top: 8px;
        border-collapse: collapse;
        text-align: left;
        table-layout: fixed; /* 幅を固定する */
    }
    .custom-table tr {
        border-bottom: 1px solid #ccc;
    }
    .custom-table th {
        width: 25%; /* th の幅を 30% */
        border: 1px solid #ccc;
        padding: 10px;
        font-weight: lighter;
    }
    .custom-table td {
        width: 75%; /* th の幅を 70% */
        border: 1px solid #ccc;
        padding: 10px;
        word-break: break-word; /* 長い単語でも適切に改行 */
        white-space: normal; /* テキストの折り返しを許可 */
    }

    /* ---お問い合わせページのボディ部分--- */

    /* ページ全体 */
    .contach-page {
        margin-top: 50px;
        padding: 20px;
    }
    .contach-page h1{
        font-size: 20px;
    }

    /* お問い合わせ */
    .contach-philosophy {
        margin-top: 16px;
    }
    .contach-philosophy p{
        margin-top: 16px;
    }

    /* フォーム */
    .contach-form {
        width: 450px;
        margin: 32px auto 0;
    }
    .contach-form input[type="text"] ,
    .contach-form input[type="email"] {
        width: 100%;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form textarea {
        width: 100%;
        height: 100px;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form input[type="submit"] {
        border: 1px solid #ccc;
        margin-top: 32px;
        padding: 5px 10px;
    }

    /* フッダー部分 */
    .footer-page {
        width: 100%;
        height: auto;
        padding: 20px;
        background: white;
    }
    .footer-page a:hover {
        text-decoration: underline;
        text-underline-offset: 4px; /* アンダーラインを3px下にずらす */
    }
    .footer-page small {
        font-size: 13px;  
    }

    .footer-list {
        display: flex;
        justify-content: space-around;
    }
    .footer-list .line {
        width: 1px;
        height: 86.28px;
        background-color: #ccc;
    }
    .footer-list ul {
        font-size: 13px;
        list-style: none; /* リストの「・」を消す */
        padding: 0;
        margin: 0;
    }
    .footer-list li {
        margin: 5px 0; /* アイテム間の余白を調整 */
    }

    .footer-media {
        font-size: 13px;
    }
    .footer-media .line {
        width: 100%;
        height: 1px;
        margin: 16px 0;
        background-color: #ccc;
    }
    .footer-media p {
        display: flex;
        justify-content: center;
    }
    .footer-media ul {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        list-style: none; /* リストの「・」を消す */
    }
    .footer-media li:first-child {
        margin-left: 0;
    }
    .footer-media li {
        margin-left: 16px;
    }
    .social-icon img {
        width: 36px;
        height: 36px;
    }

    .footer-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        margin-top: 16px;
        color: #666;
    }
}

/*  ノートパソコン向け  */
@media (min-width: 1025px) and (max-width: 1920px) {

    /* 幅の上限を1440pxに設定 */
    body {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        background-color: #f5f5f5;
    }
    /* pc表示調整用 */
    .pc-adjustment {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: white;
    }
    /* pc表示調整用（contach用） */
    .pc-adjustment-contach {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-color: white;
    }

    /* ---ヘッダー部分--- */
    .header-page {
        width: 100%;
        max-width: 1440px;
        height: 50px;
        padding: 0 40px;
        border-bottom: 1px solid #ccc;
        background-color: white;
        position: fixed; /* ヘッダーを固定 */
        top: 0;          /* 画面上部に固定 */
        left: 50%;         
        transform: translateX(-50%); /* 中央配置 */
        z-index: 1000;   /* ヘッダーを最前面に表示 */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .rogo-wrap {
        width: 23%;
        height: 72%;
        display: flex;
        align-items: center;
    }
    .rogo-img {
        width: 100%;
        height: auto;
    }
    /* スマホ表示用、ハンバーガーアイコンのスタイル */
    .hamburger {
        display: none;
    }
    .bar {
        display: none;
    }
    /* ナビゲーションのスタイル */
    .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background-color: white;
        list-style: none;
    }
    .menu li {
        border-top: 1px solid #ccc; /* 上の境界線 */
        border-left: 1px solid #ccc;   /* 左の境界線 */
        border-right: 1px solid #ccc;  /* 右の境界線 */
        border-bottom: 1px solid #ccc; /* 下の境界線 */
    }
    .menu li a {
        display: block;
        font-size: 18px;
        padding: 5px;
        color: #333;
        text-decoration: none;
    }

    /* ---トップページのボディ部分 */
    .top-page {
        width: 100%;
        margin-top: 50px;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .top-img {
        width: 100%; /* 表示領域の幅 */
        aspect-ratio: 430 / 240;
        background-image: url('../img/top-img.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .top-img p{
        background-color: rgba(0, 0, 0, 0.4); /* 半透明の黒 */
        padding: 30px;
        font-weight: bold;
        font-size: 20px;
        color: white;
    }

    /* 「NEWS」見出しのスタイル */
    .news-bar {
        width: 100%;
        height: 50px;
        margin:20px 0 10px 0;
        background-color: white;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        display: flex;
        align-items: center; /* 垂直方向の中央揃え */
        justify-content: center; /* 水平方向の中央揃え (必要なら) */
    }

    /* トピックのスタイル */
    .topic-wrap {
        width: 100%;
        height: auto;
        padding: 10px 0;
        
    }
    .blank-wrap {
        width: 100%;
        height: auto;
        padding: 15px;
        background-color: white;
    }
    .blank-wrap p{
        font-size: 14px;
    }
    .blank-wrap h1{
        padding: 10px 0;
        text-align: center;
    }
    .topic-text {
        width: 100%;
        padding-bottom: 20px;
    }
    .topic-text p{
        width: 100%; /* 親の幅に合わせる */
        padding: 0 160px;
        white-space: normal; /* 自動的な改行を行い、余計なスペースを排除 */
    }

    .topic-list {
        align-self: flex-end;
        padding-right: 20px;
        font-size: 13px;
        color: #333;
    }

    /* ---企業概要ページのボディ部分--- */

    /* ページ全体 */
    .company-page {
        width: 920px;
        margin-top: 50px;
        padding: 20px;
        background-color: white;
    }
    .company-page h1{
        font-size: 20px;
    }

    /* 企業概要 */
    .company-philosophy {
        margin-top: 16px;
    }
    .company-philosophy img{
        width: 100%;
        height: auto;
    }
    .company-philosophy p{
        padding: 0 20px;
        margin-top: 16px;
    }

    .company-information {
        margin-top: 32px;
    }

    /* 企業情報 */
    .company-information ul {
        padding: 0 20px;
        margin-top: 8px;
    }
    .company-information li {
        display: flex;
        align-items: flex-start; /* 上揃えにする */
    }
    .company-information .item-name {
        flex: 0.7;
    }
    .company-information .symbol {
        flex: 0.1;
    }
    .company-information .text {
        flex: 2;
    }

    /* ---サービスページのボディ部分--- */

    /* ページ全体 */
    .service-page {
        width: 920px;
        margin-top: 50px;
        padding: 20px;
        background-color: white;
    }
    .service-page h1{
        font-size: 20px;
    }

    /* サービス */
    .service-philosophy {
        margin-top: 16px;
    }
    .service-philosophy img{
        width: 100%;
        height: auto;
    }
    .service-philosophy p{
        padding: 0 20px;
        margin-top: 16px;
    }

    /* サービス内容 */
    .service-information {
        margin-top: 32px;
    }
    .service-information ul {
        padding: 0 20px;
        margin-top: 8px;
    }

    /* ---採用情報ページのボディ部分--- */

    /* ページ全体 */
    .recruitment-page {
        width: 920px;
        margin-top: 50px;
        padding: 20px;
        background-color: white;
    }
    .recruitment-page h1{
        font-size: 20px;
    }

    /* 採用情報 */
    .recruitment-philosophy {
        margin-top: 16px;
    }
    .recruitment-philosophy img{
        width: 100%;
        height: auto;
    }
    .recruitment-philosophy p{
        margin-top: 16px;
    }

    /* 採用情報詳細 */
    .recruitment-information {
        margin-top: 32px;
    }
    .custom-table {
        width: 100%;
        margin-top: 8px;
        border-collapse: collapse;
        text-align: left;
        table-layout: fixed; /* 幅を固定する */
    }
    .custom-table tr {
        border-bottom: 1px solid #ccc;
    }
    .custom-table th {
        width: 25%; /* th の幅を 30% */
        border: 1px solid #ccc;
        padding: 10px;
        font-weight: lighter;
    }
    .custom-table td {
        width: 75%; /* th の幅を 70% */
        border: 1px solid #ccc;
        padding: 10px;
        word-break: break-word; /* 長い単語でも適切に改行 */
        white-space: normal; /* テキストの折り返しを許可 */
    }

    /* ---お問い合わせページのボディ部分--- */

    /* ページ全体 */
    .contach-page {
        margin-top: 50px;
        padding: 20px;
    }
    .contach-page h1{
        font-size: 20px;
    }

    /* お問い合わせ */
    .contach-philosophy {
        margin-top: 16px;
    }
    .contach-philosophy p{
        margin-top: 16px;
    }

    /* フォーム */
    .contach-form {
        width: 450px;
        margin: 32px auto 0;
    }
    .contach-form input[type="text"] ,
    .contach-form input[type="email"] {
        width: 100%;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form textarea {
        width: 100%;
        height: 100px;
        padding: 5px;
        border: 1px solid #ccc;
        font-size: 16px;
        outline: none;
    }
    .contach-form input[type="submit"] {
        border: 1px solid #ccc;
        margin-top: 32px;
        padding: 5px 10px;
    }

    /* フッダー部分 */
    .footer-page {
        width: 920px;
        height: auto;
        padding: 20px;
        background: white;
    }
    .footer-page a:hover {
        text-decoration: underline;
        text-underline-offset: 4px; /* アンダーラインを3px下にずらす */
    }
    .footer-page small {
        font-size: 13px;  
    }

    .footer-list {
        display: flex;
        justify-content: space-around;
    }
    .footer-list .line {
        width: 1px;
        height: 86.28px;
        background-color: #ccc;
    }
    .footer-list ul {
        font-size: 13px;
        list-style: none; /* リストの「・」を消す */
        padding: 0 20px;
        margin: 0;
    }
    .footer-list li {
        margin: 5px 0; /* アイテム間の余白を調整 */
    }

    .footer-media {
        font-size: 13px;
    }
    .footer-media .line {
        width: 100%;
        height: 1px;
        margin: 16px 0;
        background-color: #ccc;
    }
    .footer-media p {
        display: flex;
        justify-content: center;
    }
    .footer-media ul {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        list-style: none; /* リストの「・」を消す */
    }
    .footer-media li:first-child {
        margin-left: 0;
    }
    .footer-media li {
        margin-left: 16px;
    }
    .social-icon img {
        width: 36px;
        height: 36px;
    }

    .footer-copyright {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        margin-top: 16px;
        color: #666;
    }
}