@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  line-height: 1.5;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

.pc-block {
  display: inline-block !important;
}

.sp-block {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc-block {
    display: none !important;
  }
  .sp-block {
    display: inline-block !important;
  }
}

/*----------------------------------------------------------------------------
	wrapper
----------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 81px;
  padding-bottom: 89px;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-top: 14.667vw;
    padding-bottom: 16.533vw;
  }
}

.inner {
  max-width: 1280px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
  }
}

main{
  overflow: hidden;
}

.-bg_gray{
  background-color: #fcf9f4;
}
