/* --- ヘッダーとカルーセル --- */
@import url('[WebフォントサービスのCSSパス]');


main {
    background-color: #FFFF;
}

/* カルーセルコンテナ */
.image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* スライドを隠す */
    z-index: 1;
}

/* 各スライド (画像) */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    /* フェード切り替え */
    background-size: cover;
    background-position: center;
}

/* 5枚の画像を設定する例 */
.image-carousel .slide:nth-child(1) {
    background-image: url('../img/main_visual_1.png');
    opacity: 1;
    /* 初期表示 */
}

.image-carousel .slide:nth-child(2) {
    background-image: url('../img/main_visual_2.png');
}

.image-carousel .slide:nth-child(3) {
    background-image: url('../img/main_visual_3.png');
}

.image-carousel .slide:nth-child(4) {
    background-image: url('../img/main_visual_4.png');
}

.image-carousel .slide:nth-child(5) {
    background-image: url('../img/main_visual_5.png');
}

.slide.active {
    opacity: 1;
    /* アクティブなスライドを表示 */
}




/* --- メインコンテンツ --- */
main {
    padding-top: 0;
    /* sticky-navと重ならないように調整 */
}

.content-section {
    min-height: 800px;
    /* スクロールできるように十分に高さを確保 */
    padding: 40px;
}

/* logo-area の追加/修正 */
.logo-area {
    text-align: center;

    /* ロゴ（キャッチフレーズ）が画面の中央に来るようにする */
    /* Flexアイテムとして、ナビゲーションメニューとは独立して中央配置されるよう、
       margin-rightをautoにし、ナビゲーションが右端に寄るように調整します。 */
    /* もしくは、以下の方法で「ロゴ」のみを中央に配置し、「ナビゲーション」は右上に固定します。 */

    position: absolute;
    /* 絶対配置に変更 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 要素の幅・高さを考慮して完全に中央に配置 */
}

/* --- カルーセル下端に固定する画像 --- */
.bottom-image-container {
    position: absolute;
    /* 親要素(.main-header)に対して絶対配置 */
    bottom: 0;
    /* ヘッダーの下端に貼り付ける */
    left: 0;
    width: 100%;
    z-index: 130;
    /* 波のSVG(z-index: 50)より下、カルーセル(z-index: 1)より上 */
    text-align: center;
    /* 画像を中央に配置する場合 */
}

.carousel-bottom-image {
    display: block;
    width: 100%;
    /* 幅を調整してください */
    height: auto;
    margin-bottom: -3%;
    /* 画像を中央揃え */
    z-index: -5;
}

.about_hb {
    background-color: #76FCFF;
    overflow: hidden;
}

.sun {
    padding-top: 5%;
}

.sun img {
    width: 200px;
}

.section-title img {
    width: 30vw;
}

.about-text p {
    color: #441708;
    font-weight: 500;
    font-size: 23px;
}


/* 1. 横並びのコンテナ設定 */
.car_4 {
    /* 💡 Flexboxで画像を横一列に並べる */
    display: flex;
    /* 💡 overflow: hidden; で流れるコンテンツが枠外に出ても隠す（ここではアニメーションのために一旦省略） */
    /* width: 100%; */

    /* 💡 アニメーションの始点と終点を定義する要素として幅を拡張 */
    /* ここでは、画像を複製して「無限」に見せるため、コンテンツの合計幅を設定します */
    width: 100%;
    /* 画像を複製しない場合は100%ですが、流すために幅を広く取ります */

    /* 💡 アニメーションの適用 */
    animation: slide-flow 60s linear infinite;
    /* 60秒かけて、線形に、無限に繰り返す */
}

/* 2. 各画像の設定 */
.car {
    /* 💡 画像が縮小しないように設定 */
    flex-shrink: 0;
    /* 💡 各要素の幅を均等に設定 (ここでは4枚なので25%) */
    width: 25%;
    padding: 50px 0;
    /* 必要に応じて画像間の余白を設定 */
}

.car img {
    display: block;
    width: 80%;
    height: auto;
    margin-top: 50px;
}

