@charset "UTF-8";
/*html5doctor.com Reset Stylesheetv1.6.1Last Updated: 2010-09-17Author: Richard Clark - http://richclarkdesign.comTwitter: @rich_clark*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
}
button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=radio] {
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

/* カラー */
/* テーマカラー */
/* テキストカラー */
/* ボーダーカラー */
/* フォント */
/* スペーサー */
/* コンテンツ・ページ幅 */
/* ブレークポイント */
/*========================================
  ## レスポンシブサイズ
  指定のブレイクポイントの間だけサイズがレスポンシブ変化します。
  フォントサイズ等で使用する。
  元ネタはここ。
  https://min-max-calculator.9elements.com/

  [ 引数一覧 ]
  $from: 開始フォントサイズ
  $to: 終了フォントサイズ
  $bMax: 開始ブレイクポイント | 省略可 | デフォルトはmd
  $bMin: 終了ブレイクポイント | 省略可 | デフォルトはsm

  [ 使い方 ]
  font-size: rf(18,16) //最大サイズ18px から 最低サイズ16pxまでなめらかに変化する。
========================================*/
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "KozGo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  background-color: #fff;
  font-feature-settings: "palt";
  font-kerning: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:not(.btn), a:not(.btn):link, a:not(.btn):visited, a:not(.btn):active, a:not(.btn):hover {
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}

p {
  line-height: 1.6;
}

small {
  font-size: 87.5%;
}

/*==================================
  共通スタイル
==================================*/
.wrapper {
  flex-grow: 1;
}

/* ページ幅・コンテンツ幅 */
.page-width,
.content-width {
  margin-inline: auto;
  width: 100%;
}

.page-width:not(.padding-inner) {
  max-width: 1280px;
}
.page-width.padding-inner {
  max-width: calc(1280px + 5rem);
}

.content-width:not(.padding-inner) {
  max-width: 968px;
}
.content-width.padding-inner {
  max-width: calc(968px + 5rem);
}

