@charset "UTF-8";

/* PC用 */

/* 基本設定 */
body {
    font-family: "YakuHanJP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: #333;

    /* 左右のワンポイント画像を::afterに移すため、以下を全て削除・コメントアウト */
    background-image: none; /* ← 削除 */
    background-repeat: initial; 
    background-position: initial; 
    background-size: initial;
    background-attachment: initial; 
}

/* ドット背景 */
/* ドット背景 (一番奥に配置) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/kei_bg_road.webp);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    opacity: 0.6;
    /* ★修正: Z-indexを最低値に近い値に設定 */
    z-index: -100; 
}
/*
body::after {
    content: "";
    position: fixed;
    
    /* 1. 画面全体に広げる */
    top: -150px; 
    left: 0;
    width: 100vw; 
    height: 100vh;
    
    /* 2. ドット背景(-100)の上、コンテンツ(0)の奥に配置 */
    z-index: -1; 
    
    background-image: 
        url(/assets/images/kei_body_l.png), 
        url(/assets/images/kei_body_r.png);
    background-repeat: no-repeat, no-repeat;
    
    /* 3. 位置をコンテンツ幅(1000px)基準で固定 */
    background-position: 
        /* 右の画像: 画面中央 + 550px (コンテンツ右端+50px余白) */
        calc(50% + 550px) center, 
        /* 左の画像: 画面中央 - 550px (コンテンツ左端+50px余白) */
        calc(50% - 530px) center;
        
    /* 4. サイズを固定値にする */
    background-size: 350px, 260px; /* 画像のサイズに合わせて調整してください */
}
*/

p, a {
    color: #333; 
}
.container {
    overflow-x: hidden;
}
/*ヘッダー*/

header.global-header{
    max-width: 730px;
    margin: 0 auto;
    background-color: #fff;
    border-top: 5px solid #333;
    border-left: 5px solid #333;
    border-right: 5px solid #333;
}
.global-header .header-area {
    width: 100%;
    margin-top: 12px;
}
.global-header .header-logo-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.global-header .header-logo-area p {
    font-size: 1.1rem;
    text-align: left;
    padding: 12px 20px 0px 8px;
    color: #333;
}
.global-header .header-logo {
    width: 36%;
}
.global-header .header-logo img {
    width: 80%;
    margin-top: 10px;
    margin-left: 15px;
}
@media screen and (min-width: 1401px) {
.container {
    max-width: 730px;
    margin: 0 auto 50px; /* 中央寄せ */
    background-color: #fff; /* コンテンツエリアの背景色 */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); /* コンテンツエリアに影を強調 */
    overflow: visible;
    border-bottom: 5px solid #333;
    border-left: 5px solid #333;
    border-right: 5px solid #333;
    position: relative;
}
.side-point-image img {
    max-width: calc((100vw - 650px) / 2) !important;
}
.side-point-image {
    display: block;
    position: fixed;
    /* containerの右端を基準にする */
/*    left: 50%; */
    right: 0px;
    /* 「配置image.jpg」のように少し重ねたい場合はマイナス値を大きく */
    margin-left: 410px; 
    /* 縦の位置：見出しやメインビジュアルの高さに合わせて調整 */
    top: 110px;     
  width:calc((90vw - 650px) / 2) !important;
/*    width: 450px;
    width: fit-content; */
    z-index: 10;
}
}

.side-point-image img {
    width: 100%;
    height: auto;
    display: block;
}

/*.container::after {
    content: '';
    position: fixed;
    top: -8vw;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/kei_body_l.png), /* 右側のワンポイント画像 */ url(/assets/images/kei_body_r.png);
    background-repeat: no-repeat, no-repeat;
    background-position: calc(50% + 35vw) center, /* 右の位置 */ calc(50% - 35vw) center;
    background-size: 20vw, /* 右のサイズ */ 20vw;
    z-index: -99;
}*/