/* 3. アニメーションの定義 */
@keyframes slide-flow {

    /* 0% (開始): 要素は通常の左端の位置 */
    0% {
        transform: translateX(0);
    }

    /* 100% (終了): 要素全体を左に移動 (幅の半分、つまり100%) */
    100% {
        transform: translateX(-50%);
        /* 200%の幅に対して、100%分左に移動 */
    }
}

.bk_car_1 img {
    width: 250px;
    transform: translateX(-100%);
}

.bk_car_1 {
    position: absolute;
    width: 100%;
    margin-top: 50px;
    
}

.bk_car_2 {
    position: absolute;
    margin-left: 65%;
    margin-top: -11%;
}

.under_wave img {
    width: 100%;
    margin-top: -3%;
}

.wagamama_bn {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 60%;
}

/* 💡 修正: クラスを<a>タグに移動したため、直接指定します */
.wagamama_bn {
    display: block;
    /* <a>タグはデフォルトでインライン要素なのでブロック化 */
    text-align: center;
    margin: 50px auto;
    /* 上下50px、左右autoで中央揃え */

    /* 💡 追加: 拡大アニメーションをスムーズにする */
    transition: transform 0.3s ease-in-out;
}

/* 💡 修正: ホバー時のスタイルを適用 */
.wagamama_bn:hover {
    /* リンク全体を1.1倍（110%）に拡大 */
    transform: scale(1.1);

    /* ホバー時に手前に浮き出るようにするための設定（オプション） */
    z-index: 10;
    position: relative;
}

/* 💡 imgタグの幅は親要素(a.wagamama_bn)に合わせる */
.wagamama_bn img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.car_sale_img img {
    width: 50%;
    padding-top: 80px;
}

.car_sale_img {
    padding-top: 100px;
}

.car_sale {
    background-image: url(../img/car_sales_bk.png), linear-gradient(0deg, rgba(179, 221, 244, 1) 0%, rgba(255, 255, 255, 1) 66%);
    background-size: cover;
    z-index: 5;
    padding-bottom: 20%;
    /* 手前に配置 (次のセクションより大きく) */
}

.sales_wrapper {
    margin: 0 auto;
    position: relative;
}

.sales_wrapper .title_logo {
    margin-top: -80px;
}

.sales_wrapper .title_logo img {
    width: 25vw;
}

.car_sales_text {
    background-color: white;
    /* 💡 枠線のスタイル: 黒の実線 */
    border: 3px solid black;
    border-top-right-radius: 40px;
    /* 画像の丸みに合わせて値を大きめに設定 */
    box-shadow: 0 4px 0 4px rgb(0, 0, 0);
    width: 500px;
    padding: 50px 40px;
    margin: 50 auto;
}

.car_sales_text .br-sp {
    display: none;
}

.sales_car img {
    width: 400px;
    position: absolute;
    transform: translate(-550px, -80px);
}




.kotira_btn {
    display: inline-block;
    /* <a>タグはインライン要素なので、ブロック要素のように振る舞わせる */
    text-decoration: none;
    /* 下線を削除 */

    /* 位置調整 */
    margin-top: 130px;
    /* 画像の移動をスムーズに0.2秒かける */
    margin-bottom: 50px;
}

.kotira_btn img {
    display: block;
    /* 画像の余分な下余白を消す */
    width: 15vw;
    /* 画像の元のサイズに合わせて調整 */
    height: auto;
    border-radius: 50px;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 1);
    transition: box-shadow 0.2s ease;
}

.kotira_btn:hover {
    /* 💡 ホバー時に少し右下へ移動させ、押し込まれたように見せる */
    transform: translate(6px, 6px);
    /* 右に5px、下に5px移動 */
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
}

.kotira_btn:hover img {
    /* 💡 子要素(imgタグ)の影をホバー時にゼロにする */
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 1);
}

.stock_list_title {
    margin-bottom: 100px;
}

.stock_list_title .title_logo img {
    width: 25vw;
}

