@charset "UTF-8";

/* CSS Document */
:root {
    --font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ\ Ｐゴシック', 'Verdana', sans-serif;
    --line-height: 1.6;
    --letter-spacing: 0.05em;
    --display-width: 1140px;
    /* color */
    --font-color: #333;
    --color-orange: #ff5d43;
    --color-main-blue: #00388c;
    --color-main-light-blue: #80b3ff;
    --color-purple: #8f3dfe;
    --bg-color-blue: #e5f0ff;
    --bg-color-gray: #fafafa;
    /* PC */
    --pc-font-size: 18px;
    --pc-padding-top: 50px;
    --pc-padding-bottom: 60px;
    --pc-padding-x: 50px;
    --pc-title-padding-bottom: 30px;
    --pc-title-width: 60%;
    --pc-content-width: 80%;
    /* SP */
    --sp-font-size: 15px;
    --sp-padding-top: 25px;
    --sp-padding-bottom: 30px;
    --sp-padding-x: 20px;
    --sp-title-padding-bottom: 15px;
    --sp-content-width: 100%;
}

html {
    scroll-behavior: smooth;
}

/*-------------------------------------
PCレイアウト(768px以上スクリーン)
-------------------------------------*/
/* body全体の初期スタイル調整 */
body {
    font-size: 62.5%;
    font-family: var(--font-family);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
    color: var(--font-color);
}

/* リンク文字の設定 */
a {
    text-decoration: underline;
}

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

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

/* ブラウザのCSSをリセット */
p {
    margin: 0 !important;
    padding: 0 !important;
}

section {
    clear: both;
    overflow: auto;
}

img {
    width: 100%;
}

.btn {
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

/*-------------------------------------
全体レイアウト/背景設定(PC)
-------------------------------------*/
/* 全体エリア(全体背景を設定するにはここ) */
.main {
    background: #fff;
    margin-top: 100px;
}

.top_image_in {
    width: var(--display-width);
    margin: 0 auto;
}

/* 記事(ボディ)エリア */
.section {
    font-size: var(--pc-font-size);
    width: 100%;
    max-width: var(--display-width);
    margin: 0 auto;
}

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

/*-------------------------------------
見出しタグ設定(PC)
-------------------------------------*/
h2 {
    margin: 0;
    font-size: 3.5rem;
    font-family: 'Hiragino Kaku Gothic StdN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', sans-serif;
    font-weight: 700 !important;
}

h3 {
    margin: 0.5em 0em;
    padding: 0.3em 0.6em;
    font-size: 1.6em;
}

h4 {
    margin: 0.5em 0em;
    padding: 0.3em 0.6em;
    font-size: 1.4em;
    border: 1px solid #000;
}

h5 {
    margin: 0.5em 0em;
    padding: 0.1em;
    font-size: 1.2em;
    border-bottom: 1px solid #ccc;
}

h1,
h2,
h3,
h4,
h5,
th,
strong,
b,
a {
    font-weight: 600;
}

.content_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* align-items: center;
  justify-content: center; */
}

.column_1 {
    flex: 1;
}

.column_2 {
    flex: 2;
}

.column_3 {
    flex: 3;
}

.column_4 {
    flex: 4;
}

.box-blue {
    padding: 2px;
    background-color: #A6CAFF !important;
}

.bold-orange {
    color: var(--color-orange);
    font-weight: 600;
}

.font-orange {
    color: var(--color-orange);
}

.cate_title_logo {
    width: 20%;
    padding-bottom: 20px;
}

/*-------------------------------------
上部固定ヘッダー設定
-------------------------------------*/
/* 上部固定ヘッダー全体 */
.header {
    position: fixed;
    top: 0;
    z-index: 5000;
    overflow: auto;
    padding: 0.5rem 1rem;
    margin: 0 auto;
    background-color: white;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
}

/* ヘッダー部分をカラム幅にする */
.header_inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--display-width);
    margin: 0 auto;
    overflow: hidden;
}

/* ヘッダーのロゴ */
.header_logo {
    width: 15%;
    margin: 0;
}

.header_btn {
    width: 37%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    ;
}

.line_btn {
    padding-left: 15px;
}

.line_btn {}

a[href*="tel:"] {
    pointer-events: none;
}


.header_cta {
    width: 25%;
    float: right;
}


.header_logo img {
    width: 100%;
}

