@charset "utf-8";

/* 変数
-------------------------------------------------------------------------- */
:root {
    /* Themeカラー */
    --main_color:#C13E7B;

    /* bgカラー */
    --bg_bule: #fdfdfc;
    --bg_white: #ffffff;


    /* textカラー */
    --text_main: #333333;
}


/* 初期設定
-------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    overflow: scroll;
    font-size: 62.5%;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    font-style: normal;
    line-height: 1.6;
    background-color: var(--bg_bule);
    color: var(--text_main);
    background-image: url(../img/bg.webp);
    background-size: 600px;
    background-repeat: repeat;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.6rem;
    font-weight: normal;
}

/* ---------- インナー ---------- */
.inner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0px 0px 4px 8px hsl(from black h s 1 / 0.2);
}

/* ---------- LP ---------- */
.fv {
    position: relative;
    z-index: 50;
}

/* fvリンクボタン */
.cta {
    position: absolute;
    bottom: 36px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    z-index: 100;
}

.cta a {
    margin: 0 auto;
    width: 90%;
    height: auto;
    display: block;
    img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: pulse 1.6s ease-in-out infinite;
    /* display: block;
    margin: 0 auto;
    transform-origin: center; */
    }
}

/* リンクボタンにアニメーション */
@keyframes pulse {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.03); }
    40%  { transform: scale(1); }
    100% { transform: scale(1); }
  }


/* 追随リンクボタン */
.cta__2 {
    position: fixed;
    padding: min(5vw, 2%);
    bottom: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    z-index: 30;
}

.cta__2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: pulse 1.6s ease-in-out infinite;
    transform-origin: center;
}

/* Googleマップ埋め込み */
.map {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 3.2rem;

}
.map iframe {
    width: 100%;
    height: 300px;
}

.sec_space {
    margin-top: -2px;
}

.map-wrapper {
    background-color: var(--bg_white);
}