.stock_list_title .title_logo {
    position: absolute;
    width: 100%;
    margin-bottom: 50px;
    margin: 0 auto;
    margin-top: 100px;
}

.flower_img img {
    margin-top: 5%;
    margin-left: 30%;
    width: 10vw;
}


.review_title .title_logo {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.review_title .title_logo img {
    width: 20vw;
}

.review_title {
    padding-top: 70px;
    padding-bottom: 100px;
}

.flower_review_img {
    width: 125vw;
    position: relative;
}

.flower_review_img img {
    width: 10vw;
}

.review_service_text {
    background-color: white;
    /* 💡 枠線のスタイル: 黒の実線 */
    border: 3px solid black;
    border-top-left-radius: 40px;
    /* 画像の丸みに合わせて値を大きめに設定 */
    box-shadow: 0 3px 0 3px rgb(0, 0, 0);
    width: 500px;
    padding: 50px 40px;
    margin: 0 auto;
    position: relative;
    margin-top: 40px;
}

.review_wrapper .kotira_btn {
    margin-top: 40px;
}


.car_review-car_service {
    background: linear-gradient(0deg, rgba(233, 94, 27, 1) 0%, rgba(179, 221, 244, 1) 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
    margin-top: -400px;
    padding-bottom: 100px;

    /* 💡 負のマージンを大きく設定して、前のセクションに潜り込ませる */
    margin-top: -10px;
    /* 調整が必要です */

    position: relative;
    z-index: 1;
    /* car_sale (z-index: 2) より奥に配置 */
}

.review_wrapper {
    display: flex;
    justify-content: center;
}

/* CSSファイルの末尾などに追加 */
@keyframes soft-sway {
    0% {
        /* 初期位置 */
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        /* 右上へわずかに移動し、傾ける */
        transform: translate(2px, -2px) rotate(0.2deg);
    }

    66% {
        /* 左下へわずかに移動し、傾ける */
        transform: translate(-2px, 2px) rotate(-0.2deg);
    }

    100% {
        /* 初期位置へ戻る */
        transform: translate(0, 0) rotate(0deg);
    }
}

.review_service_text .br-sp {
    display: none;
}

.review_content_2 img {
    width: 80%;
}

.review_content_2 {
    margin-top: 70px;
    animation: soft-sway 6s ease-in-out infinite alternate;
    width: 20vw;
}

.review_content_2 li {
    list-style: none;
}

.review_content_2 li:nth-child(2) {
    /* 💡 左マージンを設定し、右に押し出す */
    margin-left: 60px;
    /* この値（50px）を増やすことで、右への移動量が大きくなります */

    /* 必要に応じて、要素を移動させる場合は transform: translateX() を使用します */
    /* transform: translateX(30px); */
}

.service_img img {
    width: 80%;
    margin-left: -30%;
}

.service_title .title_logo {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.service_title .title_logo img {
    width: 20vw;
}

.flower_service_img {
    width: 10vw;
    margin-left: 30%;
}

.service_title {
    margin-top: 50px;
    padding-bottom: 150px;
}


.service_content_1 li {
    list-style: none;
    margin-right: 30px;
}

.service_content_1 {
    margin-top: 70px;
    animation: soft-sway 6s ease-in-out infinite alternate;
    width: 20vw;
}

.service_wrapper .kotira_btn {
    margin-top: 40px;
}

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

.service_content_1 img {
    width: 80%;
}

.service_content_1 li:nth-child(even) {
    margin-left: -60px;
    width: 80%;
}

.contact-section {
    background-repeat: no-repeat;
    height: auto;
    position: relative;
    margin-top: -300px;
    padding: 350px 0 50px 0;

    overflow: hidden;
    text-align: center;
    z-index: 0;
}

    .contact-section .title_logo img{
    width: 20vw;
    }

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.697), rgba(255, 255, 255, 0.615)),
        url(../img/contact_bk.png);
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
    z-index: 1;
}


/* contact-wrapper が背景より手前に来ることを確認 */
.contact-wrapper {
    position: relative;
    z-index: 5;
    /* 背景 (z-index: 1) より手前に配置 */
    /* ... 既存のスタイル ... */
}