section {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
h2 {
margin: 0;
    text-align: center;
    /* display: inline-block; */
    font-size: 3rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 1px #333333, -2px 2px 1px #333333, 2px -2px 1px #333333, -2px -2px 1px #333333, 2px 0px 1px #333333, 0px 2px 1px #333333, -2px 0px 1px #333333, 0px -2px 1px #333333;
    font-weight: 900;
    color: #73d7f2;
}

h3 {
    text-align: center;
    font-size: 2.0rem;
    color: #e51373;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 800;
}

.key_point {
    background-color: #333333;
    color: white;
    padding: 20px 15px;
    text-align: center;
}
.key_point p {
    font-weight: bold;
    font-size: 2rem;
    margin: 0;
    line-height: 50px;
    color:#fff
}



/* メインタイトル */
.header_main_title {
    background-color: #fff;
    border-top: 5px solid #333;
    border-bottom: 10px solid #333;
    padding: 20px 0;
    text-align: center;
    background: linear-gradient(315deg, #f0f0f0 25%, #dcdcdc 25%, #dcdcdc 50%, #f0f0f0 50%, #f0f0f0 75%, #dcdcdc 75%) 0% 0% / 20px 20px;
}
.header_main_title h1 {
    font-weight: 900;
    font-size: 2.5rem;
    margin: 0;
    line-height: 55px;
}
/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-visual img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ポイント部分（位置調整は自由に） */
.points {
  position: absolute;
  bottom: 6vw; /* ← 20px → 80px に上げて中央寄せ */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px; /* ← ポイント間の余白を広げる */
  width: 110%;
  max-width: 500px; /* ← 横幅制限（調整可） */
  z-index: 10;
}
/* 各ポイント画像サイズを少し大きく */
.points img {
  width: 120%; /* ← 小さすぎる場合は 100% に */
  max-width: 500px; /* ← デザインによって調整 */
  height: auto;
}

/* --- 初期状態（非表示） --- */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* --- 表示状態（ふわっと） --- */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- 遅延（順番） --- */
.delay1 { transition-delay: 0.3s; }
.delay2 { transition-delay: 0.6s; }
.delay3 { transition-delay: 0.9s; }



/*アップルだから安心*/
h2.benefit_title{
    position: absolute;
    top: -9rem;
    left: 0%;
    right: 0%;
}
h3.benefit_subtitle{
    position: absolute;
    text-align: center;
    font-size: 2.0rem;    
    margin: auto;
    bottom: -25px;
    left: 10%;
    right: 10%;
    font-weight: 800;
    color: #333;
    /*background-color: #edec80;*/
    /*border-radius: 15px;*/
    /*border: 5px solid #333333;*/
    padding-top: 5px;
}
.apple-benefit p.benefit_text{
    position: absolute;
    color: #333;
    border-radius: 5px;
    text-align: justify;
    top: 42px;
    left: 10%;
    right: 10%;
    line-height: 2;
}

/*矢印アニメーション*/
.animation-arrow {
   display: flex;
   justify-content: center; /* これで水平中央に配置 */
   background-color: #1991d1;
   padding-bottom: 20px;
}
.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2s;
  width: 60%;
}
.fadein {
  animation-name: fadeIn;
  animation-direction: normal;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*アップルなら安く軽が買えるポイント*/
.apple-point {
    background: linear-gradient(315deg, #afddf7 25%, #cff0ff 25%, #cff0ff 50%, #afddf7 50%, #afddf7 75%, #cff0ff 75%);
    background-size: 20px 20px;
    padding: 30px 20px 50px; 
    width: auto;
}

/* 要素の配置を上から順に変更 (Absolute解除) */
.apple-point h2.point_otoku {
    position: static; 
    text-align: center;
    margin: 35px auto 20px; 
    top: initial;
    left: initial;
    right: initial;
}

.apple-point .point-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 645px; 
    margin: 20px auto; 
}

.apple-point h3 {
    position: static; 
    text-align: center;
    margin: 15px auto;
    bottom: initial;
    left: initial;
    right: initial;
}

.apple-point p.point_maker_text {
    position: absolute;
    text-align: justify;
    padding: 0 80px;
    margin: 10px auto 30px;
    top: 250px;
    line-height: 2;
}

.text-yellow-marker{
    padding-left: 5px;
    padding-bottom: 3px;
    display: inline;
    box-shadow: inset 0px -12px 0px 0px #fffd75;
    position: relative;
    z-index: 1; 
}

/*ご購入までの流れ*/
h2.flow_title {
    position: absolute;
    top: -310px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}
.apple-flow h3.flow_subtitle {
    position: absolute;
    margin: auto;
    bottom: 55px;
    left: 10%;
    right: 10%;
}
p.flow_text {
    position: absolute;
    text-align: justify;
    left: 5%;
    right: 5%;

}
/*ご購入までの流れ修正*/
/* ---------------------------------------------------- */
/* STEPコンテンツ全体 (apple-flow-step) */
/* ---------------------------------------------------- */
.apple-flow-step-section {
    /* 修正: 背景をグレー系のストライプに変更 */
    background: linear-gradient(315deg, #f0f0f0 25%, #dcdcdc 25%, #dcdcdc 50%, #f0f0f0 50%, #f0f0f0 75%, #dcdcdc 75%) 0% 0% / 20px 20px;
    padding: 60px 0; /* セクション全体に上下のパディング */
    position: relative;
    padding: 215px 0 0;

}

.apple-flow-step {
    text-align: center;
    margin: 60px auto 80px;
    max-width: 630px;
    position: relative;
}

/* ---------------------------------------------------- */
/* STEP番号と半円 (上部タブ) */
/* ---------------------------------------------------- */

.step-number-wrapper {
    position: relative;
    height: 50px;
    z-index: 10; 
}

/* 黒い半円 (上部のタブ) */
.step-number {
    position: absolute;
    top: -15px; /* 調整 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    width: 63px;
    height: 35px;
    /* 修正: 上部が円形、下部が平ら */
    border-radius: 50px 50px 0 0 / 50px 50px 0 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e51373;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 10;
    padding-top: 3px;
}
/* 数字の赤色 */
.step-number > * {
    color: #e51373;
}


/* ---------------------------------------------------- */
/* メインコンテンツボックス（白い吹き出し本体） */
/* ---------------------------------------------------- */

.step-content-box {
    background-color: #ffffff;
    padding: 30px 20px;
    position: relative;
    margin-top: -30px;    
    /* 罫線 8px, 角丸 5px, color #333 (維持) */
    border: 5px solid #333;
    border-radius: 5px;     
    margin-bottom: 30px; 
}


/* --- 下向きのしっぽ（黒いフチ） (維持) --- */
.step-content-box::after {
    content: '';
    position: absolute;
    bottom: -24px; 
    left: 50%;
    transform: translateX(-50%);
    
    border-style: solid;
    border-width: 24px 24px 0 24px;
    border-color: #333 transparent transparent transparent;
    z-index: 5;
}

/* --- 下向きのしっぽ（白い塗りつぶし） (維持) --- */
.step-content-box::before {
    content: '';
    position: absolute;
    bottom: -24px; 
    left: 50%;
    transform: translateX(-50%);
    
    border-style: solid;
    border-width: 24px 24px 0 24px; 
    border-color: #333 transparent transparent transparent;
    z-index: 6; 
}


/* ---------------------------------------------------- */
/* コンテンツ内のテキストスタイル（中央寄せ） (維持) */
/* ---------------------------------------------------- */

h3.step-heading {
    margin: 0 0 10px;
    text-align: center;
}

p.step-text {
    line-height: 1.6;
    margin: 0 50px;
    text-align: justify;
}

/*ご購入までの流れ修正ここまで*/




/*いま乗ってる車、高く売りたい‼*/
.apple-satei .benefit-content {
    position: relative;
    max-width: 730px;
    margin: 0 auto;
    background-color: #fcd37b54;
    overflow: hidden;
    background-image: url(/assets/images/kei_satei.webp);

    /* 背景画像を下に配置し、拡大を抑える設定を上書き */
    background-size: contain; 
    background-position: bottom center; 
    background-repeat: no-repeat;
    padding: 240px 20px 50px;
    min-height: 663px;    
    /* テキストを上部に寄せるための Flexbox 設定を上書き */
    display: flex;
    flex-direction: column;
    /* justify-content: flex-start; /* 上端にテキストを寄せる場合 */ 
    align-items: center; 
}

.apple-satei h2.satei_title {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}
.apple-satei h3.satei_subtitle {
    position: absolute;
    margin: auto;
    bottom: -17px;
    left: 10%;
    right: 10%;
}
.apple-satei p.satei_text {
    position: absolute;
    text-align: justify;
    top: -200px;
    left: 0%;
    margin: auto 5px;
}
/*アップル店舗は愛情接客*/
.apple-heart h2.heart_title {
    position: absolute;
    top: -67px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}
.apple-heart h3.heart_subtitle {
    position: absolute;
    margin: auto;
    bottom: -105px;
    left: 10%;
    right: 10%;
}
.apple-heart p.heart_text {
    position: absolute;
    color: #333;
    text-align: justify;
    top: 30px;
    left: 0%;
    margin: auto 0px;
}
/*店舗一覧*/

section.apple-shop {
    margin-bottom: -10px;
}

.shop_title-wrapper {
    background-color: #e5e5e5;
    height: 70px;
    position: relative;

}
.shop-wrapper {
    /* 中央寄せにするためにmax-widthを設定し、autoで左右中央寄せにしています */
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px; /* 左右のパディングを調整 */
    /* 背景色やボーダーを追加すると画像に近づきますが、ここでは基本構造のみとします */
}

.apple-shop h2.shop_title {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 2;
}
.apple-shop h3.shop_subtitle {
    position: absolute; /* absoluteでh2の上に重ねる */
    left: 50%;
    top: 26%; /* h2の下に配置したい位置に合わせて調整 */
    transform: translate(-50%, -50%);
    color: #333; /* 画像と同じピンク色 */
    font-size: 1.8rem; /* サイズ調整 */
    z-index: 1; /* h2より奥に配置 */
    display: flex; /* ロゴとテキストを横並びにするため */
    align-items: center; /* 垂直方向の中央揃え */
    white-space: nowrap;
}
.apple-shop.apple-shop h3.shop_subtitle::before {
    content: '';
    display: inline-block;
    background-image: url(/assets/images/kei_apple-rogo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    margin-right: 7px;
    vertical-align: middle;
    margin-bottom: 5px;
}

img.shop-img {
    width: 100%;
}

/* カード全体 */
.shop-card {
    line-height: 20px;
    /* 画像の区切り線に合わせて下線を追加 */
    border-bottom: 1px solid #ccc; 
    padding: 10px 0;
    margin-bottom: 0; /* 下線の境界が明確になるよう調整 */
}

.shop-name {
    font-size: 1.2rem; /* 少し小さめに調整 */
    font-weight: bold;
}
p.shop-address {
    font-size: 0.9rem; /* 少し小さめに調整 */
    margin: 0;
}
/* 電話番号と店舗詳細ボタンを横並びにするため、Flexboxを使用 */
.shop-contact {
    display: flex; /* 子要素を横並びに */
    justify-content: space-between; /* 左右に配置 */
    align-items: center; /* 垂直方向中央寄せ */
    position: relative; /* 子要素のabsolute基準は不要になったため相対位置指定 */
    margin-top: 2px;
}

/* 電話番号リンク */
a.shop-tel {
    font-size: 1.8rem; /* サイズを画像に合わせて調整 */
    font-weight: bold;
    color: #333;
    text-decoration: none; /* リンクの下線除去 */
    padding-left: 35px; /* アイコン分のスペースを確保 */
    /* 電話アイコンの位置調整のため、親要素(.shop-contact)を基準にする */
    position: relative; 
}

/* 電話アイコン */
a.shop-tel::before {
    content: '';
    /* 画像のURLはそのまま使用します */
    background-image: url(/assets/images/free_dial.png); 
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px; /* サイズを調整 */
    height: 30px; /* サイズを調整 */
    /* テキスト行の高さに合わせるため、absolute配置 */
    position: absolute;
    left: 0;
    top: 90%;
    transform: translateY(-50%); /* 垂直方向中央寄せ */
    display: block; 
}

/* 店舗詳細ボタン */
a.shop-detail-btn {
    /* 画像のようにオレンジ色のボタンにする */
    display: inline-block; /* paddingを設定するため */
    background-color: #ff9900; /* オレンジ色 */
    color: #fff; /* 文字色を白に */
    font-size: 1rem;
    padding: 3px 30px 3px 10px; /* 上下5px、左10px、右25px（矢印スペース） */
    text-decoration: none; /* 下線を取り除く */
    border-radius: 3px; /* 角を少し丸く */

    /* 矢印を表現するための設定 */
    position: relative; 
    
    /* 以前のabsolute設定は不要になったため削除 */
    /* right: 5%; */ 
}

/* 矢印のスタイル */
a.shop-detail-btn::after {
    content: '>'; /* または適切な矢印文字（例: ›, →） */
    /* 画像のようなデザインにするには、三角形やSVGを使うこともありますが、ここでは簡単な文字とCSSで表現します */
    position: absolute;
    top: 50%;
    right: 8px; /* ボタンの右端からの位置 */
    transform: translateY(-50%);
    font-size: 1.2rem; /* 矢印のサイズ調整 */
}

/*cvbuttonお問合せ*/
.cv_bth_contact{
    height:60px;
    line-height:60px;
    margin: 30px 30px 45px;
}
.cv_bth_contact a {
    display: block;
    width: 90%;
    margin: auto;
    height: 100%;
    text-decoration: none;
    background: #f7de03;
    text-align: center;
    color: #333333;
    font-size: 1.7rem;
    font-weight: 900;
    border-radius: 18px;
    box-shadow: 5px 5px 0px 0px #333333;
    border: 5px solid #333;
　　transition: background 0.3s ease;
}
.cv_bth_contact a:hover{
    background:#a79600;
    color:#FFFFFF;
    box-shadow:none;
}
.satei_cv_bth_contact {
    height: 60px;
    line-height: 60px;
    margin: 30px 30px 45px;
}
.satei_cv_bth_contact a {
    display: block;
    width: 90%;
    margin: auto;
    height: 100%;
    text-decoration: none;
    background: #ea6000;
    text-align: center;
    color: #333333;
    font-size: 1.7rem;
    font-weight: 900;
    border-radius: 18px;
    box-shadow: 5px 5px 0px 0px #333333;
    border: 5px solid #333;
    /*transition: background 0.3s ease;*/
}
.satei_cv_bth_contact a:hover{
    background:#963f03;
    color:#FFFFFF;
    box-shadow:none;
}



/* スライダー*/
.kei_cars_slider {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.slider-wrapper {
    max-width: 100%;
    margin: auto;
    background: #e5e5e5;
    background-size: 20px 20px;
    padding: 20px 50px 110px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.slider-header {
    text-align: center;
    color: white;
    padding: 20px 0;
}
.slider-title {
    font-size: 2em;
    margin: 0;
    font-weight: bold;
}
h3.slider-description {
    color: #333;
}

/* スライダー本体のコンテナ（Swiper.jsのクラス） */
.swiper {
    background-color: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* 各スライド（Swiper.jsのクラス） */
.swiper-slide {
    display: flex;
    justify-content: center;
}
.car-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.brand-logo {
    width: 160px;
}
.car-image {
    width: 100%;
    height: auto;
    max-width: 600px;
}
.car-details {
    width: 100%;
    text-align: center;
}
.car-details h3.car-model-name {
    margin: 0;
    color: #333;
}
.car-grade {
    font-size: 1.2em;
    color: #666;
    margin: 5px 60px 15px;
    border-bottom: 2px dashed #ccc;
    padding-bottom: 5px;
}
.price-list {
    text-align: left;
    width: 80%;
    margin: 0 auto;
}
.price-list dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
/*    border-bottom: 2px dashed #ccc; */
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 1.0rem;
}
.price-list dt, .price-list dd {
    margin: 0;
    padding: 0;
}
.price-list dt {
    flex-basis: 50%;
}
.price-list dd {
    flex-basis: 50%;
    text-align: right;
    font-weight: bold;
}
.monthly-payment-box {
    align-items: center;
    justify-content: center;
    border: 5px solid #333333; 
    background: #e5e5e5;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 auto;
    width: 75%;
    height: 50px;
    position: relative;
    font-size: 1.5em;
    font-weight: bold;
}
/* スライダー内のテキスト調整 */
.monthly-label {
    padding: 0 10px 0 0;
    font-size: 0.5em;
}
.payment-amount {
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    bottom: 4px;
    right: 20%;
}
.yen {
    font-size: 0.5em;
}
.tax-info {
    font-size: 0.5em;
}
.interest-rate {
    font-size: 1em;
    color: #333333;
    margin: 5px auto 15px;
}
/* Swiper.jsのナビゲーションボタン（Prev/Next）とドット（pagination）の調整 */
/* これらはHTMLの .slider-controls と .prev-btn, .next-btn を置き換えるものです */
.swiper-button-prev,
.swiper-button-next {
    color: #333; /* オレンジ */
    background-color: rgba(255, 255, 255, 0.7); /* 半透明の白背景 */
    border-radius: 50%; /* 丸くする */
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px; /* アイコンのサイズ調整 */
    font-weight: bold;
}
/* ドットナビゲーションの色を調整 */
.swiper-pagination-bullet-active {
    background: #f14090; /* アクティブなドットの色をオレンジに */
}

.apple-benefit {
    padding: 0;
}

.benefit-content {
    position: relative;
    max-width: 730px;
    margin: 0 auto;
    background-color: #f9dc9e;
    overflow: hidden;
}
.benefit-content .background-img {
    display: block;
    width: 100%;
    height: auto;
}

.text-overlay {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* text-align: center; は、h2とh3のスタイルがh2, h3のグローバルな設定に影響されないよう、削除したままにします */
}

/* 特定のpタグを左寄せにするための修正 */
.text-overlay p {
    color: #333;
    line-height: 2;
    /*padding: 15px;*/
    text-align: justify; 
    position: absolute;
    top: -266px;
    /*left: 20%;*/
}

/*お客様の声*/
/* ==================================================== */
/* リアルな声アイコンのスタイル */
/* ==================================================== */
.voice-icon-wrap {
    /* アイコンをヘッダーの角に配置 */
    position: absolute;
    top: -104px; /* 上にはみ出す */
    right: -8px; /* 右にはみ出す */
    width: 180px; /* アイコン全体のサイズ調整 */
    height: 140px;
    z-index: 10;
}
.profile-set {
    display: flex;
}
.voice-icon {
    width: 125%;
    height: auto;
    display: block;
}
contents__header p {
    text-align: center;
}

.nyano-feedback-all{
    padding: 40px 0 5px;
    margin-bottom: 50px;
    background-size: 20px 20px;
    background-color: #e5e5e5;
}

.nyano-feedback-all .contents__header .contents__heading{
padding: 0px 0 0px;

}
.nyano-voice-header {
    position: relative;
    width: 615px;
    margin: 0 auto;
}
.nyano-voice-header p {
    padding-right: 190px;
}
.nyano-feedback-left {
    display: flex;
    align-items: flex-start;
  }
.nyano-profile-image img {
    width: 96%;
}
/*.nyano-feedback-wrapper{
   border: 5px solid #333; 
}*/
/*.nyano-feedback-wrapper:last-of-type {
  border-bottom: none;
}*/

.nyano-feedback-card-left{
    width: 83%;
    margin: 35px auto;
    padding: 10px;
    border: 3px solid #333;
    background-color: #ffffff;
    border-radius: 5px;
    position: relative;
}

.nyano-feedback-card-left::after {
    content: '';
    position: absolute;
    /* しっぽの位置調整 */
    bottom: -20px; /* カードの下端から突き出す */
    left: 30px; /* 左から少しずらして配置 */    
    /* しっぽの形（三角形の作成） */
    border-style: solid;
    border-width: 20px 20px 0 20px; /* 上辺10pxの二等辺三角形 */
    border-color: #333 transparent transparent transparent; /* 上向き三角形の色を決定 */    
    /* しっぽのフチ（二重線に対応） */
    /* 補足: 今回の画像はフチがカードと一体化しているため、フチは不要と判断し、
       しっぽのフチはメインの線で代用します。 */
}

.nyano-feedback-card-right{

    width: 83%;

    margin: 35px auto;

    padding: 10px;

    border: 3px solid #333;

    background-color: #ffffff;

    border-radius: 5px;

    position: relative;

}

.nyano-feedback-card-right::after {

    content: '';

    position: absolute;

    /* しっぽの位置調整 */

    bottom: -20px; /* カードの下端から突き出す */

    right: 30px; /* 左から少しずらして配置 */

    

    /* しっぽの形（三角形の作成） */

    border-style: solid;

    border-width: 20px 20px 0 20px; /* 上辺10pxの二等辺三角形 */

    border-color: #333 transparent transparent transparent; /* 上向き三角形の色を決定 */

    

    /* しっぽのフチ（二重線に対応） */

    /* 補足: 今回の画像はフチがカードと一体化しているため、フチは不要と判断し、

       しっぽのフチはメインの線で代用します。 */

}
.nyano-feedback-card-right .nyano-feedback-content {
    /* この中のテキスト寄せはデフォルト（左寄せ）に戻す */
    text-align: left; 
    margin-right: 20px;
}
  .nyano-profile {

    align-items: center;

    width: 17%;

    margin: 5px 0 0;

  }





  .nyano-feedback-content {

    width: 100%;

    padding: 10px 0 0px;

  }



  .nyano-feedback-content p{

   text-align: justify;

   margin: -5px 10px;

  }
  .nyano-feedback-popup {
    display: block;
    text-align: right;
    font-size: 0.9rem;
  }

  .nyano-feedback-popup p {
    color: #f14090;
    cursor: pointer;
    text-decoration: underline;
    text-align: right;
    margin: -10px 10px 5px;
  }
.popup-image {
	width: 90%;
    height: auto;
    margin-top: -4px;
	
}
.popup-overlay {
  display: none;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.5);
  z-index: 1000;
}
.popup-content {
  background-color: #ffffff;
  color: #333;
  font-family: Arial, sans-serif;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 1001;
  border-radius: 10px;
  text-align: center;
  overflow: auto;
}
.voice_button {
    width: auto;
    margin: 0px 20px 20px;
    font-size: 1.0rem;
}
.voice_button a {
    color: #333;
}
.apple-flow-car {
    /* (必要に応じて、親要素に高さを設定するか、paddingで余白を調整してください) */
    overflow: hidden; /* 画像が親要素からはみ出さないように */
}

.apple-flow-car .car-img {
    /* 1. 大きさの調整 */
    max-width: 100%; /* 親要素の幅を超えないようにする */
    height: auto;    /* 縦横比を維持する */
    display: block;  /* 上下の余白（インライン要素の特性）をなくす */

    /* 2. 上下位置の微調整 */
    position: relative; /* 位置調整を可能にする */
    top: 0px;         /* 例: 上に20px移動させる（数字をプラスにすると下に移動） */
}


/*よくある質問*/


.question-wap {
    width: 100%;
    text-align: center;
    background-color: #e5e5e5;
    }
.question {
    padding: 50px 0 50px;

}
.title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 8px;
}
.accordion {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 7px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #fff;
}
.accordion summary {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    color: #333
    font-size: 1.0rem;
    font-weight: 600;
    cursor: pointer;
　　padding-left: 10px;
}
.accordion summary span {
    flex-grow: 1; /* 横幅を可能な限りいっぱいに広げる */
    text-align: left; /* テキストを左寄せにする */
    margin: 0 5px; /* Q.と矢印から適度な隙間を確保 (任意) */
}
.accordion summary::before {
    content: "Q."; /* Q. の文字を生成 */
    color: #f14090; /* 指定された色を適用 */
    font-weight: 900; /* Q.を太くする（任意） */
    margin-right: 5px; /* Q. と質問内容の間にスペースを作成 */
    font-size: 1.2rem;
    flex-shrink: 0
}
.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    content: '';
    transition: transform .3s;
    flex-shrink: 0
}


/*フッター企業情報*/
.footer-wap {
    background-color: #eaeaea;
    padding: 10px 90px 55px;

}
.footer-car-lp {
    width: auto;
    /*padding-top: 25px;*/
    padding-bottom: 25px;
}
.footer-gmo-sign {
    display: flex;
}
.footer-gmo {
    display: flex;
}
.footer-gmo-logo {
    width: 100px;
    height: auto;
    margin: 15px 25px 0px 30px;
}    
.footer-gmo-txt p {
    font-size: 0.7rem;
    color: #333;

}
    
.footer-gmo-txt a {
    text-decoration: none;
    color: #e60020;
    }

.footer-corp {
    width: 20%;
    height: 20%;
    background-color: #fff;
    padding: 0px 10px;
    align-items: center;
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 20px;
}
.footer-corp ul {
    list-style-type: none;
    padding-left: 0px;
}

    
.footer-corp li {
    font-size: 0.7rem;
    /* line-height: 2; */
}
.footer-corp li a {
    color: #333; /* 修正: グレー（#666）ではなく #333 に変更 */
}
.footer-copyright {
    font-size: 0.6rem;
    text-align: center;
}

/*フローティングバナー*/
.float-btn-bk {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px -5px 5px 3px rgba(0, 0, 0, 0.2);
}
.float-btn-wap {
    display: block;
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0px;
    left: 0;
    margin: auto;
    z-index: 10;
}
.float-btn-wap a {
    text-decoration: none;
}
.float-btn-banner {
    width: 95%;
    background-color: #12a73b;
    border-radius: 8px;
    margin: 5px auto;
    align-items: center;
    transition: .3s;
    transition: .3s;
    border-radius: 18px;
    box-shadow: 3px 3px 0px 0px #0c6b26;
    max-width: 500px;
}

p.float-btn-arrow {
    font-size: 1.3rem;
    color: #FFF;
    font-weight: 600;
    text-align: center;
    padding: 15px 10px 5px;
    margin: 0;
}
.float-btn-wap a {
        text-decoration: none;
} 
.accordion-line {
    width: 95%;
    text-align: center;
    margin: 0 auto;
    padding-top: 16px;
    border-top: solid 1px #bfbfbf;
}
.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333;
/*    font-size: 1.6rem; */
    text-align: left;
    transition: transform .5s, opacity .5s;
}
.accordion[open] p {
    transform: none;
    opacity: 1;
}
.question-c-marker {
    padding-left: 5px;
    padding-right: 5px;
    margin-left: -5px;
    padding-bottom: 3px;
    display: inline;
    -webkit-box-shadow: inset 0px -12px 0px 0px #fffd75;
    position: relative;
    z-index: 1;
}
/* --- 2. ノートPC（中くらいの画面：1025px 〜 1400px） --- */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
header.global-header {
    max-width: 650px;
}
.container {
    max-width: 650px;   /* ★センターカラムを一回り小さくして余白を作る */
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); /* コンテンツエリアに影を強調 */
    border-left: 5px solid #333;
    border-right: 5px solid #333;
}
.side-point-image {
    display: block;
    position: fixed;
    left: 50%;
    width: 280px;       /* ★追加画像も小さくする */
    margin-left: 335px;  /* ★カラムが細くなった分、位置を内側に寄せる */
    top: 50px;
    z-index: 10;
}
.side-point-image img{
    width: 90%;
}

.nyano-voice-header {
    position: relative;
    width: 615px;
    margin-left: 40px;
}
.apple-benefit p.benefit_text {
top: 5px;
}
.text-overlay {
    top: 23%;
}
h3.benefit_subtitle {
bottom: -5px;
}
.voice-icon-wrap {
    position: absolute;
    top: -59px;
    right: 42px;
    width: 150px;
    height: 140px;
    z-index: 10;
}
.voice-icon {
    width: 125%;
    height: auto;
    display: block;
}
}
/* --- 3. タブレット・スマートフォン (1024px以下) --- */
@media screen and (max-width: 1024px) {
    .side-point-image {
        display: none !important;
    }
}

