html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    background-color: #fafafa;
    margin: 0;
}

/*ヘッダー*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

@media (max-width: 960px) {
    header {
        height: 70px;
    }
}

.header-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

@media (max-width: 960px) {
    .header-inner {
        height: 70px;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 99;
}

.header-logo img {
    width: 160px;
    object-fit: contain;
}

.header-menu {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-menu>li {
    width: 160px;
    height: 80px;
    padding: 0;
    text-align: center;
}

.header-menu>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

.header-menu>li>a:hover {
    color: #336CB6;
    background-color: #E4F0FF;
}

.sub-menu a span {
    font-size: 12px;
}

.header-menu>li .sub-menu,
.header-menu>li .tertiary-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 160px;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 10;
}

.header-menu>li:hover .sub-menu,
.header-menu .tertiary-toggle:hover .tertiary-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu>li,
.tertiary-menu>li {
    height: 60px;
    border-bottom: 1px solid #fff;
    color: #fff;
    background-color: #336CB6;
    transition: .3s ease;
}

.sub-menu>li:last-child {
    border-bottom: none;
}

.sub-menu>li:hover {
    color: #336CB6;
    background-color: #E4F0FF;
}

.sub-menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

.header-menu>li .tertiary-menu {
    top: 0;
    left: 160px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.tertiary-menu>li {
    background-color: #E4F0FF;
}

.tertiary-menu>li:first-child {
    border-top: 1px solid #fff;
}

.tertiary-menu>li a {
    color: #336CB6;
    transition: .3s ease;
}

.tertiary-menu>li a:hover {
    background-color: #fff;
}

/*スマホ版メニュー*/
/*ハンバーガーボタン*/
.hamburger-wrapper {
    display: none;
    text-align: center;
    z-index: 99;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
    margin: 10px auto 2px;
}

.hamburger span {
    height: 3px;
    background: #336cb6;
    width: 100%;
    display: block;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 「MENU」「CLOSE」ラベル */
.menu-label {
    font-size: 0.8em;
    color: #336cb6;
    transition: opacity 0.3s ease;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    background-color: #fff;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu>ul {
    height: 80%;
    margin-top: 70px;
    padding: 20px;
    list-style: none;
    overflow-y: auto;
}

.mobile-menu>ul>li {
    border-bottom: 1px solid #ccc;
}

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 1em;
    list-style: none;
    transition: .3s ease;
}

.mobile-sub-menu.open {
    max-height: 600px;
}

.mobile-sub-menu li {
    padding: 12px;
    border-bottom: 1px solid #ccc;
}

.mobile-sub-menu li:last-child {
    border-bottom: none;
}

.mobile-sub-menu li a {
    font-weight: 500;
    text-decoration: none;
    color: #336cb6;
}

.mobile-tertiary-menu {
    list-style: none;
    padding-top: 1em;
    padding-left: 0;
}

.mobile-tertiary-menu li a {
    font-weight: normal;
}

.accordion-toggle {
    position: relative;
    background: none;
    border: none;
    padding: 12px 40px 12px 12px;
    width: 100%;
    text-align: left;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
}

.accordion-toggle.open {
    background-color: #F6F6F6;
}