/* 2. Contact タイトル */
.contact-title {
    margin-bottom: 30px;
}

.info-box table {
    width: 30%;
    font-size: 1.5rem;
    color: #333;
    margin: 0 auto;
    border-collapse: collapse
}

.info-box th,
.info-box td {

    text-align: left;
    margin-top: 3px;
        color: #4C3421;
}


.info-box tr {
    margin-top: 5px;
    margin-bottom: 5px;
}

.info-box {
    margin: 70px 0;
}

.info-box th {
    font-weight: normal;
    /* 太字を解除 */
    color: #4C3421;
    text-align: left;
    width: 40%;
}

.info-box tr:not(:last-child) {
    /* 💡 各行の下に区切り線 */

    border-bottom: 1px solid #4C3421;
    border-right: 1px solid #4C3421;
}

.address {
    font-weight: 300;
    font-size: 1.1rem;
    margin: 0;
    /* 1. 中央揃えを解除し、左に寄せる */
    text-align: left;

    /* 2. 地図コンテナの幅と位置に合わせるための設定 */
    width: 900px;
    /* 地図の幅に合わせる */
    max-width: 100%;
    /* レスポンシブ対応 */
    margin-left: auto;
    /* 左右autoで、幅を持つ要素を中央に配置し、 */
    margin-right: auto;
    /* text-align: leftで左揃えにする */
}

/* Google Mapエリアの修正 */
/* Google Mapエリアの修正 */
.map-area {
    width: 100%;
    /* 親要素の幅を確保 */
    margin: 100px auto;
    /* 上下に余白、左右をautoで中央揃え */
    text-align: center;
    /* 子要素（pタグなど）を中央揃え */
}

.google-map {
    /* 💡 追加: Google Mapを格納するコンテナの幅を定義 */
    width: 900px;
    /* iframeのwidthに合わせるか、max-widthを設定 */
    max-width: 100%;
    /* 画面幅が狭い場合は縮小 */
    margin: 0 auto;
    /* 左右マージンをautoにして中央揃え */
}

.google-map iframe {
    /* 💡 追加: iframeのdisplayをブロック要素に変更 */
    display: block;
    /* 💡 必要に応じて幅を100%に */
    width: 100%;
    height: 350px;
}

.map-header {
    /* 地図(.google-map)と同じ幅で中央揃えにする */
    width: 900px;
    max-width: 90%;
    margin: 0 auto;

    /* Flexboxで住所とリンクを左右に振り分ける */
    display: flex;
    justify-content: space-between;
    /* 左右に最大間隔をあける */
    align-items: center;
    /* 垂直方向中央揃え */
    margin-bottom: 15px;
    /* 地図との間にスペース */
}

/* 💡 新規追加: Google Mapリンクのスタイル */
.map-link {
    font-size: 0.9rem;
    color: #4C3421;
    /* テキストの色を調整してください */
    text-decoration: none;
    white-space: nowrap;
    /* 折り返しを防ぐ */
    transition: opacity 0.2s;
    display: inline-block;
    /* borderとpaddingを適用するために必要 */
    padding: 8px 15px;
    /* 内側の余白 (上下8px, 左右15px) */
    border: 2px solid #4C3421;
    /* 2pxの太さで、#4C3421色の実線 */
    border-radius: 5px;
    /* 角を少し丸くする (お好みで調整) */
}

.map-link:hover {
    opacity: 0.7;
    background-color: rgba(76, 52, 33, 0.1);
}

