@charset "UTF-8";
:root {
  --lp-clr-text: #4a4238;
  --lp-clr-bg: #fff;
  --lp-spa-side: min(4vw, 1.6rem);
  --lp-max-width: 1200px;
}

:where(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;
}

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  color: var(--lp-clr-text);
}

body {
  line-height: 1;
}

a {
  text-decoration-skip-ink: auto;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

button {
  outline: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

textarea,
input[type=text],
input[type=button],
input[type=submit],
input[type=reset],
input[type=search],
input[type=password] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body.lp-page {
  line-height: 1.7;
  font-size: 1rem;
}

.lp-page .lp-content {
  width: 100%;
}

/* -------------------------------------------- */
/* 枠 */
/* -------------------------------------------- */
.wrap {
  position: relative;
  width: 100%;
}

.background {
  position: fixed;
  /* 背景に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

@media screen and (max-width: 750px) {
  .background {
    display: none;
  }
}
.bg_top {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.logo {
  display: none;
}

@media screen and (min-width: 1080px) {
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc((100vw - 750px) / 2);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    text-align: center;
  }
}
/* --------------------------------
  メインコンテンツ枠
-------------------------------- */
.contents-block {
  overflow: hidden;
  max-width: 750px;
  background-color: #E9E9E9;
  margin-inline: auto;
}