/* プラスアイコン（デフォルト） */
.accordion-toggle::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    background:
        linear-gradient(to right, #336cb6 14px) no-repeat center,
        linear-gradient(to bottom, #336cb6 14px) no-repeat center;
    background-size: 14px 2px, 2px 14px;
    content: '';
    transition: .3s ease;
}

/* マイナスアイコン（開いてる状態） */
.accordion-toggle.open::after {
    background:
        linear-gradient(to right, #336cb6 14px, transparent) no-repeat center;
    background-size: 14px 2px;
}


/*メディアクエリで切り替え*/
@media (max-width: 960px) {
    .hamburger-wrapper {
        display: block;
    }

    .header-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
}

/*共通設定*/
main {
    margin-top: 80px;
    min-height: calc(100vh - 440px);
}

main>div {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    main {
        margin-top: 70px;
    }
}

.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

.br-pc {
    display: block;
}

@media (max-width: 600px) {
    .br-pc {
        display: none;
    }
}

h2 {
    margin: 20px 0;
    font-size: 28px;
}

.h2-sub {
    margin-left: 16px;
    font-size: 16px;
    color: #7AA3DA;
}

h3 {
    font-weight: 700;
    margin: 0;
    font-size: 20px;
}

@media (max-width: 600px) {
    h3 {
        font-size: 18px;
    }
}

.h3_bar {
    position: relative;
    padding-left: 1em;
    margin-bottom: 40px;
}

.h3_bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #7AA3DA;
}

h4 {
    font-weight: 700;
    margin: 0;
    font-size: 18px;
}

@media (max-width: 600px) {
    h4 {
        font-size: 16px;
    }
}


a {
    color: inherit;
}

a:hover {
    color: #336CB6;
}

p {
    margin: 0;
}

.ol_underline {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.ol_underline li {
    counter-increment: item;
    border-top: 1px solid #ccc;
    padding: 20px 0 20px 2em;
    position: relative;
}

.ol_underline li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 20px;
    font-weight: bold;
}

.ul_underline {
    list-style: none;
    margin: 20px 0 0;
    padding-inline-start: 0 !important;
}

.ul_underline li {
    border-top: 1px solid #ccc;
    padding: 10px 0;
    position: relative;
    padding-left: 1em;
}

.ul_underline li:last-of-type {
    border-bottom: 1px solid #ccc;
}

.ul_underline li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #336CB6;
}

.ul_underline li a {
    color: #336CB6;
    transition: .3s ease;
}

.ul_underline li a:hover {
    color: #6993c9;
    opacity: 1;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-336CB6 {
    color: #336CB6;
}

.font500 {
    font-weight: 500;
}

.font700 {
    font-weight: 700;
}

strong {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
    color: #336CB6;
}

img {
    width: 100%;
}

.max400 {
    max-width: 400px;
}

/*カラム*/
.columns {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .columns.sp-reverse {
        flex-direction: column-reverse;
    }
}

.columns.border-top {
    padding-top: 40px;
    border-top: 1px solid #ccc;
}

.column {
    display: flex;
    flex-direction: column;
    width: 32%;
    margin-bottom: 40px;
    gap: 20px;
}

@media (max-width: 960px) {
    .column {
        width: 48%;
    }
}

@media (max-width: 960px) {
    .columns.v2 .column {
        width: 100%;
    }

    .columns.v3 .column {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}

@media (min-width: 960px) {
    .columns.v2 .column:first-of-type {
        width: 64%;
    }

    .columns.v3 .column {
        width: 48%;
    }

    .columns.v5 .column {
        width: 24%;
    }
}

.columns.v4 .column:first-of-type {
    width: 30%;
}

.columns.v4 .column:last-of-type {
    width: 65%;
}

@media (min-width: 600px) {
    .columns.v4 .column:first-of-type {
        width: 15%;
    }

    .columns.v4 .column:last-of-type {
        width: 80%;
    }
}


.column a {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

.column a:hover {
    color: #333;
    opacity: 0.7;
}

.column a>p {
    font-weight: normal;
    text-decoration: underline;
}

.column a:hover>p {
    color: #336CB6;
}

.column a img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 3px;
}

.column iframe {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 3px;
}

.column iframe.ar16-9 {
    aspect-ratio: 16/9;
}

/*クリック無効化*/
.noclick {
    pointer-events: none;
}

/*矢印リンク*/
.link-and-arrow {
    display: flex;
    justify-content: right;
    margin-top: 10px;
}

.link-and-arrow a {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.link-and-arrow a:hover {
    color: #336CB6;
}

.link-and-arrow a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #7AA3DA;
    transition: width 0.3s ease;
}

.link-and-arrow a:hover::after {
    width: 100%;
}

.link-and-arrow a p {
    margin: 0;
}

.link-and-arrow .right-arrow {
    width: 10px;
    margin-left: 14px;
    color: #7AA3DA;
}

/*ボックス型リンクボタンリスト*/
.box-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    list-style: none;
    padding-inline-start: 0 !important;
    gap: 2%;
}

.box-links li {
    width: 32%;
    padding: 0;
}

@media (max-width: 960px) {
    .box-links li {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .box-links li {
        width: 100%;
    }
}

.box-links li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em 0;
    border: 2px solid #6993c9;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #336CB6;
    background-color: #fff;
    transition: .2s ease;
}

.box-links li a:hover {
    color: #fff;
    background-color: #6993c9;
}

/*リンクボタン*/
.link_button_normal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1em 0;
    border: 2px solid #6993c9;
    border-radius: 3px;
    font-size: 18px;
    text-decoration: none;
    color: #336CB6;
    background-color: #fff;
    transition: .2s ease;
}