/*-------------------------------------
ハンバーガーメニューnew
-------------------------------------*/
.hamburger {
    margin: 0 auto;
    width: 100%;
    max-width: var(--display-width);
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger_btn {
    display: none;
    position: absolute;
    right: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
    top: 14px;
}

.hamburger__line:nth-of-type(2) {
    top: 23px;
}

.hamburger__line:nth-of-type(3) {
    top: 32px;
}

.hamburger_btn.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.hamburger_btn.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
}

.hamburger_btn.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav_menu {
    /* width: 50%; */
    /* padding: 0 3rem; */
}

.nav_menu .menu_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    font-size: 14px;
    padding: 1rem 0 0.5rem 0;
}

.nav_menu .menu_list li {
    padding: 0 1rem;
    border-right: #a2a2a2 1px solid;
}

.nav_menu .menu_list li:first-child {
    border-left: #a2a2a2 1px solid;
}

.nav_menu .menu_list a {
    font-weight: 600;
    margin: 0 auto;
    padding: 0 10px;
    color: #333;
    text-decoration: none;
}

.nav_menu .menu_list a:hover,
.nav_menu .menu_list a.active {
    color: var(--color-main-light-blue);
}

/*-------------------------------------
FV
-------------------------------------*/
.top_image {
    background-color: transparent;
    background-image: url("https://suidou-life.com/blog/wp-content/themes/suido_life/images/main/top_image_front_bg.jpg");
    /* background: var(--background-color); */
    /* background-repeat: no-repeat; */
    background-position: top center;
    height: auto;
}

.top_image_in {
    position: relative;
}

.top_image_in img {
    width: 100%;
}

.title-box {
    display: inline-block;
    transform: rotate(-4deg);
    position: absolute;
    top: 25%;
    left: 3vw;
    font-size: 52px
}


.title-box div {
    display: inline-block;
    text-align: left;
    background: var(--gradient-color);
    color: #fff;
    font-weight: 700;
    padding: 0px 5px;

}

/*-------------------------------------
対応エリア
-------------------------------------*/
.article_service_area {
    background: var(--bg-color-gray)
}

.area_service_area {
    padding: 40px var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}


div.area_service_area__title {
    display: flex;
    width: var(--pc-title-width);
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
}

div.area_service_area__title img {
    width: 3.5rem;
    height: inherit;
}

p.area_service_area_txt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.area_service_area_prefectures {
    margin: 0 60px;
}

.area_service_area_prefectures_item {
    text-align: center;
    margin-bottom: 20px;
}

.area_service_area_prefectures_item:last-child {
    margin-bottom: 0;
}