@media (min-width: 482px) and (max-width: 1024px) {


    .about_textbox {
        margin-top: 80px;
        margin-bottom: 30%;
    }

    .section-title img {
        width: 75vw;
    }

    .about_textbox p {
        font-size: 15px;
    }

    .bk_car_1 img {
        width: 200px;
    }

    .bk_car_1 {
        margin-top: 5%;
        margin-left: 5%;
        width: 100%;
    }

    .bk_car_2 img {
        width: 35vw;
    }

    .bk_car_2 {
        margin-left: 60%;
        margin-top: -38%;
    }

    .car {
        padding-top: 0px;
        margin-top: -10%;
    }

    .wagamama_bn img {
        width: 100%;
    }

    .wagamama_bn {
        margin: 30px auto;
    }

    .car_sale_img {
        padding-top: 50px;
    }

    .car_sale_img img {
        width: 80vw;
    }

    .sales_wrapper .title_logo img {
        width: 40vw;
    }

    .car_sales_text{
        width: 70%;
    }

    
    .car_sales_text p{
       font-size: 15px;
    }

        .car_sales_text p br{
       display: none;
    }

            .car_sales_text p .br-sp{
       display: inline-block;
    }



    .sales_car img {
        transform: translate(-10px, -80px);
            width: 50%;
    }

    .kotira_btn img {
        width: 40vw;
    }

    .stock_list_title {
        margin-bottom: 50px;
    }

    .stock_list_title .title_logo img {
        width: 40vw;
    }

    .flower_img img {
        width: 20vw;
        margin-top: 14%;
        margin-left: 47%;
    }

    .review_service_text{
        font-size: 15px;
    }

    .review_title {
        padding-bottom: 100px;
    }

    .review_title .title_logo img {
        width: 35vw;
    }

    .flower_review_img img {
        width: 20vw;
        margin-left: 20%;
    }

    .review_wrapper {
        flex-direction: column-reverse;
    }

    .review_content_2 {
        /* 既存のレイアウトを保持しつつ、位置調整用のスタイルを調整 */
        display: flex;
        /* 横並びにする */
        justify-content: center;
        /* 水平方向を中央揃え */
        align-items: flex-end;
        /* 垂直方向は下揃え (元の service_content_1 に合わせて統一) */
        margin: 0 auto;
        /* 親要素を中央に配置 */
    }

    .review_content_2 {
        width: 100vw;
    }

    .review_content_2 img {
        width: 100%;
    }

    .service_img img {
        width: 100%;
    }

    .service_title .flower_img img {
        width: 25%;
        margin-left: -50%;
    }

    .service_title{
        padding-bottom: 50px;
    }

    .service_wrapper {
        flex-direction: column;
    }

    .service_title .title_logo img {
        width: 35vw;
    }

    .service_content_1 {
        /* review_content_2 と全く同じレイアウトに統一 */
        display: flex;
        /* 横並びにする */
        justify-content: center;
        /* 水平方向を中央揃え */
        align-items: flex-end;
        /* 垂直方向は下揃え */
        margin: 0 auto;
        /* 親要素を中央に配置 */
    }

    .car_review-car_service p{
        font-size: 15px;
    }

        .car_review-car_service p br{
        display:  none;
    }

            .car_review-car_service p .br-sp{
        display: inline-block;
    }

    .car_review-car_service {
        clip-path: polygon(0 0, 100% 0%, 100% 94%, 0% 100%);
    }

    /* 💡 画像のリストアイテム li のスタイルを統一 */
    .review_content_2 li,
    .service_content_1 li {
        list-style: none;
        margin: 0 10px;
        /* 統一した画像間の間隔を設定（必要に応じて調整） */
        width: 40%;
        /* 2枚の画像を並べる際の幅を調整 */
        max-width: 300px;
        /* 最大幅を設定してPC表示で大きくなりすぎないように制御 */
    }

    /* 💡 レビューの2枚目の画像に設定されていたマージンをリセット */
    .review_content_2 li:nth-child(2) {
        margin-left: 10px;
        /* 統一した画像間の間隔にリセット */
    }

    .review_service_text p{
        font-size: 15px;
    }

    
    .review_service_text p br{
        display: none;
    }

    /* 💡 サービスの2枚目の画像に設定されていたマージンをリセット */
    .service_content_1 li:nth-child(even) {
        margin-left: 10px;
        /* 統一した画像間の間隔にリセット */
        width: 40%;
        /* 統一 */
    }

    .flower_service_img {
        margin-left: 15%;
    }

        .flower_service_img img{
            width: 20vw;
        }

    /* 💡 li内の img のスタイルを統一 */
    .review_content_2 img,
    .service_content_1 img {
        width: 100%;
        /* liの幅いっぱいに広げる */
        height: auto;
        display: block;
    }

        .service_content_1{
            width: 100vw;
        }

    .info-box table {
        width: 50vw;
    }

        .contact-section .title_logo img {
        width: 35vw;

}
}