.padding-inner {
  padding: 0rem 2rem;
}
@media (max-width: 768px) {
  .padding-inner {
    padding: 0rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .padding-inner {
    padding: 0rem 1rem;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.cover-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media (max-width: 768px) {
  ._pc {
    display: none;
  }
}

@media not all and (max-width: 768px) {
  ._sp {
    display: none;
  }
}

/* テキスト系 */
.bold {
  font-weight: bold !important;
}

.text-center {
  text-align: center !important;
}

.text-danger {
  color: #e32929;
}

.text-muted {
  color: #cccccc;
}

.link {
  color: #19a0ff !important;
}

/* セクション系 */
.c-section {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .c-section {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  .c-section {
    margin-bottom: 30px;
  }
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 18px;
}
@media (max-width: 768px) {
  label {
    font-size: 16px;
  }
}

.form-group {
  margin-bottom: 2.5rem;
}
.form-header {
  margin-bottom: 3rem;
}
.form-footer {
  margin-top: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.675rem 0.75rem;
  font-size: 1rem;
  font-family: "KozGo", sans-serif;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.form-control::placeholder {
  color: #ccc;
  opacity: 1;
}
.form-control.--small {
  max-width: 80px;
}

textarea.form-control {
  height: auto;
}

.form-group_flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-select {
  display: inline-block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
}

.badge-primary {
  color: #fff;
  background-color: #5eb0dd;
}

.badge-secondary {
  color: #fff;
  background-color: #262626;
}

.badge-danger {
  color: #fff;
  background-color: #e32929;
}

.badge-light {
  color: #fff;
  background-color: #cccccc;
}

.badge-green {
  color: #fff;
  background-color: #284E13;
}

/* margin */
.my-0,
.mt-0 {
  margin-top: 0rem !important;
}
.my-1,
.mt-1 {
  margin-top: 0.25rem !important;
}
.my-2,
.mt-2 {
  margin-top: 0.5rem !important;
}
.my-3,
.mt-3 {
  margin-top: 1rem !important;
}
.my-4,
.mt-4 {
  margin-top: 1.5rem !important;
}
.my-5,
.mt-5 {
  margin-top: 3rem !important;
}
.my-auto,
.mt-auto {
  margin-top: auto !important;
}

.my-0,
.mb-0 {
  margin-bottom: 0rem !important;
}
.my-1,
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.my-2,
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.my-3,
.mb-3 {
  margin-bottom: 1rem !important;
}
.my-4,
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.my-5,
.mb-5 {
  margin-bottom: 3rem !important;
}
.my-auto,
.mb-auto {
  margin-bottom: auto !important;
}

.mx-0,
.ml-0 {
  margin-left: 0rem !important;
}
.mx-1,
.ml-1 {
  margin-left: 0.25rem !important;
}
.mx-2,
.ml-2 {
  margin-left: 0.5rem !important;
}
.mx-3,
.ml-3 {
  margin-left: 1rem !important;
}
.mx-4,
.ml-4 {
  margin-left: 1.5rem !important;
}
.mx-5,
.ml-5 {
  margin-left: 3rem !important;
}
.mx-auto,
.ml-auto {
  margin-left: auto !important;
}

.mx-0,
.mr-0 {
  margin-right: 0rem !important;
}
.mx-1,
.mr-1 {
  margin-right: 0.25rem !important;
}
.mx-2,
.mr-2 {
  margin-right: 0.5rem !important;
}
.mx-3,
.mr-3 {
  margin-right: 1rem !important;
}
.mx-4,
.mr-4 {
  margin-right: 1.5rem !important;
}
.mx-5,
.mr-5 {
  margin-right: 3rem !important;
}
.mx-auto,
.mr-auto {
  margin-right: auto !important;
}

.m-0 {
  margin: 0rem !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}

/* padding */
.py-0,
.pt-0 {
  padding-top: 0rem !important;
}
.py-1,
.pt-1 {
  padding-top: 0.25rem !important;
}
.py-2,
.pt-2 {
  padding-top: 0.5rem !important;
}
.py-3,
.pt-3 {
  padding-top: 1rem !important;
}
.py-4,
.pt-4 {
  padding-top: 1.5rem !important;
}
.py-5,
.pt-5 {
  padding-top: 3rem !important;
}
.py-auto,
.pt-auto {
  padding-top: auto !important;
}

.py-0,
.pb-0 {
  padding-bottom: 0rem !important;
}
.py-1,
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.py-2,
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.py-3,
.pb-3 {
  padding-bottom: 1rem !important;
}
.py-4,
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.py-5,
.pb-5 {
  padding-bottom: 3rem !important;
}
.py-auto,
.pb-auto {
  padding-bottom: auto !important;
}

.px-0,
.pl-0 {
  padding-left: 0rem !important;
}
.px-1,
.pl-1 {
  padding-left: 0.25rem !important;
}
.px-2,
.pl-2 {
  padding-left: 0.5rem !important;
}
.px-3,
.pl-3 {
  padding-left: 1rem !important;
}
.px-4,
.pl-4 {
  padding-left: 1.5rem !important;
}
.px-5,
.pl-5 {
  padding-left: 3rem !important;
}
.px-auto,
.pl-auto {
  padding-left: auto !important;
}

.px-0,
.pr-0 {
  padding-right: 0rem !important;
}
.px-1,
.pr-1 {
  padding-right: 0.25rem !important;
}
.px-2,
.pr-2 {
  padding-right: 0.5rem !important;
}
.px-3,
.pr-3 {
  padding-right: 1rem !important;
}
.px-4,
.pr-4 {
  padding-right: 1.5rem !important;
}
.px-5,
.pr-5 {
  padding-right: 3rem !important;
}
.px-auto,
.pr-auto {
  padding-right: auto !important;
}

.p-0 {
  padding: 0rem !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.p-auto {
  padding: auto !important;
}

/*==================================
  ボタン
==================================*/
.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:disabled {
  cursor: not-allowed;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  color: #fff;
  background-color: #5eb0dd;
  border-color: #5eb0dd;
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #fff;
    background-color: #349bd4;
    border-color: #349bd4;
  }
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.5);
}
.btn-primary:disabled {
  color: #fff;
  background-color: #88c5e6;
  border-color: #88c5e6;
}

.btn-outline-primary {
  color: #5eb0dd;
  background-color: transparent;
  background-color: none;
  border-color: #5eb0dd;
}
@media (hover: hover) {
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #5eb0dd;
    border-color: #5eb0dd;
  }
}
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.5);
}
.btn-outline-primary:disabled {
  color: #88c5e6;
  background-color: transparent;
  background-color: none;
  border-color: #88c5e6;
}

.btn-secondary {
  color: #fff;
  background-color: #262626;
  border-color: #262626;
}
@media (hover: hover) {
  .btn-secondary:hover {
    color: #fff;
    background-color: #0d0d0d;
    border-color: #0d0d0d;
  }
}
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}
.btn-secondary:disabled {
  color: #fff;
  background-color: #404040;
  border-color: #404040;
}