/*-------------------------------------
CTA
-------------------------------------*/
.article_cta {
    padding: var(--pc-padding-top) var(--pc-padding-x) 75px var(--pc-padding-x);
    background-color: var(--bg-color-blue);
    background-image: url("https://suidou-life.com/blog/wp-content/themes/suido_life/images/main/cta_bg.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    height: auto;
}

.area_cta {
    background: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 30px 20px;
    filter: drop-shadow(0 0 20px rgba(87, 87, 87, 0.1));
}

.area_cta_inr {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    gap: 20px;
}

.area_cta__title {
    width: 70%;
    margin: 0 auto;
}

.fixed_cta {
    display: none;
}

.contact_btn_area {
    justify-content: center;
}

.contact_btn {
    width: 50%;
}

.area_cta_3points {
    display: flex;
    gap: 5px;
    align-items: stretch;
    padding: 5px 0;
}

.area_cta_3points p {
    color: var(--color-main-blue);
    font-size: 0.7rem;
    flex: 1;
    border: 1.5px solid var(--color-main-blue);
    padding: 5px 20px !important;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area_cta_bold {
    font-weight: bold;
    font-size: 1rem;
}

/*-------------------------------------
ご注意ください！
-------------------------------------*/
.article_caution {
    background-color: #d8c5e0;
}

.area_caution {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_caution__title {
    width: var(--pc-content-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
}

.area_caution__body {
    width: var(--pc-content-width);
    margin: 0 auto;
}

.notice-box {
    background: #fff;
    padding: 30px 50px;
    position: relative;
    text-align: center;
}

.notice-box p {
    font-size: 1rem;
    font-weight: 500;
}

.notice-box .dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #8a47a3;
    border-radius: 50%;
}

/* 位置指定 */
.notice-box .top-left {
    top: 10px;
    left: 10px;
}

.notice-box .top-right {
    top: 10px;
    right: 10px;
}

.notice-box .bottom-left {
    bottom: 10px;
    left: 10px;
}

.notice-box .bottom-right {
    bottom: 10px;
    right: 10px;
}

.notice-lead {
    font-size: 1rem;
}

.purple {
    color: #7b4ca0;
}

.orange {
    color: #f26746;
}

.bold {
    font-weight: 700;
    font-size: 1.2rem;
}

.underline {
    text-decoration: underline;
}

.trouble-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
}

.trouble-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #333;
}

.trouble-section h2 .highlight {
    color: #222;
    background: linear-gradient(transparent 70%, #ffe066 70%);
}

.trouble-section .lead {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #e60073;
    margin-bottom: 20px;
}

.trouble-section .warning {
    text-align: center;
    background-color: #f46a8b;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.trouble-box {
    display: flex;
    background-color: var(--bg-color-gray);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 20px auto;
    width: 90%;

}

.trouble-title {
    background-color: var(--color-main-blue);
    color: #fff;
    font-weight: 700;
    padding: 20px;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trouble-list {
    list-style: none;
    margin: 0;
    padding: 10px 10px 10px 20px;
    text-align: left;
}

.trouble-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 1.2em;
}

.trouble-list li:last-child {
    margin-bottom: 0;
}

.trouble-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 13%;
    color: var(--color-main-blue);
    font-weight: bold;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .trouble-box {
        flex-direction: column;
    }

    .trouble-title,
    .trouble-list {
        width: 100%;
    }

    .trouble-title {
        padding: 15px;
    }
}

/*-------------------------------------
価格
-------------------------------------*/
.article_prices {
    background-color: var(--bg-color-gray);
}

.area_prices {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_prices__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

h3.area_prices__body_title {
    padding: 0;
}

.checklist {
    font-weight: bold;
}

.checklist_item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}

.checklist_item:last-child {
    margin-bottom: 0;
}

.checklist_item img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.checklist_item p {
    margin: 0;
}

.area_prices__wrap {
    display: block;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.area_prices__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(87, 87, 87, 0.1));
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.price_title {
    color: var(--color-main-blue);
    border-bottom: 2px solid var(--color-main-blue);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 1.4rem;
}

.price_title_cate {
    background: var(--color-main-blue);
    font-size: 2.2rem;
    color: #fff;
    padding: 4px 6px;
    border-radius: 5px;
    margin-right: 5px;
}

a.toilet_btn {
    padding: 8px 16px;
    background: #fff;
    border: 2px solid var(--color-main-light-blue);
    color: var(--color-main-light-blue);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    float: right;
}

.price_txt_area {
    text-align: center;
    font-weight: 700;
    margin-top: 25px
}

.price_txt_content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price_txt_label {
    font-size: 1rem;
    color: #fff;
    background-color: var(--color-main-light-blue);
    border-radius: 5px;
    padding: 6px 12px;
    margin-right: 10px;
}

.price_txt {
    font-size: 1.7rem;
    color: var(--color-orange);
}

.price_txt_en {
    font-size: 1rem;
    margin-right: 5px;
}

/*-------------------------------------
4つの特徴
-------------------------------------*/
.area_features {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_features__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
    color: var(--color-main-blue);
}

.title_small {
    font-size: 2.5rem;
}

.area_features__title_inr img {
    width: 20%;
}

.area_features__title_inr {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: baseline;
    gap: 10px;
}

.features__wrap {
    display: block;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.features__content {
    display: block;
    flex: 1;
    background: #fff;
    margin-bottom: 90px;
    padding: 20px 30px;
    border-radius: 50px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(87, 87, 87, 0.1));
}

.features_content .content_layout {
    padding-bottom: 40px;
}

.features_content .content_layout:last-child {
    padding-bottom: 0;
}

.features_content_title {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 1.5rem;
}

.features_content_title img {
    width: 15%;
}

.features__content_img {
    margin: 0 auto;
    padding-bottom: 10px;
    width: 130px;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.features__content_txt {
    text-align: left;
}

.features__content_txt_title {
    line-height: 1.5em;
    font-size: 22px;
    font-weight: 700;
    color: #1222ff;
    line-height: normal;
    margin: 60px 0 10px 0 !important;
    text-align: center;
}

.features__content_txt_title img {
    width: 30%;
}

.sec-feature01--txt span {
    display: block;
    font-size: var(--pc-font-size);
    color: var(--font-color);
}

/*-------------------------------------
お客様の声
-------------------------------------*/
.article_voices {
    background-color: #ffe3df;
}

.area_voices {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_voices__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

.area_voices__body {
    /* width: var(--pc-content-width); */
    margin: 0 auto;
}

.area_voices .row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.area_voices .row img {
    width: 40%;
}

.voice-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #fff;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.voice-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.voice-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    background: var(--bg-color-blue);
    color: #4a4a4a;
    margin-bottom: 12px;
}

.voice-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.voice-content {
    margin-top: 10px;
    along-items: center;
}

.voice-text {
    font-size: 14px;
    color: #555;
}

.voice_row_area:first-child {
    margin-bottom: 20px;
}

/*-------------------------------------
サービスの流れ
-------------------------------------*/
.article_flows {
    background-color: var(--bg-color-gray);
}

.area_flows {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_flows__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

.area_flows__body figure.column_1 {
    margin: 0;
}

.area_flows__body_title {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-main-blue);
}


.area_flows__body ol {
    justify-content: space-between;
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-around;
    display: block;
    padding: 0;
}

.area_flows__body ol li {
    display: flex;
    padding-bottom: 20px;
    gap: 20px;
    align-items: center;
}

.sec-flow-list-img-area {
    flex: 1
}

.flow01_line {
    margin-top: 10px;
}

.flow01_line summary {
    display: block;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid #06c755;
    color: #06c755;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    transition: background-color 0.3s, box-shadow 0.3s;
    list-style: none;
    width: 50%;
}

.area_flows__body .flow01_line ul li {
    display: list-item;
    list-style-type: circle !important;
    color: var(--font-color);
    padding-bottom: 5px;
}


.flow01_line summary:hover {
    background-color: #06c755;
    border: 2px solid #06c755;
    color: #fff;
}

.flow01_line summary::after {
    content: "＋";
    position: absolute;
    right: 16px;
    font-size: 18px;
    transition: transform 0.3s;
}

/* 開いたときに矢印を変化 */
.flow01_line[open] summary::after {
    content: "－";
    transform: rotate(180deg);
}

/* コンテンツ部分 */
.flow01_line>div {
    background: var(--bg-color-gray);
    border: 1px solid #e5e5e5;
    border-radius: 0 0 6px 6px;
    padding: 16px;
    margin-top: 4px;
}

/*-------------------------------------
よくある質問
-------------------------------------*/

.article_faq {
    background-color: var(--bg-color-gray);
}

.area_faq {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_faq__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

.area_faq__body {
    margin: 0 auto;
}

.area_faq .area_faq__body {
    margin: 0 auto;
    max-width: 800px;
}

.faq_section {
    width: var(--pc-content-width);
    margin: 0 auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-main-blue);
    padding: 20px 0;
}

.faq-q {
    font-weight: 600;
}

.faq-q,
.faq-a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.faq-q img {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
}

.faq-a img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.faq-q p,
.faq-a p {
    margin: 0;
}

img.credit_card {
    width: 50%;
    height: auto;
}

/*-------------------------------------
代表メッセージ
-------------------------------------*/
.area_last_message {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_last_message__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

h3.area_last_message__body_title {
    padding: 0;
}

.area_last_message__body .content_layout {
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.message_name {
    width: 30%;
    float: right;
    padding-top: 20px;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.article_contact {}

.area_contact {
    padding: var(--pc-padding-top) var(--pc-padding-x) var(--pc-padding-bottom) var(--pc-padding-x);
}

div.area_contact__title {
    width: var(--pc-title-width);
    margin: 0 auto;
    padding-bottom: var(--pc-title-padding-bottom);
    text-align: center;
}

.area_contact__body {
    width: var(--pc-content-width);
    margin: 0 auto;
}

#contact::before {
    content: "";
    display: block;
    height: 80px;
    margin-top: -80px;
}

/*-------------------------------------
フッター
-------------------------------------*/
.footer {
    background: var(--color-main-blue);
    padding: 2em 0em;
    text-align: center;
    font-size: var(--pc-font-size);
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: normal;
}