/* ==================================== */
/* レスポンシブ対応 (SPもPCと同じ表示を目指す) */
/* ==================================== */

/* タブレット・スマートフォン (幅 767px以下) */
@media (max-width: 767px) {
body {
   font-size: 1rem;
   font-family: "YakuHanJP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
   line-height: 1.7; 
}
body::before {
        display: none;
    }
header.global-header {
    border-left: 0 !important;
    border-right: 0 !important;
}
header.global-header{
    max-width:100vw;
}
.global-header .header-area{
margin-top: 0px;
}
h2{
    font-size: 2rem;
    letter-spacing: normal;
}
h3{
     font-size: 1.6rem;
     font-weight: 800;
     margin: auto;
     color: #e51373;
     text-align: center;
}
.text-overlay{
     top: 32%;
}
.text-overlay p {
     font-size: 1rem;
     text-align: justify;
     line-height: 1.5;
     position: absolute;
     top: -385px;
     left: 0%;
     right: 0%;
}
.global-header .header-logo-area p{
font-size: 0.7rem;
}

.header_main_title{
    padding: 14px 0;
}

.header_main_title h1{
font-size: 2rem;
line-height: 42px;
}
.points {
bottom: 24px;
gap: 15px;
}
.points img{
width: 80%;
}
.nyano-feedback-all{
padding: 15px 0 5px;
margin-bottom: 0px;
}
.voice-icon {
    width: 90%;
    height: auto;
    display: block;
}
.voice-icon-wrap {
    height: 0px;
    left: 201px;
    top: -18px;
}
.nyano-voice-header{
width: 340px;
}
.nyano-voice-header p {
padding-right: 125px;
}
.nyano-feedback-card-left{
margin: 20px auto;
}
.nyano-feedback-card-right{
margin: 20px auto;
}
.nyano-feedback-card-right .nyano-feedback-content {
margin-right: 0px;
}
.nyano-feedback-popup p {
margin: 5px 10px 0px;
}
.key_point p{
    font-size: 1.5rem;
    line-height: 40px;
}
.cv_bth_contact{
    height:60px;
    line-height:60px;
    margin: 15px 30px 30px 20px;
}
.cv_bth_contact a{
width: 100%;
font-size: 1.5rem;
}
.satei_cv_bth_contact {
    height: 60px;
    line-height: 60px;
    margin: 15px 30px 30px 20px;
}
.satei_cv_bth_contact a {
    width: 100%;
    font-size: 1.5rem;
}
.container {
    max-width: 100%;
    margin: 0;
    box-shadow: none;
}
    .circles-wrapper {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        bottom: 20px;
        width: 100%;
        padding: 0 5px;
}
    .circle {
        width: 80px;
        height: 80px;
        min-width: 70px;
        max-width: 90px;
        padding-bottom: 0;
        font-size: 0.6em;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .circle p {
        font-size: 1em;
        line-height: 1;
        word-break: break-all;
        white-space: normal;
        padding: 2px;
    }
/*スライダー*/
    /* ★最重要修正: スライダーの外側の余白を減らす */
.swiper {
    width: 85%;
    overflow: hidden;
  }
.swiper-wrapper {
    display: flex;
    width: 100%;
  }
.slider-wrapper {
    padding: 20px 10px 40px; 
}

  .swiper-slide {
    width: 100% !important; /* ←重要: 1スライドが画面幅いっぱいになる */
    box-sizing: border-box;
    padding: 0 20px; /* 余白を調整（必要であれば） */
  }

  /* スライドの中身が崩れないように調整 */
  .car-info-card {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

.car-grade {
    text-align: center;
}

#box_space .monthly-payment-box {
    flex-wrap: wrap; /* 横並びで崩れるのを防止 */
    justify-content: center;
    text-align: center;
    width: 90%;
    height: 6vw; 
    padding: 3vw 0vw;
  }
.payment-amount span {
    white-space: nowrap; /* テキストの折り返しを防ぐ */
  }
.car-model-name {
    font-size: 1.2rem;
    text-align: center;
  }

    .monthly-label {
        position: static; /* 絶対位置指定を解除 */
        font-size: 0.9em;
        margin-right: 5px;
    }

    .payment-amount {
        font-size: 1.2em; /* フォントサイズを調整 */
    }
    
    .yen {
        font-size: 0.8em;
    }

    .tax-info {
        font-size: 0.5em;
        margin-left: 5px; /* 位置を調整 */
    }
   
    .interest-rate {
        font-size: 0.8em; /* フォントサイズを調整 */
    }
.price-list {
width: 90%;
}
/*アップルだから安心*/
.apple-benefit p.benefit_text{
    padding: 0 0px;
    top: -25px;
    line-height: 1.5;
}
h3.benefit_subtitle {
    bottom: 23px;
    color: #333;
    font-weight: bolder;
    padding-top: 2px;
    left: 0%;
    right: 0%;
    font-size: 1.6rem;
}
h2.benefit_title{
    top: -130px;
    left: 0%;
    right: 0%;
}
/*アニメーション矢印*/
.animation-arrow{
padding: 10px 0 20px;
}



/*とにかくホントに軽がオトク*/

/* H2/H3/Pの Absolute 定義を削除し、通常のフローに戻す */
.apple-point h2.point_otoku {
    position: static;
    width: 100%;
    top: initial;
    margin: 0px auto 20px;
}

.apple-point h3.point_otoku_text {
    position: static;
    bottom: initial;
    left: initial;
    right: initial;
    margin: 10px auto;
}

.apple-point h3.point_maker {
    position: static;
    bottom: initial;
    left: initial;
    right: initial;
    margin: 10px auto;
}

.apple-point p.point_maker_text {
     position: absolute;
     color: #333;
     border-radius: 5px;
     top: 124px;
     text-align: justify;
     line-height: 1.5;
     margin: 10px auto 30px;
     padding: 0 32px;
}
/*お客様の声*/
.nyano-profile-image img {
    width: 100%;
}


/*ご購入までの流れ*/
h2.flow_title {
    top: -377px;
}
.apple-flow-step-section .text-overlay p {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.5;
    position: absolute;
    top: -355px;
    left: 0%;
    right: 0%;
}
.apple-flow h3.flow_subtitle {
    bottom: 68px;
}
.apple-flow p.flow_text {
    text-align: justify !important;
    left: 5% !important;
    right: 5% !important;
    top: -266px;
}
.apple-flow-step{
    margin: 55px 20px 50px;
}
.apple-flow-step-section {
    padding: 155px 0 0;
}
p.step-text {
   margin: auto;
   text-align: justify;
}
.step-content-box{
padding: 20px 20px;
}
/*いま乗ってる車、高く売りたい‼*/
.apple-satei h2.satei_title {
top: -28vw;
}
.apple-satei h3.satei_subtitle {
bottom: 150%;
}
.apple-satei p.satei_text {
top: -33vw;
margin: auto;
}
.apple-satei .benefit-content {
max-width: 400px;
min-height: 515px;
padding: 0px 20px 50px;
}

/*今、載っている車高く売りたい！*/
.question p{
    margin: 0px 20px 15px;
    text-align: justify;
}

/*アップル店舗は愛情接客*/
.apple-heart h2.heart_title {
top: -50px;
}
.apple-heart h3.heart_subtitle {
bottom: -30px;
}
.apple-heart p.heart_text {
top: -17px;
}
.is-hidden-sp {
    display: none;
}
/*よくある質問*/
.question h2 {
    margin-top: -20px;
}
.question h3 {
    padding-bottom: 10px;
}

/*店舗一覧*/
.apple-shop h3.shop_subtitle{
    top: 47%;
}
a.shop-tel {
    font-size: 1.5rem;
}
.shop-wrapper{
padding: 25px 20px;
}
.shop_title-wrapper{
   padding: 10px 15px 10px;
   height: 10vw;
}
.apple-shop h2.shop_title{
bottom: 43px;
}

/*フッター企業情報*/
.footer-wap {
    width: auto;
    height: auto;
    background-color: #e5e5e5;
    margin: 0 auto;
    padding: 10px;
}

.footer-car-lp {
    width: 90%;
    /*padding-top: 20px;*/
    padding-bottom: 30px;
    margin: auto;
}
.footer-gmo {
    display: flex;
    flex-direction: column;
}
.footer-gmo-sign {
    display: flex;
}

.footer-gmo-logo {
    width: 30%;
    margin-right: 10px;
    align-items: center;
    margin-left: 0px;
}
.footer-gmo-txt {
    width: auto;
    margin-left: 20px;
}
.footer-gmo-txt p {
    font-size: 0.7rem;
    color: #333;
}

.footer-gmo-txt a {
    text-decoration: none;
    color: #e60020;
}

.footer-corp {
    background-color: #fff;
    /*padding: 12px 52px;*/
    /*align-items: center;*/
   /* margin-top: 12px;*/
     width: auto;
     margin: 0;
}

.footer-corp ul {
    display: flex;
    justify-content: space-between;
    /*list-style-type: none;*/
    padding: 0 12vw;
}

.footer-corp li {
    font-size: 0.7rem;
}

.footer-corp a {
    text-decoration: none;
    color: #666;
}

.footer-copyright {
    text-align: center;
    margin: 20px auto 16px;
    font-size: 0.7rem;
}

/*フローティングバナー*/
.float-btn-banner {
    width: 85%;    
}
p.float-btn-arrow {
  font-size: 1.1rem;
  padding: 10px 10px 5px;
}
.float-btn-arrow::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 6px;
    bottom: 0;
    right: 54px;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
}
}