.btn-outline-secondary {
  color: #262626;
  background-color: transparent;
  background-color: none;
  border-color: #262626;
}
@media (hover: hover) {
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
  }
}
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}
.btn-outline-secondary:disabled {
  color: #404040;
  background-color: transparent;
  background-color: none;
  border-color: #404040;
}

.btn-danger {
  color: #fff;
  background-color: #e32929;
  border-color: #e32929;
}
@media (hover: hover) {
  .btn-danger:hover {
    color: #fff;
    background-color: #c01919;
    border-color: #c01919;
  }
}
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}
.btn-danger:disabled {
  color: #fff;
  background-color: #e95656;
  border-color: #e95656;
}

.btn-outline-danger {
  color: #e32929;
  background-color: transparent;
  background-color: none;
  border-color: #e32929;
}
@media (hover: hover) {
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #e32929;
    border-color: #e32929;
  }
}
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}
.btn-outline-danger:disabled {
  color: #e95656;
  background-color: transparent;
  background-color: none;
  border-color: #e95656;
}

.btn-light {
  color: #fff;
  background-color: #cccccc;
  border-color: #cccccc;
}
@media (hover: hover) {
  .btn-light:hover {
    color: #fff;
    background-color: #b3b3b3;
    border-color: #b3b3b3;
  }
}
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-light:disabled {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.btn-outline-light {
  color: #cccccc;
  background-color: transparent;
  background-color: none;
  border-color: #cccccc;
}
@media (hover: hover) {
  .btn-outline-light:hover {
    color: #fff;
    background-color: #cccccc;
    border-color: #cccccc;
  }
}
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-outline-light:disabled {
  color: #e6e6e6;
  background-color: transparent;
  background-color: none;
  border-color: #e6e6e6;
}

.btn-orange {
  color: #fff;
  background-color: #ffb50c;
  border-color: #ffb50c;
}
@media (hover: hover) {
  .btn-orange:hover {
    color: #fff;
    background-color: #d89600;
    border-color: #d89600;
  }
}
.btn-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 12, 0.5);
}
.btn-orange:disabled {
  color: #fff;
  background-color: #ffc53f;
  border-color: #ffc53f;
}

.btn-outline-orange {
  color: #ffb50c;
  background-color: transparent;
  background-color: none;
  border-color: #ffb50c;
}
@media (hover: hover) {
  .btn-outline-orange:hover {
    color: #fff;
    background-color: #ffb50c;
    border-color: #ffb50c;
  }
}
.btn-outline-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 12, 0.5);
}
.btn-outline-orange:disabled {
  color: #ffc53f;
  background-color: transparent;
  background-color: none;
  border-color: #ffc53f;
}

/* 下記は必要に応じて:Bootstrapベース */
body {
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

section {
  position: relative;
}

img,
video {
  width: 100%;
  vertical-align: bottom;
}

.lp-wrapper {
  max-width: 600px;
  margin: auto;
}

/* cta ------*/
.cta {
  position: relative;
}

@-webkit-keyframes anim_sc {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes anim_sc {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.cta_btn img {
  -webkit-animation: anim_sc 1.5s infinite;
          animation: anim_sc 1.5s infinite;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* cta ------*/
.cta_btn {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 90%;
  bottom: 4.5%;
}
.cta_btn.--top {
  bottom: 20%;
}

.lp-footer {
  background: #80031d;
  padding: 32px 16px 8px;
}
.lp-footer small {
  color: #fff;
}

.lp-footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.lp-footer_nav a {
  color: #fff;
}
.btn-mentai {
  position: absolute;
  bottom: -234px;
  left: 0;
  z-index: 1;
}
.btn-mentai.--top {
  bottom: -64px;
}

.l-wrapper {
  margin-bottom: 169px;
}

.cta_btn {
  width: 80%;
}
.cta_btn.--top {
    bottom: 6%;
}


@media (max-width: 600px) {
  .l-wrapper {
    margin-bottom:27.966667vw;
  }
  .btn-mentai {
    bottom: -38.933333vw;
  }
  .btn-mentai.--top {
    bottom: -10.66666667vw;
  }
}