@media screen and (max-width: 481px) {
    .section-title img {
        width: 80%;
    }

    .sun img {
        width: 30%;
    }

    .about_hb {
        padding-top: 50px;
    }

    .bk_car_1 img {
        width: 120px;
        transform: translate(-90%, -30%);
    }

    .bk_car_1 {
        margin-top: 0;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.8rem;
        width: 80%;
    }

    .br-sp {
        display: inline-block;
    }

    .bk_car_2 img {
        width: 150px;
    }

    .bk_car_2 {
        margin-top: -5%;
        margin-left: 55%;
    }

    .car img {
        margin-top: 50px;
        margin-bottom: 0px;
        padding: 10px 0;
    }

    .car_sales_text .br-sp {
        display: inline-block;
    }

    .car_sales_text p br {
        display: none;
    }

    .car_sales_text {
        width: 65%;
        margin: 30 auto;
    }

    .car_sales_text p {
        line-height: 1.8rem;
        font-size: 13px;
    }

    .wagamama_bn {
        width: 100%;
    }

    .car_sale {
        padding-bottom: 20%;
        background-image: url(../img/car_sales_bk_sp.png),linear-gradient(0deg, rgba(179, 221, 244, 1) 0%, rgba(255, 255, 255, 1) 66%);;
    }

    .car_sale_img img {
        width: 95%;
        padding-top: 40px;
    }

    .sales_wrapper .title_logo img {
        width: 70%;
        margin-top: 40px;
    }

    .sales_car img {
        width: 300px;
        transform: translate(-150px, -30px);
    }

    .sales_wrapper .kotira_btn {
        margin-top: 150px;
    }

    .kotira_btn img{
        width: 50vw;
    }

    .stock_list_title .title_logo img {
        width: 70%;
        margin-top: 40px;
    }

    .stock_list_title .title_logo {
        margin-top: 0;
    }
    .flower_img img {
    margin-top: 5%;
    margin-left: 55%;
    width: 30vw;}



.review_title{
    padding-bottom: 50px;
}

.review_title .title_logo img {
    width: 60%;
}
.flower_review_img img {
    width: 30vw;
    margin-left: 30%;
}

    .flower_img img {
        width: 30%;
        margin-top: 15%;
        margin-left: 70%;
    }

    .review_service_text {
        width: 90%;
    }

    .review_wrapper {
        flex-direction: column-reverse;
    }


        .review_service_text{
            width: 70%;
        }
    .review_service_text br {
        display: none;
    }

    .review_service_text .br-sp {
        display: inline-block;
    }

    .review_service_text p {
        font-size: 14px;
        width: 95%;
        line-height: 1.8rem;
    }

    .review_content_2 {
        width: 80%;
        margin: 0 auto;
        margin-top: 50px;
    }

    .service_img img {
        width: 100%;
        margin-left: -20%;
    }
    .service_title{
        padding-bottom: 50px;
    }
    
    .service_title .title_logo img {
    width: 60%;
    }
    .service_title .flower_img img {
        margin-left: -70%;
        width: 25%;
    }

    .flower_service_img img {
    width: 30vw;
}
    .flower_service_img {
    margin-left: 0;
}

    .service_wrapper {
        flex-direction: column;
    }

    .service_content_1 {
        width: 80%;
        margin: 0 auto;
        margin-left: 20%;

    }

    .service_content_1 li {
        margin: 0;
    }

    .car_review-car_service {
        clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
    }

    .info-box table {
        width: 80%;
        font-family: sans-serif;
        font-size: 14px;
    }

    .info-box td {
        width: fit-content;
    }

    .contact-section .title_logo img {
        width: 60%;
    }

    .address {
        font-size: 12px;
    }


}