/* Reset some default browser styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
  max-width: 750px;
  margin: 0 auto; /* 追加: 画面の中央に配置 */
}
body {
    width: 100%;
    line-height: 1;
    font-family: 'Arial', sans-serif; /* You can change your font family here */
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Add your styles below */

 img {
     margin: 0;
     display: block;
     vertical-align: middle;
    height: auto;
     width: 100%;
  }

.footer {
    background: var(--footer-bg-color,#f3f3f3);
    color: var(--footer-fg-color,inherit);
    margin: 0 auto;
    max-width:750px;
    padding: 2rem;
}

.footer__navigation {
    font-feature-settings: "palt";
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    font-size: .675rem;
    justify-content: center;
}

*+.footer__copyright {
    margin: 2rem 0 0;
}
.footer__copyright {
    font-feature-settings: "palt";
    font-size: .75rem;
    line-height: 1;
    text-align: center;
}

.footer a {
    color: inherit;
}
.footer__navigation>* {
    border-color: #777;
    border-style: solid;
    border-width: 0 1px;
    line-height: 1;
    margin: 0.375em 0 0.25em -1px;
    padding: 0.25em 0.5em;
}

.image-container {
  position: relative;
  width: 100%; /* この値は、画像の幅に基づいて変更する必要があります */
}

.cta {
  position: absolute;
  bottom: 6%; /* 重ねる画像の位置を調整します */
  left: 9%; /* 通常、左上隅からの位置ですが、必要に応じて変更してください */
  width: 80%; /* 重ねる画像のサイズを調整します。この値は例です */
  height: auto; /* 画像のアスペクト比を維持します */
}

.slide_img {
  position: absolute;
  bottom: 15%; /* 重ねる画像の位置を調整します */
  left: 9%; /* 通常、左上隅からの位置ですが、必要に応じて変更してください */
  width: 80%; /* 重ねる画像のサイズを調整します。この値は例です */
  height: auto; /* 画像のアスペクト比を維持します */
}



@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.cta {
  animation: float 5s ease-in-out infinite;
}