@media (min-width: 600px) {
    .link_button_normal {
        max-width: 400px;
    }
}


.link_button_normal:hover {
    color: #fff !important;
    opacity: 1 !important;
    background-color: #6993c9;
}

/*外部リンクアイコン*/
.ex-link {
    position: relative;
}

.ex-link::after {
    content: "";
    display: inline-block;
    width: .8em;
    height: .8em;
    margin-left: .5em;
    margin-bottom: .25em;
    background-image: url('images/ex-link.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}


/*フェードイン*/
/* 初期状態 */
.fade-in-up,
.fade-in-right {
    opacity: 0;
    visibility: hidden;
}

/* 下からフェードイン */
.fade-in-up.active {
    animation: fadeInUp 0.5s 0.5s ease-out forwards;
}

/* 右からフェードイン */
.fade-in-right.active {
    animation: fadeInRight 0.5s 0.5s ease-out forwards;
}

/* アニメーション定義 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
        visibility: visible;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
        visibility: visible;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
    }
}

/*ページタイトル*/
.page-title {
    padding: 60px 0;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #336CB6;
    background-color: #d5e4f7;
}

@media (max-width: 600px) {
    .page-title {
        font-size: 28px;
    }
}

/*パンくずリスト*/
.breadcrumbs {
    font-size: 14px;
    margin: 10px auto;
    width: 90%;
    max-width: 1200px;
}

@media (max-width: 960px) {
    .breadcrumbs {
        font-size: 12px;
    }
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumbs li+li::before {
    content: ">";
    margin: 0 0.5em;
    color: #666;
}

.breadcrumbs a {
    text-decoration: none;
    color: #336CB6;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs p {
    margin: 0;
    color: #333;
}


/*ページコンテンツ共通*/
.page-container {
    margin: 60px auto;
}

.page-content {
    margin: 80px auto;
}

.page-content h2 {
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7AA3DA;
    font-size: 24px;
}

@media (max-width: 600px) {
    .page-content h2 {
        font-size: 20px;
    }
}

.page-content h2.simple {
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 20px;
}

.page-content ul {
    margin-bottom: 40px;
    padding-inline-start: 20px;
}

.page-content ul li {
    padding-bottom: 10px;
}


/*ファーストビュー*/
.fv-container {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
}

.fv {
    width: 100%;
    height: 60vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.fv img {
    position: absolute;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

@media (max-width: 960px) {

    .fv,
    .fv img {
        height: 60vh;
    }
}

@media (max-width: 600px) {

    .fv,
    .fv img {
        min-height: 400px;
    }
}

.fv img.active {
    opacity: 1;
    z-index: 2;
}

/*ファーストビューのナビゲーションバー（インジケーター）*/
.indicator {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 2;
}

.bar {
    width: 30px;
    height: 5px;
    background-color: white;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media (max-width: 600px) {
    .bar {
        width: 24px;
    }
}

.bar.active {
    opacity: 1;
}

/*ページ内メニューバー*/
.page-menu-bar {
    width: 100%;
    max-width: 100%;
    background-color: #6993c9;
}

.page-menu-bar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    border-left: 3px solid #fff;
}

@media (max-width: 960px) {
    .page-menu-bar ul {
        flex-wrap: wrap;
        border-left: none;
    }
}

.page-menu-bar ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-right: 3px solid #fff;
    transition: .3s ease;
    background-color: #6993c9;
}

@media (max-width: 960px) {
    .page-menu-bar ul li {
        width: calc(50% - 1.5px);
        border-bottom: 3px solid #fff;
    }

    .page-menu-bar ul li:nth-child(2n) {
        border-right: none;
    }
}

.page-menu-bar ul li:hover {
    background-color: #336CB6;
}

.page-menu-bar ul li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}

.page-menu-bar ul li a img {
    width: 36px;
}

.page-menu-bar ul li a p {
    margin: 0 0 0 15px;
    min-width: 100px;
}

/*NEWS-BOX*/

.news-box {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0;
}

.news-mark {
    width: 100%;
}

.news-mark ul {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-mark li {
    width: 100%;
}

.news-mark button {
    width: 100%;
    height: 100%;
    padding: 20px 0;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-bottom: none;
    cursor: pointer;
    transition: .3s ease;
}

.news-mark button.active,
.news-mark button:hover {
    font-weight: 500;
    color: #fff;
    background-color: #336CB6;
    border: 1px solid #336CB6;
    border-bottom: none;
}

.news-container {
    height: 400px;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
    border: 3px solid #336CB6;
}

.page-container .news-container {
    height: auto;
}

.news-contents {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.news-contents:last-of-type {
    border-bottom: none;
}

.news-date {
    font-weight: 500;
    color: #627183;
}

.news-contents p {
    margin-top: 5px;
}

/*スタッフ紹介*/
.flex-table-container {
    display: flex;
    flex-direction: row;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid #ccc;
    gap: 40px;
}

@media (max-width: 600px) {
    .flex-table-container {
        flex-direction: column;
        gap: 20px;
    }
}

.flex-table-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 200px;
    gap: 10px 20px;
}

.flex-table-content h2 {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 16px;
}

.flex-table-content p {
    margin: 0;
    padding: 0;
    min-width: 110px;
    font-size: 16px;
}


/*ストライプ模様のテーブル*/
table.qualification-table {
    width: 100%;
    border-collapse: collapse;
}

table.qualification-table th,
table.qualification-table td {
    padding: 15px 20px;
    text-align: left;
    vertical-align: top;
}

table.qualification-table tr:nth-child(odd) {
    background-color: #f0f0f0;
}

table.qualification-table tr:nth-child(even) {
    background-color: inherit;
}

table.qualification-table th {
    font-weight: 500;
    white-space: nowrap;
    width: 50%;
}

table.qualification-table td {
    text-align: right;
}

/*サイトマップ*/
.sitemap h2 {
    margin-bottom: 0;
}

.sitemap h2 a {
    font-size: 24px;
    font-weight: 700;
    color: #336CB6;
    text-decoration: none;
    transition: .3s ease;
}

.sitemap h2 a:hover {
    color: #336CB6;
    opacity: 1;
    text-decoration: underline;
}

.sitemap ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.sitemap ul li {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

.sitemap ul li.sub-list {
    padding-bottom: 0;
    border: none;
}

.sitemap .ul_sitemap li a {
    font-size: 18px;
    font-weight: 700;
    color: #336CB6;
}

.sitemap .ul_sitemap li a:hover {
    color: #336CB6;
    opacity: 1;
    text-decoration: underline;
}

.sitemap ul li ul {
    border-top: 1px solid #ccc;
    margin-top: 15px;
}

.sitemap ul li ul li {
    position: relative;
    padding-left: 1.5em;
}

.sitemap ul li ul li::before {
    content: '－';
    position: absolute;
    left: 0;
    color: #336CB6;
}


/*フッター*/
footer {
    width: 100%;
    margin-top: 80px;
}

.footer-top {
    padding: 40px 0;
    color: #000;
    background-color: #d5e4f7;
}

.footer-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-inner-right {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

@media (max-width: 600px) {
    .footer-inner-right {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-inner-right>div {
    display: flex;
    flex-direction: column;
}

.footer-inner .department {
    font-size: 20px;
    font-weight: 500;
}

.footer-inner-right ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.footer-inner-right li {
    position: relative;
    padding-left: 1em;
}

.footer-inner-right li::before {
    content: '>';
    position: absolute;
    left: 0;
}

.footer-inner-right li a {
    text-decoration: none;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 14px;
    color: #fff;
    background-color: #336CB6;
}

.footer-bottom p {
    width: 90%;
    max-width: 1200px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .footer-bottom p {
        text-align: left;
    }
}