/* 幅 480px未満 (より小さなスマートフォン) */
@media (max-width: 480px) {
body{
    font-size: 1.0rem;
    font-family: "YakuHanJP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.7;
}
body::before {
        display: none;
    }
h2{
  font-size: 2.0rem;
}
.apple-point h2.point_otoku {
    top: -119vw;
    width: 100%;
}
.key_point p {
   font-size: 1.3rem;
   line-height: 33px;
}
    .circles-wrapper {
        gap: 10px;
        bottom: 25px;
    }

    .circle {
        width: 120px;
        height: 120px;
        min-width: 60px;
        max-width: 120px;
        font-size: 1.0em;
    }

    .circle p {
        font-size: 1.5em;
        padding: 1px;
        margin-bottom: 12px;
    }

    .slider-wrapper {
        padding: 15px 0 15px; /* 左右のパディングをさらに削減 */
    }
    .car-grade{
        margin: 1vw 7vw 2vw;
    }
    
    /* === 以下のスライダー部分を修正 === */
    /* Swiperのスライド間の余白を調整して次のスライドが見えないようにする */
.swiper-slide {
    padding: 0 15px; 
    box-sizing: border-box; 
}

    /* 月額支払いボックスの調整 */
    .monthly-payment-box {
        display: flex; /* ★修正: flexboxで横並びを確保 */
        justify-content: space-around; /* ★修正: 中央揃えより均等配置が安定 */
        padding: 8px 5px; /* パディングを左右に設定 */
        height: auto; /* 高さを自動調整 */
        align-items: center;
        width: 95%; /* 幅を少し広げる */
    }
    
    .monthly-label {
        position: static;
        font-size: 0.5em;
        margin-right: 0px;
    }

.payment-amount {
    /* display: flex; */
    /* align-items: baseline;*/
    justify-content: center;
    flex-grow: 1; /* 残りのスペースを埋める */
    font-size: 1.0em;
    right: 10%;
}

    .yen {
        font-size: 0.5em;
        /*padding: 0 0 0 10px;*/
    }

    .tax-info {
        font-size: 0.5em;
        white-space: nowrap; /* (税込)が改行されないようにする */
    }

    .interest-rate {
        font-size: 1em;
    }
h3.benefit_subtitle {
    bottom: 32px;
}
.apple-benefit p.benefit_text{
    top: -47px;
}
.shop-name {
font-size: 1.1rem;
}
a.shop-tel{
    font-size: 1.1rem;
}
a.shop-tel::before {
    top: 72%;
}
a.shop-detail-btn {
    font-size: 0.8rem;
    padding: 3px 28px 3px 7px;

}

}


