@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Bebas+Neue&family=Alumni+Sans+SC:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;700&family=Heebo:wght@600");
html {
  min-height: 100dvh;
  font-size: 62.5%;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
  min-height: 100dvh;
  color: #000;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.7;
  line-break: strict;
  overflow-wrap: anywhere;
  /*スマホの文字の大きさ一定*/
  -webkit-text-size-adjust: 100%;
  /*アンチエイリアス*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media print, screen and (min-width: 920px) {
  body {
    font-size: 1.5rem;
  }
}

#wrap {
  overflow: hidden;
}

/*breakpoint display*/
.sp_min {
  display: block;
}

.sp_min_inline {
  display: inline;
}

.sp {
  display: block;
}

.sp_inline {
  display: inline;
}

.sp_tab {
  display: block;
}

.sp_tab_inline {
  display: inline;
}

.pc,
.pc_inline {
  display: none !important;
}

.tab,
.tab_inline {
  display: none !important;
}

.pc_tab,
.pc_tab_inline {
  display: none !important;
}

@media print, screen and (min-width: 390px) {
  .sp_min,
  .sp_min_inline {
    display: none !important;
  }
}
@media print, screen and (min-width: 780px) {
  .sp,
  .sp_inline {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab_inline {
    display: inline !important;
  }
  .pc_tab {
    display: block !important;
  }
  .pc_tab_inline {
    display: inline !important;
  }
}
@media print, screen and (min-width: 920px) {
  .sp_tab,
  .sp_tab_inline {
    display: none !important;
  }
  .tab,
  .tab_inline {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .pc_inline {
    display: inline !important;
  }
}
/*box-sizing default*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}
*:before,
* :after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*aタグ デフォルト設定*/
a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*スマホ時のfocusの青枠削除*/
a,
a:focus,
button,
button:focus {
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
button,
label,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 1.6rem;
}
input:hover, input:focus, input:active,
button:hover,
button:focus,
button:active,
label:hover,
label:focus,
label:active,
textarea:hover,
textarea:focus,
textarea:active,
select:hover,
select:focus,
select:active {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

h1, h2, h3, h4, h5, h6, p, figure, iframe {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

i, em, address {
  font-style: normal;
}

figure img {
  display: block;
  width: 100%;
}

.l-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 100;
  padding: 0 12px;
  width: 100%;
  min-height: 66px;
}
@media print, screen and (min-width: 1025px) {
  .l-header {
    padding: 0 32px;
    min-height: 86px;
  }
}
.l-header .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  z-index: 101;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 1025px) {
  .l-header .logo {
    gap: 12px;
  }
}
@media not all and (hover: none) {
  .l-header .logo:hover {
    opacity: 0.8;
  }
}
.l-header .logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #da0808;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media print, screen and (min-width: 780px) {
  .l-header .logo h1 {
    font-size: 1.8rem;
  }
}
.l-header .logo img {
  display: block;
  width: 38px;
  height: 38px;
}
@media print, screen and (min-width: 1025px) {
  .l-header .logo img {
    width: 49px;
    height: 49px;
  }
}
.l-header .tagline {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: right;
}
@media print, screen and (min-width: 780px) {
  .l-header .tagline {
    font-size: 1.4rem;
    line-height: 2;
    max-width: 392px;
  }
}

.l-main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.l-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.btn {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 780px) {
  .btn {
    padding: 16px 40px;
  }
}
.btn span {
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 780px) {
  .btn span {
    font-size: 1.7rem;
  }
}
.btn-primary {
  background: #da0808;
  color: #fff;
}
@media not all and (hover: none) {
  .btn-primary:hover {
    background: rgb(193.4026548673, 7.0973451327, 7.0973451327);
  }
}

.btn-shadow {
  -webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-arrow::after {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"%3E%3Cpath fill="%23000" d="m10 0 .324.005a10 10 0 1 1-.648 0zm.613 5.21a1 1 0 0 0-1.32 1.497L11.584 9H6l-.117.007A1 1 0 0 0 6 11h5.584l-2.291 2.293-.083.094a1 1 0 0 0 1.497 1.32l4-4 .073-.082.064-.089.062-.113.044-.11.03-.112.017-.126L15 10l-.007-.118-.029-.148-.035-.105-.054-.113-.071-.111a1 1 0 0 0-.097-.112l-4-4z"/%3E%3C/svg%3E') no-repeat center center/contain;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20"%3E%3Cpath fill="%23000" d="m10 0 .324.005a10 10 0 1 1-.648 0zm.613 5.21a1 1 0 0 0-1.32 1.497L11.584 9H6l-.117.007A1 1 0 0 0 6 11h5.584l-2.291 2.293-.083.094a1 1 0 0 0 1.497 1.32l4-4 .073-.082.064-.089.062-.113.044-.11.03-.112.017-.126L15 10l-.007-.118-.029-.148-.035-.105-.054-.113-.071-.111a1 1 0 0 0-.097-.112l-4-4z"/%3E%3C/svg%3E') no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media print, screen and (min-width: 780px) {
  .btn-arrow::after {
    width: 20px;
    height: 20px;
  }
}
@media not all and (hover: none) {
  .btn-arrow:hover::after {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}

.btn-plus::after {
  width: 21px;
  height: 21px;
  -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"%3E%3Cpath fill="%23000" d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10m-11 4v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1h-3v3c0 .55-.45 1-1 1s-1-.45-1-1"/%3E%3C/svg%3E') no-repeat center center/contain;
          mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"%3E%3Cpath fill="%23000" d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10m-11 4v-3H8c-.55 0-1-.45-1-1s.45-1 1-1h3V8c0-.55.45-1 1-1s1 .45 1 1v3h3c.55 0 1 .45 1 1s-.45 1-1 1h-3v3c0 .55-.45 1-1 1s-1-.45-1-1"/%3E%3C/svg%3E') no-repeat center center/contain;
}
@media print, screen and (min-width: 780px) {
  .btn-plus::after {
    width: 24px;
    height: 24px;
  }
}